@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --linen: #F7F2EC;
    --gold: #C09F6D;
    --brown: #5D4726;
    --brown-light: #846B4E;
    --beige: #E1D5C9;
    --dark: #2D2418;
    --white: #FFFFFF;
    --muted: #7A6E64;

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--white);
    color: var(--dark);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 90px;
    /* Navbar compensation */
}

@media (max-width: 768px) {
    body {
        padding-top: 75px;
        /* Mobile navbar compensation */
    }
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--brown);
    line-height: 1.1;
    font-weight: 500;
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

.eyebrow {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brown-light);
    /* Darker gold for better contrast */
    display: block;
    margin-bottom: 1.5rem;
}

/* LAYOUT */
.wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .wrap {
        padding: 0 24px;
    }
}

.section {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

/* NAVBAR */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: transparent;
    z-index: 900;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
}

#navbar.scrolled {
    height: 75px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 159, 109, 0.15);
    box-shadow: 0 15px 45px rgba(93, 71, 38, 0.08);
}

.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--brown);
    text-decoration: none;
    letter-spacing: -0.5px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: translateX(3px);
}

.logo-accent {
    font-weight: 500;
    color: var(--gold);
    border-bottom: 1px solid rgba(192, 159, 109, 0.3);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--gold);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

.nav-links a:not(.btn).active {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


.nav-actions .btn--nav {
    padding: 12px 28px;
    font-size: 11px;
    border-radius: 50px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(192, 159, 109, 0.2);
    transition: all 0.3s ease;
}

.nav-actions .btn--nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 159, 109, 0.3);
    background: var(--brown);
}

/* HERO SECTION */
.hero {
    background: #F7F2EC;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-top: 40px;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-text {
    padding: 20px 0;
    max-width: 600px;
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-text p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-link {
    color: var(--brown);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2.5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    font-weight: 600;
    transition: border-color 0.3s;
}

.hero-link:hover {
    border-color: var(--gold);
}

.hero-image-wrap {
    display: flex;
    justify-content: flex-end;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
}

.hero-image-container img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    padding: 10px;
    background: white;
    border: 1px solid rgba(192, 159, 109, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.hero-badge {
    position: absolute;
    left: -20px;
    bottom: 40px;
    background: var(--gold);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(192, 159, 109, 0.3);
    z-index: 5;
    white-space: nowrap;
}

/* AUTHORITY BAR */
.authority-bar {
    padding: 60px 0;
    background: white;
}

.authority-grid {
    background: var(--dark);
    border-radius: 20px;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(45, 36, 24, 0.15);
    border: 1px solid rgba(192, 159, 109, 0.2);
    align-items: center;
}

.authority-item {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.authority-item:last-child {
    border-right: none;
}

.auth-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.auth-number .gold {
    color: var(--gold);
}

.auth-label {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--brown) !important;
    /* Force visibility */
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        padding: 6px;
        margin-right: -6px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 12px;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    /* Remove CTA button on mobile as requested */
    .nav-actions .btn--nav {
        display: none;
    }
}

@media (max-width: 400px) {
    .nav-logo {
        font-size: 1.1rem;
    }
}


/* MOBILE MENU */
#mobileMenu {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #2D2418 0%, #1A1410 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 100px 40px;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#mobileMenu.open {
    transform: translateX(0);
}

#mobileMenu .nav-links-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
    width: 100%;
}

#mobileMenu a {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(192, 159, 109, 0.1);
    transition: all 0.3s ease;
    display: block;
    font-weight: 300;
}

#mobileMenu a:hover,
#mobileMenu a.active {
    color: var(--gold);
    padding-left: 10px;
}

.mobile-menu-footer {
    margin-top: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

#mobileMenu.open .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-footer p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.mobile-contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-contact-links a {
    font-family: var(--font-sans) !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: rgba(192, 159, 109, 0.2);
    transform: rotate(90deg);
}

.close-menu {
    position: absolute;
    top: 32px;
    right: 32px;
    color: var(--gold);
    background: none;
    border: none;
    cursor: pointer;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn--gold {
    background-color: var(--gold);
    color: white;
}

.btn--dark {
    background-color: var(--dark);
    color: white;
}

.btn--ghost {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--brown);
}

