:root {
    /* Colors */
    --clr-primary: #1B2A6B; /* Azul-marinho */
    --clr-secondary: #5CC4E8; /* Azul-claro */
    --clr-accent: #FFD447; /* Amarelo */
    --clr-accent-hover: #e5b92e;
    
    --clr-text: #333333;
    --clr-text-light: #666666;
    --clr-bg-light: #f9fbfd;
    --clr-white: #ffffff;
    
    /* Typography */
    --font-heading: 'Baloo 2', cursive, sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --br-sm: 8px;
    --br-md: 16px;
    --br-lg: 24px;
    --br-pill: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(27, 42, 107, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* For fixed header */
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--br-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-cta {
    background-color: var(--clr-accent);
    color: var(--clr-primary);
    box-shadow: 0 4px 15px rgba(255, 212, 71, 0.4);
}

.btn-cta:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 212, 71, 0.6);
}

.btn-secondary {
    background-color: var(--clr-secondary);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(92, 196, 232, 0.3);
}

.btn-secondary:hover {
    background-color: #4ab4d9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(92, 196, 232, 0.5);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.2rem;
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Header */
.header {
    background-color: var(--clr-primary);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background-color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background-color: rgba(92, 196, 232, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--clr-secondary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--clr-text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--clr-white);
    padding: 15px;
    border-radius: var(--br-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--clr-secondary);
    background-color: rgba(92, 196, 232, 0.15);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-item span {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--clr-primary);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--br-lg);
    box-shadow: var(--shadow-md);
    border: 8px solid var(--clr-white);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: rotate(0);
}

/* Sections Common */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--clr-accent);
    border-radius: var(--br-pill);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--clr-text-light);
}

/* Services / Banho e Tosa */
.services {
    padding: 80px 0;
    background-color: rgba(92, 196, 232, 0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--clr-white);
    padding: 30px 20px;
    border-radius: var(--br-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--clr-secondary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(92, 196, 232, 0.1);
    color: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--clr-secondary);
    color: var(--clr-white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--clr-text-light);
}

.service-card strong {
    color: var(--clr-primary);
    font-size: 1.1rem;
}

/* Veterinary */
.veterinary {
    padding: 100px 0;
    background-color: var(--clr-white);
}

.veterinary-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.veterinary-image {
    flex: 1;
}

.veterinary-image img {
    border-radius: var(--br-lg);
    box-shadow: var(--shadow-md);
}

.veterinary-content {
    flex: 1;
}

.veterinary-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.veterinary-content p {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: 30px;
}

.vet-list {
    margin-bottom: 40px;
}

.vet-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--clr-primary);
}

.vet-list li i {
    color: var(--clr-secondary);
    font-size: 1.3rem;
}

/* Institutional */
.institutional {
    padding: 80px 0;
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.institutional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.inst-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--br-md);
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.inst-card:hover {
    transform: translateY(-5px);
}

.inst-icon {
    width: 80px;
    height: 80px;
    background-color: var(--clr-accent);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.inst-card h3 {
    color: var(--clr-white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.inst-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--clr-bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--clr-white);
    padding: 30px;
    border-radius: var(--br-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--clr-secondary);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.user-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stars {
    color: var(--clr-accent);
    font-size: 0.9rem;
}

.google-icon {
    color: #4285F4;
    font-size: 1.5rem;
}

.testimonial-card p {
    color: var(--clr-text-light);
    font-style: italic;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.footer-info h2 {
    color: var(--clr-white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-info > p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--clr-accent);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item p {
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--clr-accent);
    color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-map {
    border-radius: var(--br-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--clr-white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 20px 0;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    font-size: 0.95rem;
    color: var(--clr-text);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-config {
    background-color: transparent;
    color: var(--clr-text-light);
    border: 1px solid #ddd;
}

.btn-cookie-config:hover {
    background-color: #f5f5f5;
}

.btn-cookie-accept {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-cookie-accept:hover {
    background-color: #121c47;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container,
    .veterinary-container,
    .footer-container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .center-btn {
        justify-content: center;
    }
    
    .veterinary-image {
        order: -1;
    }
    
    .institutional-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--clr-primary);
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .header-btn {
        display: none; /* Esconder botão no mobile para economizar espaço no cabeçalho */
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-info h2 {
        font-size: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}
