/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-creme: #FAF6ED;
    --color-creme-dark: #F3ECDD;
    --color-verde-profundo: #2E3A24;
    --color-verde-botanico: #3B4A2E;
    --color-verde-suave: #6E7C5C;
    --color-dourado: #B08D57;
    --color-dourado-claro: #D8BE93;
    --color-malva: #A98C93;
    --color-branco: #FFFFFF;
    --color-linha: rgba(59, 74, 46, 0.16);

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', system-ui, -apple-system, sans-serif;
    --font-script: 'Mrs Saint Delafield', cursive;

    /* Transitions & Curves */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-creme);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--color-verde-profundo);
    background-color: var(--color-creme);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   BRAND STYLING (EUCALYPTUS LEAVES & DIVIDERS)
   ========================================================================== */
.decor-leaf {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    opacity: 0.85;
    transition: transform 0.5s ease-out;
}

.hero-section .leaf-1 {
    top: 5%;
    right: -20px;
    transform: rotate(-35deg) scale(1.2);
}

.hero-section .leaf-2 {
    bottom: 5%;
    left: -20px;
    transform: rotate(145deg) scale(1.2);
}

.specialties-section .leaf-3 {
    top: 8%;
    left: -30px;
    transform: rotate(90deg) scale(1.1);
}

.about-section .leaf-4 {
    bottom: 8%;
    right: -30px;
    transform: rotate(-45deg) scale(1.1);
}

/* Eucalyptus leaves decoration responsive rules (Mobile) */
@media (max-width: 768px) {
    .decor-leaf {
        width: 80px;
        height: auto;
        opacity: 0.3;
        z-index: 3;
    }

    .hero-section .leaf-1 {
        top: 2%;
        right: -30px;
        transform: rotate(-35deg) scale(0.8);
    }

    .hero-section .leaf-2 {
        bottom: 2%;
        left: -30px;
        transform: rotate(145deg) scale(0.8);
    }

    .specialties-section .leaf-3 {
        top: 1.5%;
        left: -35px;
        transform: rotate(90deg) scale(0.75);
    }

    .about-section .leaf-4 {
        bottom: 2%;
        right: -35px;
        transform: rotate(-45deg) scale(0.75);
    }
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.8rem;
    margin-bottom: 2.2rem;
}

.title-divider .line {
    height: 1px;
    background-color: var(--color-dourado-claro);
    width: 60px;
}

.title-divider svg {
    color: var(--color-dourado);
    flex-shrink: 0;
    animation: heartPulse 3s infinite alternate ease-in-out;
}

@keyframes heartPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}





/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
}

p {
    font-weight: 300;
    font-size: 1.05rem;
}

.font-serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.font-signature {
    font-family: var(--font-script);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-dourado);
    display: inline-block;
    line-height: 0;
    transform: translateY(14px);
    margin: 0 6px;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-dourado);
    margin-bottom: 1rem;
}

.eyebrow-light {
    color: var(--color-dourado-claro);
}

/* ==========================================================================
   ORGANIC TRANSITION DIVIDERS (Awwwards Style Curve Transitions)
   ========================================================================== */
.organic-divider {
    position: absolute;
    top: -59px;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
    pointer-events: none;
}

.organic-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 7.5rem 2rem;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 750px;
}

.section-header.align-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--color-verde-botanico);
}

.section-subtitle {
    margin-top: 1.2rem;
    font-size: 1.15rem;
    color: var(--color-verde-suave);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-desc-medium {
    margin-top: 1.2rem;
    font-size: 1.1rem;
    color: var(--color-verde-suave);
    font-weight: 300;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-verde-botanico);
    color: var(--color-creme);
}

.btn-primary:hover {
    background-color: var(--color-verde-profundo);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 58, 36, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-verde-botanico);
    border-color: var(--color-verde-botanico);
}

.btn-secondary:hover {
    background-color: var(--color-verde-botanico);
    color: var(--color-creme);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-verde-profundo);
    border-color: var(--color-linha);
}