.btn--wa {
    background-color: #25D366;
    color: white;
}

/* WHATSAPP FLOAT - CLEANED FOR PURITY */
.wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-circle {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s;
}

.wa-circle:hover {
    transform: scale(1.08);
}

.wa-circle svg {
    width: 28px;
    height: 28px;
    fill: white;
}

body.menu-open .wa-float {
    display: none;
}


/* HERO REFINEMENTS - REMOVED FOR PURITY */

/* TREATMENT CARDS */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background-color: transparent;
}

@media (max-width: 1024px) {
    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .treatment-grid {
        grid-template-columns: 1fr;
    }
}

.treatment-slider {
    padding: 40px 0 80px !important;
    overflow: visible !important;
    /* Allow slides to bleed out for the editorial feel */
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper-slide {
    opacity: 1;
    transform: none;
    filter: none;
    display: flex;
    justify-content: center;
}

.swiper-slide-active {
    opacity: 1;
    transform: none;
    filter: none;
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 1;
    transform: none;
    filter: none;
}

.luxury-nav {
    color: var(--gold) !important;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.luxury-nav::after {
    font-size: 18px !important;
    font-weight: bold;
}

.luxury-pagination .swiper-pagination-bullet {
    background: #d1c5b6 !important;
    opacity: 1;
    width: 6px;
    height: 6px;
    transition: all 0.4s ease;
}

.luxury-pagination .swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 24px !important;
    border-radius: 4px;
}

.treatment-card {
    background: white;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(192, 159, 109, 0.1);
    height: 100%;
    box-shadow: 0 20px 50px rgba(26, 28, 28, 0.05);
    max-width: 360px;
    /* Reduced to look more elegant */
    width: 100%;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(45, 36, 24, 0.12);
    border-color: rgba(192, 159, 109, 0.3);
}

.treatment-card img {
    height: 380px;
    /* Controlled height */
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.treatment-card:hover img {
    transform: scale(1.06);
}

.treatment-card-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.treatment-card-content p {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* CREDENTIAL PILLS */
.pill {
    border: 1px solid rgba(192, 159, 109, 0.4);
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* TESTIMONIALS */
#depoimentos {
    margin-top: 80px;
    /* Add separation from previous section */
    padding: 80px 0 !important;
    /* Reduce vertical padding */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 159, 109, 0.15);
    padding: 40px 32px;
    /* Reduced internal padding */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(192, 159, 109, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    color: white;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.author-avatar {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 0.8;
    color: var(--gold);
    display: block;
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* FORMS */
.form-group {
    margin-bottom: 32px;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(93, 71, 38, 0.2);
    padding: 16px 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--brown);
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-bottom-color: var(--gold);
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* SCROLL TOP */
#scrollTop {
    position: fixed;
    bottom: 32px;
    right: 100px;
    /* Offset from WA FAB */
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 799;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#scrollTop.visible {
    opacity: 1;
    visibility: visible;
}

#scrollTop:hover {
    background: var(--gold);
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #scrollTop {
        right: 24px;
        bottom: 100px;
    }
}

/* UTILITIES */
.v-stack>*+* {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

.gold-rule {
    display: block;
    width: 48px;
    height: 1px;
    background-color: var(--gold);
    margin-bottom: 2rem;
}

/* TAILWIND REPLACEMENTS */
.bg-linen {
    background-color: var(--linen);
}

.bg-dark {
    background-color: var(--dark);
}

.bg-brown {
    background-color: var(--brown);
}

.bg-brown-light {
    background-color: var(--brown-light);
}

.bg-white {
    background-color: var(--white);
}

.bg-beige {
    background-color: var(--beige);
}

.text-white {
    color: var(--white);
}

.text-gold {
    color: var(--gold);
}

/* ABOUT SECTION REFINED */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--linen);
}

.about-image-side {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    background: #fdfaf7;
    /* Subtle placeholder background */
}

.about-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    /* Focus more on the face/action area */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-content-side {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--linen);
    position: relative;
}

.about-content-side .drop-cap {
    font-family: var(--font-serif);
    font-size: 4rem;
    float: left;
    line-height: 0.8;
    margin-right: 15px;
    color: var(--gold);
    font-style: italic;
}

.about-badges {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.about-badge {
    background: white;
    padding: 15px 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 45px rgba(93, 71, 38, 0.08);
    border: 1px solid rgba(192, 159, 109, 0.1);
}

.about-badge span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brown);
}

.signature-block {
    margin-top: 40px;
    position: relative;
}

.signature-text {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--brown);
    font-style: italic;
    opacity: 0.8;
}

.crm-text {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 5px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content-side {
        padding: 60px 40px;
    }

    .about-image-side {
        min-height: 380px;
    }
}

/* MOBILE REFINEMENTS (max-width: 768px) */
@media (max-width: 768px) {

    /* Main Layout */
    .container {
        padding: 0 20px;
    }

    /* Fixed Section Padding */
    .section,
    section[id] {
        padding: 60px 0 !important;
    }

    /* Typography Scaling */
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }

    h2 {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }

    .eyebrow {
        font-size: 9px !important;
        letter-spacing: 2px !important;
        margin-bottom: 12px !important;
    }

    /* Hero Optimization */
    .hero {
        padding: 90px 0 40px !important;
        text-align: center;
        min-height: 100vh !important;
    }

    .hero-wrap {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .hero-text {
        order: 2;
        max-width: 100%;
        padding: 0;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrap {
        order: 1;
        justify-content: center;
    }

    .hero-image-container {
        max-width: 100%;
    }

    .hero-image-container img {
        max-height: 400px;
        margin: 0 auto;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    /* Authority Bar */
    .authority-grid {
        grid-template-columns: 1fr !important;
        padding: 40px 20px !important;
    }

    .authority-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 0 0 20px 0 !important;
    }

    .authority-item:last-child {
        border-bottom: none;
    }

    /* About Section */
    .about-content-side {
        padding: 60px 20px !important;
    }

    .about-badges {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
    }

    .about-badge {
        width: 100%;
        justify-content: center;
    }

    .signature-text {
        font-size: 2rem !important;
    }

    /* Treatment Cards & Swiper */
    .treatment-slider {
        padding: 20px 0 40px !important;
    }

    .treatment-card img {
        height: 300px !important;
    }

    .treatment-card-content h3 {
        font-size: 1.2rem;
    }

    /* Footer Optimization */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-grid .v-stack {
        align-items: center;
    }

    /* Mobile Menu Overlay */
    #mobileMenu {
        padding: 120px 20px;
    }

    #mobileMenu a {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
}

/* LGPD COOKIE BANNER */
#lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 1px solid rgba(192, 159, 109, 0.3);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    flex-wrap: wrap;
}

#lgpd-banner.visible {
    transform: translateY(0);
}

#lgpd-banner p {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 260px;
}

#lgpd-banner p a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lgpd-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.lgpd-btn-accept {
    background: var(--gold);
    color: white;
    border: none;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lgpd-btn-accept:hover {
    background: var(--brown);
    transform: translateY(-2px);
}

.lgpd-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lgpd-btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

@media (max-width: 768px) {
    #lgpd-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }

    .lgpd-actions {
        width: 100%;
    }

    .lgpd-btn-accept,
    .lgpd-btn-reject {
        flex: 1;
        text-align: center;
    }

    /* Testimonials Mobile Refinement */
    #depoimentos .wrap>div[style*="grid"] {
        gap: 30px !important;
    }

    .testimonial-card {
        padding: 32px 24px !important;
    }
}

/* HERO ENTRANCE ANIMATIONS */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-image-container {
    animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-text .eyebrow {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}

.hero-text h1 {
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-actions {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* FAQ SECTION */
.faq-section {
    padding: 120px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(192, 159, 109, 0.2);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--brown);
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 500;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--gold);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-icon::before {
    width: 2px;
    height: 14px;
    left: 11px;
    top: 5px;
}

.faq-icon::after {
    width: 14px;
    height: 2px;
    left: 5px;
    top: 11px;
}

.faq-item.active .faq-icon::before {
    transform: rotate(90deg);
}

.faq-item.active .faq-icon::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-answer-inner {
    padding-bottom: 30px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item.active .faq-question h3 {
    color: var(--gold);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }
}