.btn-outline:hover {
    border-color: var(--color-verde-suave);
    background-color: rgba(110, 124, 92, 0.05);
}

.btn-full-width {
    width: 100%;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
    background-color: rgba(250, 246, 237, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.main-header.scrolled {
    border-bottom: 1px solid var(--color-linha);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo */
.logo {
    text-decoration: none;
    display: flex;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo:hover .logo-img {
    transform: scale(1.02);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-family: var(--font-sans);
    text-decoration: none;
    color: var(--color-verde-profundo);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: var(--color-dourado);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--color-dourado);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-mobile-only {
    display: none;
}

/* Menu Toggle Button (Hambúrguer) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 1.5px;
    background-color: var(--color-verde-botanico);
    transition: var(--transition-fast);
}

/* Hamburger active transformation */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Navigation */
@media (max-width: 992px) {
    .btn-desktop-only {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1010;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 380px;
        height: 100vh;
        background-color: var(--color-creme);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.2rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1005;
        border-left: 1px solid var(--color-linha);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .btn-mobile-only {
        display: inline-flex;
        margin-top: 1.2rem;
        width: 80%;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* WhatsApp Original Green */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 0;
    min-height: 850px;
    height: 90vh;
    max-height: 950px;
    background-color: var(--color-creme);
    display: flex;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-container {
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 45fr 55fr;
    align-items: stretch;
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: max(2rem, calc((100vw - 1280px) / 2 + 2rem));
    padding-right: 3rem;
    padding-top: 5.2rem; /* Centering offset to clear header */
    padding-bottom: 1rem;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-dourado);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4vw, 3.5rem); /* Large elegant serif font size restored! */
    color: var(--color-verde-botanico);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.08rem; /* Subtitle font size restored! */
    color: var(--color-verde-profundo);
    line-height: 1.5;
    margin-bottom: 1rem; /* Compact margin */
    max-width: 520px;
}

.hero-actions {
    display: flex;
    width: 100%;
    margin-bottom: 1.5rem; /* Compact margin */
}

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: var(--color-verde-botanico);
    color: var(--color-creme);
    padding: 1.1rem 2.2rem; /* Large button padding restored! */
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.88rem; /* Large button font size restored! */
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(59, 74, 46, 0.12);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-hero-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 74, 46, 0.22);
    background-color: var(--color-verde-profundo);
}

.btn-hero-whatsapp svg {
    flex-shrink: 0;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    width: 100%;
    border-top: 1px solid var(--color-linha);
    padding-top: 1rem;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.hero-feature-item .feature-icon {
    color: var(--color-verde-botanico);
    width: 26px;
    height: 26px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hero-feature-item img.feature-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(16%) saturate(1067%) hue-rotate(53deg) brightness(93%) contrast(89%);
}

.hero-feature-item img.feature-icon.feature-icon-heart {
    width: 38px;
    height: 38px;
}

.hero-feature-item:hover .feature-icon {
    transform: scale(1.15) translateY(-2px);
}

.hero-feature-item span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    line-height: 1.3;
    color: var(--color-verde-profundo);
    font-weight: 500;
}

.mobile-only {
    display: none !important;
}

.hero-visual-bleed {
    position: relative;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.hero-bleed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    display: block;
}

.hero-bleed-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-creme) 0%, rgba(250, 246, 237, 0) 30%);
    z-index: 2;
    pointer-events: none;
}

/* ==========================================================================
   SEÇÃO: SINAIS DE ALERTA
   ========================================================================== */
.warning-signs-section {
    background-color: var(--color-creme-dark);
    position: relative;
    padding-bottom: 5.5rem;
}

.warning-signs-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.warning-signs-section .warning-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dourado);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.2rem;
}

.warning-signs-section .elegant-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.warning-signs-section .elegant-divider .line {
    width: 60px;
    height: 1px;
    background-color: var(--color-dourado);
    opacity: 0.5;
}

.warning-signs-section .elegant-divider .heart-divider-icon {
    stroke: var(--color-dourado);
    opacity: 0.85;
}

.warning-signs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.warning-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.warning-icon {
    width: 105px;
    height: 105px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.warning-icon.warning-icon-large {
    transform: scale(1.42);
}

.warning-item:hover .warning-icon {
    transform: scale(1.1) translateY(-3px);
}

.warning-item:hover .warning-icon.warning-icon-large {
    transform: scale(1.52) translateY(-3px);
}

.warning-title {
    font-family: var(--font-serif);
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--color-verde-profundo);
    line-height: 1.35;
    margin: 0;
}

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

.btn-warning-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2.4rem;
    border: 1.5px solid var(--color-dourado);
    background-color: transparent;
    color: var(--color-verde-profundo);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-warning-whatsapp:hover {
    background-color: var(--color-dourado);
    color: var(--color-branco);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(181, 155, 109, 0.2);
}

/* ==========================================================================
   SEÇÃO: ÁREAS DE ATUAÇÃO (ESPECIALIDADES)
   ========================================================================== */
.specialties-section {
    background-color: var(--color-creme);
    position: relative;
    padding-bottom: 7rem;
}

.specialties-layout-v2 {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.specialties-intro-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.specialties-eyebrow-v2 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-dourado);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.specialties-eyebrow-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 1px;
    background-color: var(--color-dourado);
    opacity: 0.6;
}

.specialties-title-v2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    font-weight: 500;
    color: var(--color-verde-profundo);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.specialties-text-v2 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-verde-suave);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-specialties-cta-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-verde-botanico);
    color: var(--color-branco);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 74, 46, 0.1);
    width: max-content;
    margin: 0 auto;
}

.btn-specialties-cta-v2:hover {
    background-color: var(--color-verde-profundo);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 74, 46, 0.2);
}

.specialties-cards-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.specialty-card-v2 {
    background-color: var(--color-branco);
    border: 1px solid var(--color-linha);
    border-radius: 14px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(59, 74, 46, 0.02);
}

.specialty-card-v2:hover {
    transform: translateY(-6px);
    border-color: var(--color-dourado-claro);
    box-shadow: 0 20px 40px rgba(59, 74, 46, 0.06);
}

.specialty-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.35;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    overflow: visible;
}

.specialty-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    display: block;
}

.specialty-card-icon-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 45px;
    height: 45px;
    background-color: var(--color-branco);
    border: 1.5px solid var(--color-dourado-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(59, 74, 46, 0.05);
    padding: 8px;
}

.specialty-card-icon-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(67%) sepia(21%) saturate(1048%) hue-rotate(33deg) brightness(96%) contrast(89%); /* Gold color (#B59B6D) */
}

.specialty-card-body {
    padding: 2.2rem 1.2rem 1.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.specialty-card-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-verde-profundo);
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.specialty-card-text {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--color-verde-suave);
    line-height: 1.45;
    font-weight: 300;
}

.specialty-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.specialty-card-tags span {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: var(--color-verde-botanico);
    background-color: rgba(92, 110, 77, 0.05);
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    border: 1px solid rgba(92, 110, 77, 0.1);
    font-weight: 500;
}

.specialties-carousel-indicators {
    display: none;
}

/* ==========================================================================
   SEÇÃO: EXAMES E DIAGNÓSTICO
   ========================================================================== */
.diagnostic-section {
    background-color: var(--color-creme-dark);
    position: relative;
}

.diagnostic-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5.5rem;
    align-items: flex-start;
}

.diagnostic-intro {
    display: flex;
    flex-direction: column;
}

.diagnostic-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.05rem;
    color: var(--color-verde-suave);
    margin-bottom: 2.5rem;
}

.diagnostic-visual-card {
    margin-top: 1.5rem;
}

.diag-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-dourado-claro);
    box-shadow: 0 15px 35px rgba(59, 74, 46, 0.05);
}

.diag-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: var(--transition-smooth);
}

.diag-image-wrapper:hover .diag-img {
    transform: scale(1.03);
}

.diag-decor-border {
    position: absolute;
    top: 15px;
    left: -15px;
    right: 15px;
    bottom: -15px;
    border: 1px solid var(--color-dourado-claro);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    pointer-events: none;
}

.diagnostic-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.diagnostic-card {
    background-color: var(--color-branco);
    border: 1px solid var(--color-linha);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.diagnostic-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-dourado-claro);
    box-shadow: 0 15px 35px rgba(59, 74, 46, 0.04);
}

.diag-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.diag-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(176, 141, 87, 0.1);
    color: var(--color-dourado);
    display: flex;
    align-items: center;
    justify-content: center;
}

.diag-card-icon img,
.diag-card-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.diag-card-icon img.diag-card-icon-img {
    width: 38px;
    height: 38px;
}

.diag-card-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-verde-botanico);
    font-weight: 600;
}

.diag-card-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.diag-card-list li {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-verde-profundo);
    font-weight: 350;
    position: relative;
    padding-left: 1.25rem;
}

.diag-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23B08D57"><path d="M12 14c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm-4.5-5c.83 0 1.5-.67 1.5-1.5S8.33 6 7.5 6 6 6.67 6 7.5 6.67 9 7.5 9zm9 0c.83 0 1.5-.67 1.5-1.5S17.33 6 16.5 6 15 6.67 15 7.5s.67 1.5 1.5 1.5zm-5.5-2c.83 0 1.5-.67 1.5-1.5S11.83 4 11 4s-1.5.67-1.5 1.5S10.17 7 11 7zm2.5 0c.83 0 1.5-.67 1.5-1.5S14.33 4 13.5 4 12 4.67 12 5.5s.67 1.5 1.5 1.5z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* ==========================================================================
   SEÇÃO: ATENDIMENTO A DOMICÍLIO
   ========================================================================== */
.home-visit-section {
    background-color: var(--color-creme);
    position: relative;
}

.home-visit-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

.home-visit-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-visit-text {
    font-size: 1.1rem;
    color: var(--color-verde-suave);
    margin-bottom: 2.5rem;
}

.regions-pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 3.2rem;
}

.region-pill {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-verde-botanico);
    background-color: var(--color-creme-dark);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    border: 1px solid var(--color-linha);
}

.home-visit-visual {
    display: flex;
    justify-content: center;
}

.home-visit-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.home-visit-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-xl);
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 4/3;
    border: 1px solid var(--color-dourado-claro);
    box-shadow: 0 20px 40px rgba(46, 58, 36, 0.08);
    transition: var(--transition-smooth);
}

.home-visit-image-wrapper:hover .home-visit-img {
    transform: scale(1.03);
}

.home-visit-decor-border {
    position: absolute;
    top: 15px;
    left: -15px;
    right: 15px;
    bottom: -15px;
    border: 1px solid var(--color-dourado-claro);
    border-radius: var(--border-radius-xl);
    z-index: -1;
    pointer-events: none;
}

/* ==========================================================================
   SEÇÃO: VANTAGENS DE ATENDIMENTO DOMICILIAR (BARRA HORIZONTAL)
   ========================================================================== */
.benefits-bar-section {
    background-color: var(--color-creme);
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}

.benefits-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 5;
}

.decor-branch-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 150px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.benefits-bar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.benefits-bar-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-bar-header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefits-bar-title-line1 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-verde-suave);
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.benefits-bar-title-line2 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-verde-profundo);
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.benefits-bar-title-divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-dourado-claro);
    margin-top: 6px;
}

.benefits-bar-items {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.2rem;
    flex-grow: 1;
}

.benefit-bar-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    flex: 1;
}

.benefit-bar-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--color-branco);
    border: 1px solid var(--color-dourado-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(59, 74, 46, 0.02);
    transition: all 0.3s ease;
}

.benefit-bar-icon-circle svg {
    color: var(--color-verde-botanico);
    transition: transform 0.3s ease;
}

.benefit-bar-item:hover .benefit-bar-icon-circle {
    border-color: var(--color-dourado);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 74, 46, 0.06);
}

.benefit-bar-item:hover .benefit-bar-icon-circle svg {
    transform: scale(1.05);
}

.benefit-bar-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-bar-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-verde-profundo);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.benefit-bar-text {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: var(--color-verde-suave);
    line-height: 1.45;
    font-weight: 300;
    margin: 0;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: var(--color-creme);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 5.5rem;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1/1;
}

.about-img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%; /* Perfect framing for veterinarian's profile */
    aspect-ratio: 1/1;
    border: 1px solid var(--color-dourado-claro);
}

.about-decor-border {
    position: absolute;
    top: 15px;
    left: -15px;
    right: 15px;
    bottom: -15px;
    border: 1.5px solid var(--color-dourado-claro);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.about-visual.mobile-only {
    display: none !important;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-text {
    margin-bottom: 2rem;
    font-size: 1.08rem;
    color: var(--color-verde-profundo);
}

.about-values {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    color: var(--color-verde-botanico);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-values .value-heart {
    color: var(--color-dourado);
    font-size: 1.1rem;
}

.about-values svg {
    color: var(--color-dourado);
    opacity: 0.85;
}

.about-signature-container {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.about-signature-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    background-color: var(--color-creme-dark);
    position: relative;
}

.accordion-container {
    max-width: 880px;
    margin: 0 auto;
    margin-top: 3.5rem;
}

.accordion-item {
    border-bottom: 1px solid var(--color-linha);
    background-color: var(--color-branco);
    margin-bottom: 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-linha);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.accordion-header:hover {
    background-color: rgba(59, 74, 46, 0.02);
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-verde-botanico);
    font-weight: 600;
    flex-grow: 1;
}

.accordion-icon {
    color: var(--color-verde-suave);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 1.5rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--color-dourado);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content-inner {
    padding: 0 2rem 2rem 2rem;
}

.accordion-content-inner p {
    font-size: 1rem;
    color: var(--color-verde-profundo);
    font-weight: 300;
}

/* ==========================================================================
   CONTACT SECTION & FINAL CTA
   ========================================================================== */
.contact-section {
    background-color: var(--color-creme);
    padding-bottom: 8rem;
    position: relative;
}

.contact-section .section-container {
    position: relative;
    padding-top: 11rem;
}

.contact-pet-overlap {
    position: absolute;
    top: 11rem;
    left: calc(22% + 2rem);
    transform: translate(-50%, -65%);
    width: 320px;
    z-index: 10;
    pointer-events: none;
}

.contact-pet-overlap img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .contact-pet-overlap {
        left: calc(23% + 2rem);
        width: 280px;
    }
}

@media (max-width: 768px) {
    .contact-section .section-container {
        padding-top: 9rem;
    }
    .contact-pet-overlap {
        top: 9rem;
        left: 50%;
        transform: translate(-50%, -65%);
        width: 240px;
    }
}

.contact-card {
    background-color: var(--color-branco);
    border: 1px solid var(--color-linha);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(59, 74, 46, 0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
}

/* Left side details */
.contact-info-panel {
    background-color: var(--color-verde-botanico);
    padding: 5rem 4.5rem;
    color: var(--color-creme);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-panel-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--color-creme);
}

.contact-panel-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.05rem;
    color: rgba(250, 246, 237, 0.7);
    margin-bottom: 3.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.98rem;
    color: var(--color-creme-dark);
}

.contact-detail-item svg {
    color: var(--color-dourado-claro);
    flex-shrink: 0;
}

/* Right side inputs */
.contact-form-panel {
    padding: 5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-verde-botanico);
}

.form-group input,
.form-group select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
    background-color: var(--color-creme);
    border: 1px solid var(--color-linha);
    border-radius: var(--border-radius-sm);
    color: var(--color-verde-profundo);
    outline: none;
    transition: var(--transition-fast);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23B59B6D' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2em;
    padding-right: 3rem;
}

.form-group input::placeholder {
    color: var(--color-verde-suave);
    opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-dourado);
    background-color: var(--color-branco);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--color-verde-botanico);
    color: var(--color-creme);
    position: relative;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6.5rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4.5rem;
}

.footer-brand h2 {
    font-size: 2.1rem;
    margin-bottom: 0.35rem;
    color: var(--color-creme);
}

.footer-sub-desc {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-dourado-claro);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 200;
    color: rgba(250, 246, 237, 0.7);
    max-width: 420px;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    text-decoration: none;
    background-color: rgba(250, 246, 237, 0.05);
    border: 1px solid rgba(250, 246, 237, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: rgba(250, 246, 237, 0.12);
    border-color: var(--color-dourado-claro);
    transform: translateY(-2px);
}

.social-link svg {
    flex-shrink: 0;
}

.footer-info-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-info-col h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-dourado-claro);
    margin-bottom: 1.2rem;
}

.footer-info-col p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(250, 246, 237, 0.75);
    line-height: 1.5;
}

.footer-highlight-phone {
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    color: var(--color-creme) !important;
    margin-bottom: 0.2rem;
}

.footer-legal {
    grid-column: span 2;
    border-top: 1px solid rgba(250, 246, 237, 0.08);
    padding-top: 2.5rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
}

.footer-legal p {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 200;
    color: rgba(250, 246, 237, 0.5);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE REFINEMENT (Analysis & Spacing Optimization)
   ========================================================================== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        padding: 3.5rem 2.5rem;
        gap: 3rem;
    }
    
    .contact-form-panel {
        padding: 3.5rem 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding-top: 4rem;
    }
    
    .footer-info-blocks {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
    
    .footer-legal {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    /* Base lock for mobile horizontal scrolling */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Section containers & standard margins */
    .section-container {
        padding: 4.5rem 1.25rem 3.5rem 1.25rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.3rem);
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-top: 0.8rem;
        padding: 0 0.5rem;
    }

    /* Wave Dividers height on mobile to keep proportions */
    .organic-divider {
        height: 35px;
        top: -34px;
    }

    /* Floating WhatsApp Button size */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }

    /* Header adjustments */
    .header-container {
        padding: 1rem 1.25rem;
    }
    
    .logo-img {
        height: 38px;
    }

    .footer-logo-img {
        margin: 0 auto 1.5rem auto;
    }

    /* Hero Section mobile refinements */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: grid !important;
    }

    .hero-section {
        padding: 0;
        min-height: auto;
        height: auto;
        max-height: none;
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: visible;
    }

    .hero-container {
        display: block;
        position: relative;
        width: 100%;
        height: 560px; /* Precise height for the vertical photo block */
    }

    .hero-content {
        position: relative;
        z-index: 5;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        padding-top: 6.5rem;
        padding-bottom: 2rem;
        align-items: flex-start;
        text-align: left;
        max-width: 62%; /* Strictly limit text to the left 62% to prevent overlap with the vet's head on the right */
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-eyebrow {
        font-size: 0.52rem;
        white-space: nowrap;
        width: max-content;
        max-width: calc(100vw - 3rem);
        letter-spacing: 0.08em;
    }

    .hero-title {
        font-size: 1.95rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        text-shadow: 0 2px 10px rgba(250, 246, 237, 0.9);
    }

    .hero-subtitle {
        font-size: 0.92rem;
        line-height: 1.45;
        max-width: 100%;
        margin-bottom: 1.5rem;
        text-shadow: 0 1px 8px rgba(250, 246, 237, 0.9);
    }

    .hero-actions {
        width: 100%;
        margin-bottom: 0;
    }

    .hero-actions .btn.btn-hero-whatsapp {
        width: max-content;
        max-width: calc(100vw - 3rem);
        white-space: nowrap;
        font-size: 0.75rem;
        padding: 0.85rem 1.4rem;
        letter-spacing: 0.03em;
    }

    .hero-visual-bleed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-bleed-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right bottom; /* Align veterinarian to bottom-right corner */
    }

    .hero-bleed-gradient {
        background: linear-gradient(to bottom, rgba(250, 246, 237, 0) 65%, rgba(250, 246, 237, 1) 100%),
                    linear-gradient(to right, rgba(250, 246, 237, 0.94) 0%, rgba(250, 246, 237, 0.5) 60%, rgba(250, 246, 237, 0) 100%);
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on mobile */
        gap: 1.25rem 1rem;
        padding: 2.5rem 1.5rem 2.2rem 1.5rem; /* Margins adjusted */
        background-color: var(--color-creme);
        border-bottom: 1px solid var(--color-linha);
        margin: 0;
        position: relative;
        z-index: 10;
    }

    .hero-feature-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0;
        position: relative;
    }

    .hero-feature-item:not(:last-child)::after {
        display: none; /* Hide vertical dividers on mobile */
    }

    .hero-feature-item .feature-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 0.4rem;
    }

    .hero-feature-item img.feature-icon {
        width: 25px;
        height: 25px;
    }

    .hero-feature-item img.feature-icon.feature-icon-heart {
        width: 29px;
        height: 29px;
    }

    .hero-feature-item span {
        font-size: 0.74rem;
        line-height: 1.3;
        color: var(--color-verde-profundo);
        font-weight: 500;
    }

    /* Warning cards grid (Swipeable Slider) */
    /* Warning signs mobile grid */
    .warning-signs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem 0.6rem;
        padding: 0;
        margin: 0 0 2.5rem 0;
        overflow: visible;
        scrollbar-width: auto;
    }

    .warning-icon {
        width: 75px;
        height: 75px;
    }

    .warning-icon.warning-icon-large {
        transform: scale(1.38);
    }

    .warning-title {
        font-size: 0.92rem;
    }

    .btn-warning-whatsapp {
        padding: 0.8rem 1.6rem;
        font-size: 0.76rem;
        width: 100%;
        max-width: none;
    }

    /* Specialties 4 Cards Layout Mobile overrides */
    .specialties-layout-v2 {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .specialties-intro-v2 {
        align-items: center;
        text-align: center;
    }

    .specialties-eyebrow-v2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .btn-specialties-cta-v2 {
        margin: 0 auto;
    }

    .specialties-cards-grid-v2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1.2rem;
    }

    @media (max-width: 600px) {
        .specialties-cards-grid-v2 {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            gap: 1.2rem;
            padding: 0.5rem 1.25rem 1.2rem 1.25rem;
            margin-left: -1.25rem;
            margin-right: -1.25rem;
            scrollbar-width: none;
        }
        
        .specialties-cards-grid-v2::-webkit-scrollbar {
            display: none;
        }
        
        .specialty-card-v2 {
            flex: 0 0 250px;
            scroll-snap-align: center;
        }

        .specialties-carousel-indicators.mobile-only-flex {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 0.5rem;
            width: 100%;
        }

        .carousel-arrow {
            background-color: var(--color-branco);
            border: 1.5px solid var(--color-dourado-claro);
            color: var(--color-verde-botanico);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
            outline: none;
        }

        .carousel-arrow:active {
            background-color: var(--color-dourado-claro);
            color: var(--color-branco);
            transform: scale(0.95);
        }

        .carousel-drag-tip {
            font-family: var(--font-serif);
            font-size: 0.85rem;
            color: var(--color-dourado);
            font-style: italic;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
    }

    /* Diagnostic Section elements (Stack) */
    .diagnostic-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .diagnostic-desc {
        margin-bottom: 2rem;
        text-align: center;
    }

    .diag-card-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .diagnostic-card {
        padding: 2rem 1.5rem;
    }

    .diag-card-title {
        font-size: 1.4rem;
    }

    .diag-card-header {
        margin-bottom: 1.2rem;
    }

    .diagnostic-visual-card {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .diag-decor-border {
        top: 10px;
        left: -10px;
        right: 10px;
        bottom: -10px;
        border-radius: var(--border-radius-lg);
    }

    /* Home visit section (Stack) */
    .home-visit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .home-visit-info {
        align-items: center;
    }

    .home-visit-text {
        margin-bottom: 2rem;
    }

    .regions-pill-container {
        margin-bottom: 2.2rem;
        justify-content: center;
    }

    .home-visit-image-wrapper {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-visit-img {
        border-radius: var(--border-radius-lg);
    }

    .home-visit-decor-border {
        top: 10px;
        left: -10px;
        right: 10px;
        bottom: -10px;
        border-radius: var(--border-radius-lg);
    }

    /* Benefits Bar layout mobile overrides */
    .benefits-bar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
        padding: 0 2rem;
    }
    
    .benefits-bar-items {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem 1.8rem;
    }

    @media (max-width: 768px) {
        .benefits-bar-section {
            padding: 3rem 0;
        }
        
        .benefits-bar-container {
            gap: 2rem;
        }
        
        .benefits-bar-items {
            grid-template-columns: 1fr;
            gap: 1.8rem;
        }
        
        .benefit-bar-item {
            gap: 1rem;
        }
        
        .benefit-bar-title {
            font-size: 1.15rem;
        }
        
        .benefit-bar-text {
            font-size: 0.85rem;
        }
    }

    /* About section image offsets (Stack) */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-content {
        align-items: center;
    }

    .about-visual.desktop-only {
        display: none !important;
    }

    .about-visual.mobile-only {
        display: flex !important;
        margin-top: 1rem;
        margin-bottom: 2.2rem;
        width: 100%;
        justify-content: center;
    }

    .about-image-wrapper {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-decor-border {
        top: 12px;
        left: -12px;
        right: 12px;
        bottom: -12px;
        border-radius: 50%;
    }

    .about-values {
        gap: 1.5rem;
        margin-bottom: 2rem;
        justify-content: center;
    }

    .about-signature-container {
        justify-content: center;
        margin-top: 1.2rem;
    }

    .about-signature-img {
        height: 48px;
    }

    /* FAQ accordion padding */
    .accordion-container {
        margin-top: 2rem;
    }

    .accordion-header {
        padding: 1.3rem 1.25rem;
    }

    .faq-question {
        font-size: 1.12rem;
    }

    .accordion-content-inner {
        padding: 0 1.25rem 1.5rem 1.25rem;
    }

    /* Contact Form panel mobile spacing (Stack) */
    .contact-card {
        border-radius: var(--border-radius-lg);
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 2.8rem 1.25rem;
    }

    .contact-panel-desc {
        margin-bottom: 2.2rem;
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-form {
        gap: 1.2rem;
    }

    /* Footer mobile spacing */
    .main-footer {
        padding-top: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 4rem 1.25rem 2rem 1.25rem;
        gap: 2.5rem;
    }

    .footer-brand h2 {
        font-size: 1.8rem;
    }

    .footer-socials {
        justify-content: center;
        margin-top: 1.2rem;
    }

    .footer-legal {
        padding-top: 2rem;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    /* Stack hero buttons fully on tiny devices */
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-panel-title {
        font-size: 1.5rem;
    }

    .contact-detail-item {
        align-items: flex-start;
    }

    .contact-detail-item span {
        line-height: 1.4;
    }

    .btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   SCROLL REVEAL & PAGE LOAD ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageZoomIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Page load animations for Hero */
.hero-eyebrow {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.hero-actions {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}
.hero-bleed-img {
    opacity: 0;
    animation: imageZoomIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Global scroll reveal classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered grids reveal */
.reveal-staggered > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-staggered.reveal-active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay sequences */
.reveal-staggered.reveal-active > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-staggered.reveal-active > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-staggered.reveal-active > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-staggered.reveal-active > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-staggered.reveal-active > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-staggered.reveal-active > *:nth-child(6) { transition-delay: 0.55s; }

/* Micro-interaction hover enhancements */
.warning-item {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.warning-item:hover {
    transform: translateY(-6px) scale(1.03);
}

.specialty-card-v2 {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.specialty-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 74, 46, 0.08);
}

.btn-primary, .btn-hero-whatsapp, .btn-specialties-cta-v2, .btn-warning-whatsapp {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
