/* ==========================================
   Danielle Viana Espaço Beauty
   Elegant Gold — Nail Designer Stylesheet
   ========================================== */

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

/* === Variables === */
:root {
    /* Gold Palette */
    --gold:         #C9A227;
    --gold-light:   #E4C56A;
    --gold-lighter: #F5E6BC;
    --gold-dark:    #9B7B10;
    --gold-deep:    #7A5F0A;

    /* Neutrals */
    --ivory:        #FAF7F0;
    --cream:        #F5EDD8;
    --warm-white:   #FFFDF8;
    --charcoal:     #1C1C1E;
    --charcoal-mid: #2E2E2E;
    --taupe:        #7A7060;
    --taupe-light:  #B0A898;

    /* Semantic */
    --primary:          var(--gold);
    --primary-dark:     var(--gold-dark);
    --primary-light:    var(--gold-lighter);
    --accent:           var(--charcoal);
    --text:             #2E2A22;
    --text-light:       var(--taupe);
    --bg:               var(--ivory);
    --white:            var(--warm-white);
    --gray-100:         #F0EBE1;
    --gray-200:         #E2D9CC;

    /* Heading overrides (used by main.js color-loader) */
    --h1-color:         var(--charcoal);
    --h2-color:         var(--charcoal);
    --p-color:          var(--taupe);
    --btn-bg:           var(--gold);
    --btn-text:         #fff;
    --btn-hover:        var(--gold-dark);
    --grad-services-start: var(--ivory);
    --grad-services-end:   var(--cream);
    --grad-contact-start:  var(--cream);
    --grad-contact-end:    var(--ivory);

    /* Design tokens */
    --radius:     14px;
    --radius-sm:  8px;
    --radius-lg:  22px;
    --shadow:     0 8px 32px rgba(120, 90, 10, 0.10);
    --shadow-lg:  0 16px 56px rgba(120, 90, 10, 0.16);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body:    'DM Sans', sans-serif;
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); overflow-x: hidden; line-height: 1.65; width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === Utility === */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 500;
    color: var(--h2-color, var(--charcoal));
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.header.scrolled {
    background: rgba(28, 22, 10, 0.93);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.28);
}
.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.header__logo-img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    transition: transform var(--transition), width var(--transition), height var(--transition);
}
.header.scrolled .header__logo-img { width: 68px; height: 68px; }
.header__nav-list {
    display: flex;
    gap: 2rem;
}
.header__nav-link {
    color: rgba(255,255,255,0.88);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.3rem 0;
    transition: color var(--transition);
    white-space: nowrap;
}
.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold-light);
    transition: width var(--transition);
}
.header__nav-link:hover { color: var(--gold-light); }
.header__nav-link:hover::after,
.header__nav-link.active::after { width: 100%; }
.header__cta {
    display: inline-block;
    padding: 0.55rem 1.5rem;
    border: 1.5px solid var(--gold-light);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    white-space: nowrap;
}
.header__cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}
.header__mobile-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.header__mobile-btn span {
    display: block;
    width: 24px; height: 2px;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18, 14, 5, 0.97);
    z-index: 999;
    align-items: center;
    justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu__list { text-align: center; padding: 0 1rem; }
.mobile-menu__link {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    padding: 0.7rem;
    transition: color var(--transition);
}
.mobile-menu__link:hover { color: var(--gold-light); }
.mobile-menu__cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2.2rem;
    background: var(--gold);
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
}
.mobile-menu__darkmode {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
}
.mobile-menu__darkmode:hover { background: rgba(255,255,255,0.15); }

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
}
/* Slideshow slides */
.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.hero__slide--active {
    opacity: 1;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(12, 9, 2, 0.55) 0%,
        rgba(20, 14, 3, 0.70) 50%,
        rgba(12, 9, 2, 0.60) 100%
    );
}

/* Corner decorative frames */
.hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.hero__decor-tl,
.hero__decor-br {
    position: absolute;
    width: 120px; height: 120px;
    border-color: rgba(201,162,39,0.45);
    border-style: solid;
}
.hero__decor-tl {
    top: 3rem; left: 3rem;
    border-width: 1px 0 0 1px;
}
.hero__decor-br {
    bottom: 3rem; right: 3rem;
    border-width: 0 1px 1px 0;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 780px;
}
.hero__logo-wrap {
    margin: 0 auto 1.5rem;
    width: 160px; height: auto;
    opacity: 0;
    transform: scale(0.85);
}
.hero__logo {
    width: 100%; height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(201,162,39,0.35));
}
.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    opacity: 0;
    transform: translateY(15px);
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 9vw, 6.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.2rem;
}
.hero__title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}
.hero__title-line--italic {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
}
.hero__subtitle {
    font-size: clamp(0.9rem, 2.2vw, 1.15rem);
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}
.hero__btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}
.hero__btn--primary {
    background: var(--gold);
    color: #fff;
    border: 1.5px solid var(--gold);
}
.hero__btn--primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,162,39,0.35);
}
.hero__btn--ghost {
    background: transparent;
    color: rgba(255,255,255,0.88);
    border: 1.5px solid rgba(255,255,255,0.45);
}
.hero__btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.hero__scroll-mouse {
    width: 22px; height: 36px;
    border: 1.5px solid rgba(201,162,39,0.6);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.hero__scroll-wheel {
    width: 3px; height: 8px;
    background: var(--gold-light);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    60% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   GOLD DIVIDER
   ========================================== */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 2rem;
    background: var(--ivory);
    height: 56px;
}
.gold-divider__line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.gold-divider__ornament {
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
}

/* ==========================================
   STATS
   ========================================== */
.stats {
    background: var(--charcoal);
    padding: 3rem 1.5rem;
}
.stats__container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1rem 3rem;
    flex: 1;
    min-width: 150px;
}
.stats__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
}
.stats__label {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--taupe-light);
    font-weight: 400;
    text-align: center;
}
.stats__divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ==========================================
   ABOUT
   ========================================== */
.about {
    background: linear-gradient(160deg, #FFFDF8 0%, #FDF8EE 60%, #FAF4E6 100%);
    padding: 7rem 1.5rem;
}
.about__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about__image-wrap {
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
}
.about__image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: block;
}
.about__image-frame {
    position: absolute;
    inset: -16px -16px auto auto;
    width: calc(100% - 32px);
    height: calc(100% + 32px);
    border: 1.5px solid var(--gold-light);
    border-radius: var(--radius);
    pointer-events: none;
    z-index: 0;
}
.about__image-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 90px; height: 90px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(120,90,10,0.3);
    z-index: 2;
}
.about__image-badge-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}

.about__text {
    opacity: 0;
    transform: translateX(40px);
}
.about__title-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}
.about__description {
    font-size: 1rem;
    color: var(--taupe);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.about__description strong {
    color: var(--text);
    font-weight: 600;
}
.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
}
.about__highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--text);
}
.about__highlight-icon {
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}
.about__btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--gold);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}
.about__btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(120,90,10,0.3);
}


/* ==========================================
   WAVES DIVIDER
   ========================================== */
.waves-divider {
    height: 100px;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
    margin-top: -2px;
}
.wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 200%; height: 100%;
    background: #F5EDD8;
    border-radius: 50% 50% 0 0 / 40% 40% 0 0;
    opacity: 0.5;
}
#wave1 { animation: wave-anim 6s ease-in-out infinite; opacity: 0.35; }
#wave2 { animation: wave-anim 8s ease-in-out infinite reverse; opacity: 0.25; }
#wave3 { animation: wave-anim 5s ease-in-out infinite; opacity: 0.2; height: 80%; }
@keyframes wave-anim {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20%); }
}

/* ==========================================
   STATS — Animated Counters
   ========================================== */
.stats {
    background: var(--charcoal);
    padding: 4.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.08) 0%, transparent 55%),
                radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.06) 0%, transparent 55%);
    pointer-events: none;
}
.stats__container {
    max-width: 1000px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative; z-index: 1;
}
.stats__item {
    display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem;
    padding: 1.5rem 1rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.stats__item.visible { opacity: 1; transform: translateY(0); }
.stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(201,162,39,0.25), transparent);
}
.stats__number {
    font-family: var(--font-heading);
    font-size: 3rem; font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
    display: inline-block;
    letter-spacing: -1px;
}
.stats__suffix {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 300;
    color: var(--gold);
    display: inline;
    vertical-align: baseline;
}
.stats__label {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}
.stats__ornament {
    font-size: 1.1rem;
    color: rgba(201,162,39,0.3);
    margin-bottom: 0.25rem;
}
/* Keep legacy divider class for compatibility */
.stats__divider { display: none; }

/* ==========================================
   SERVICES — Luxury Editorial Cards
   ========================================== */
.services {
    background: linear-gradient(180deg, #FAF4E6 0%, #FDF8EE 50%, #FFFDF8 100%);
    padding: 8rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.3), transparent);
}
.services__container { max-width: 1140px; margin: 0 auto; }
.services__header {
    text-align: center; margin-bottom: 5rem;
}
.services__subtitle {
    color: var(--taupe); font-size: 0.95rem;
    max-width: 480px; margin: 0 auto; line-height: 1.8;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Service Card — editorial luxury */
.service-card {
    position: relative;
    background: #FFFDF8;
    border-radius: 6px;
    overflow: hidden;
    cursor: default;
    box-shadow: 0 4px 20px rgba(160,120,10,0.07);
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
                box-shadow 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 6px;
    pointer-events: none;
    transition: border-color 0.4s ease;
    z-index: 2;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(100,75,10,0.18), 0 8px 24px rgba(160,120,10,0.08);
}
.service-card:hover::before { border-color: rgba(201,162,39,0.5); }

/* Image with overlay */
.service-card__image-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.service-card__image {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
                filter 0.5s ease;
    filter: brightness(0.95) saturate(0.9);
}
.service-card:hover .service-card__image {
    transform: scale(1.08);
    filter: brightness(1) saturate(1.05);
}
.service-card__image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(12,9,3,0.65) 0%,
        rgba(12,9,3,0.1) 50%,
        transparent 100%
    );
    transition: opacity 0.4s ease;
}

/* Price badge on image */
.service-card__price-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(12,9,3,0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,162,39,0.4);
    border-radius: 40px;
    padding: 0.35rem 0.85rem;
    font-family: var(--font-heading);
    font-size: 1.05rem; font-weight: 500;
    color: var(--gold-light);
    z-index: 3;
    transition: background 0.3s ease;
}
.service-card:hover .service-card__price-badge {
    background: rgba(201,162,39,0.9);
    color: #1A1208;
}

/* Duration on image bottom-left */
.service-card__duration-badge {
    position: absolute;
    bottom: 1rem; left: 1rem;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    z-index: 3;
    display: flex; align-items: center; gap: 0.4rem;
}

/* Content area */
.service-card__content {
    padding: 1.5rem 1.75rem 1.75rem;
    position: relative;
}
.service-card__content::before {
    content: '';
    position: absolute;
    top: 0; left: 1.75rem; right: 1.75rem;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0.15));
}
.service-card__number {
    font-family: var(--font-heading);
    font-size: 0.75rem; font-weight: 400;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.5rem;
}
.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.45rem; font-weight: 500;
    color: var(--charcoal); margin-bottom: 0.65rem;
    line-height: 1.2;
}
.service-card__desc {
    font-size: 0.86rem; color: var(--taupe);
    line-height: 1.75; margin-bottom: 1.25rem;
}
.service-card__footer {
    display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
}
.service-card__price {
    font-family: var(--font-heading);
    font-size: 1.4rem; font-weight: 600;
    color: var(--gold-dark);
}
.service-card__btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    border: 1.5px solid rgba(201,162,39,0.4);
    color: var(--gold-dark);
    border-radius: 40px;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}
.service-card__btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateX(3px);
}

/* ==========================================
   EXPERIENCE BANNER — Letter Animation
   ========================================== */
.experience-banner {
    position: relative;
    padding: 9rem 1.5rem;
    background: var(--charcoal);
    text-align: center;
    overflow: hidden;
}
.experience-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,162,39,0.1) 0%, transparent 65%);
    pointer-events: none;
}
/* Decorative corner lines */
.experience-banner::after {
    content: '';
    position: absolute;
    top: 2.5rem; left: 2.5rem; right: 2.5rem; bottom: 2.5rem;
    border: 1px solid rgba(201,162,39,0.08);
    pointer-events: none;
}
.experience-banner__overlay { display: none; }
.experience-banner__content {
    position: relative; z-index: 1;
    max-width: 700px; margin: 0 auto;
}
.experience-banner__tag {
    font-size: 0.72rem; letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(201,162,39,0.5);
    margin-bottom: 2rem;
    font-weight: 500;
    display: block;
}
.experience-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    font-weight: 300; color: #F5EDD8;
    line-height: 1.1; margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}
.experience-banner__title em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
}
/* Individual letter spans for animation */
.banner-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    margin-right: 0.25em;
}
.banner-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(110%);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.banner-letter.visible {
    opacity: 1;
    transform: translateY(0);
}
.experience-banner__btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2.75rem;
    border: 1.5px solid rgba(201,162,39,0.4);
    border-radius: 60px; color: var(--gold-light);
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative; overflow: hidden;
}
.experience-banner__btn::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}
.experience-banner__btn:hover::before { transform: scaleX(1); }
.experience-banner__btn:hover {
    border-color: var(--gold);
    color: #1A1208;
}

/* ==========================================
   TESTIMONIALS — Refined Editorial
   ========================================== */
.testimonials {
    background: linear-gradient(160deg, #FFFDF8 0%, #FDF5E6 50%, #FFFDF8 100%);
    padding: 8rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.25), transparent);
}
.testimonials__container { max-width: 1140px; margin: 0 auto; }
.testimonials__header { text-align: center; margin-bottom: 4.5rem; }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Testimonial Card — refined */
.testimonial-card {
    background: #FFFDF8;
    border-radius: 6px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-left: 2px solid transparent;
    box-shadow: 0 4px 18px rgba(160,120,10,0.07);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -1rem; left: 1.5rem;
    font-family: var(--font-heading);
    font-size: 8rem; font-weight: 300;
    color: var(--gold); opacity: 0.12;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0.2));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(100,75,10,0.1);
    border-left-color: var(--gold);
}
.testimonial-card:hover::before { opacity: 0.2; }
.testimonial-card:hover::after { transform: scaleX(1); }

.testimonial-card__stars {
    display: flex; gap: 3px;
    margin-bottom: 1.25rem;
}
.testimonial-card__stars span {
    color: var(--gold);
    font-size: 0.8rem;
}
.testimonial-card__text {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-style: italic;
    font-weight: 400; color: var(--text);
    line-height: 1.75; margin-bottom: 1.75rem;
    position: relative; z-index: 1;
}
.testimonial-card__divider {
    width: 30px; height: 1px;
    background: var(--gold-lighter);
    margin-bottom: 1rem;
}
.testimonial-card__author {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold-dark);
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery {
    background: linear-gradient(160deg, #F5EDD8 0%, #FDF8EE 50%, #F5EDD8 100%);
    padding: 7rem 1.5rem;
    position: relative; overflow: hidden;
}
.gallery::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 80%; height: 80%;
    background: radial-gradient(ellipse, rgba(201,162,39,0.10) 0%, transparent 65%);
    pointer-events: none;
}
.gallery__container { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }
.gallery__header { text-align: center; margin-bottom: 3.5rem; }
.gallery__header .section-tag { color: var(--gold-dark); }
.gallery__header .section-title { color: var(--charcoal); }
.gallery__subtitle { color: var(--taupe); font-size: 0.95rem; max-width: 480px; margin: 0 auto; line-height: 1.7; }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}
.gallery-card {
    background: #FFFDF8;
    border: 1px solid rgba(201,162,39,0.25);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(180,140,20,0.07);
}
.gallery-card:hover { border-color: rgba(201,162,39,0.55); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(180,140,20,0.15); }
.gallery-card__compare { position: relative; display: grid; grid-template-columns: 1fr 1fr; height: 230px; overflow: hidden; }
.gallery-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-card:hover .gallery-card__img { transform: scale(1.04); }
.gallery-card__label { position: absolute; bottom: 8px; font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(0,0,0,0.55); color: #F5E6BC; padding: 3px 8px; border-radius: 2px; }
.gallery-card__label--antes { left: 8px; }
.gallery-card__label--depois { right: 8px; }
.gallery-card__divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold); opacity: 0.7; z-index: 2; }
.gallery-card__content { padding: 1.1rem 1.25rem; border-top: 1px solid rgba(201,162,39,0.12); }
.gallery-card__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.25rem; }
.gallery-card__desc { font-size: 0.82rem; color: var(--taupe); line-height: 1.6; }
.gallery__empty { text-align: center; padding: 4rem 1.5rem; color: var(--taupe-light); font-family: var(--font-heading); font-size: 1.2rem; font-style: italic; grid-column: 1/-1; }
.gallery-lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(8,6,2,0.97); display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.gallery-lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__inner { max-width: 900px; width: 100%; position: relative; }
.lightbox__close { position: absolute; top: -2.5rem; right: 0; background: none; border: none; color: rgba(201,162,39,0.7); font-size: 1.8rem; cursor: pointer; transition: color 0.3s; z-index: 1; }
.lightbox__close:hover { color: var(--gold-light); }
.lightbox__compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.lightbox__img-wrap { position: relative; border-radius: 4px; overflow: hidden; background: #1A1510; }
.lightbox__img { width: 100%; max-height: 500px; object-fit: cover; display: block; }
.lightbox__img-label { position: absolute; bottom: 0; left: 0; right: 0; text-align: center; padding: 0.6rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); }
.lightbox__title { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400; color: #F0E6C8; text-align: center; margin-bottom: 0.3rem; }
.lightbox__desc { text-align: center; color: rgba(201,162,39,0.55); font-size: 0.88rem; }

/* ==========================================
   CONTACT — Fluid & Elegant
   ========================================== */
.contact {
    background: linear-gradient(160deg, #FAF4E6 0%, #FDF8EE 60%, #FFFDF8 100%);
    padding: 8rem 1.5rem;
    position: relative; overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(to left, rgba(245,237,216,0.6), transparent);
    pointer-events: none;
}
.contact__container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: start;
    position: relative; z-index: 1;
}
.contact__info { opacity: 0; transform: translateX(-40px); }
.contact__info .section-title { color: var(--charcoal); }
.contact__text {
    color: var(--taupe); font-size: 0.97rem;
    line-height: 1.9; margin-bottom: 2.5rem;
}
.contact__channels { display: flex; flex-direction: column; gap: 1rem; }
.contact__channel {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.92rem; color: var(--text);
    font-weight: 500; transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 8px;
}
.contact__channel:hover { color: var(--gold-dark); background: rgba(201,162,39,0.05); }
.contact__channel-icon-wrap {
    display: flex; align-items: center; justify-content: center;
    width: 46px; height: 46px;
    background: var(--warm-white);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 50%; flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(100,75,10,0.06);
}
.contact__channel:hover .contact__channel-icon-wrap {
    background: var(--gold); border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(201,162,39,0.3);
    transform: scale(1.05);
}
.contact__channel-icon { width: 20px; height: 20px; transition: filter 0.3s ease; }
.contact__channel:hover .contact__channel-icon { filter: brightness(0) invert(1); }

/* Contact Form — fluid design */
.contact__form-wrap { opacity: 0; transform: translateX(40px); }
.contact__form {
    background: var(--warm-white);
    padding: 3rem 2.75rem;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(100,75,10,0.04), 0 20px 60px rgba(100,75,10,0.08);
    position: relative;
    overflow: hidden;
}
/* Top gold accent line */
.contact__form::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
}
/* Subtle background ornament */
.contact__form::after {
    content: '"';
    position: absolute;
    bottom: -3rem; right: 1rem;
    font-family: var(--font-heading);
    font-size: 16rem; font-weight: 300;
    color: var(--gold); opacity: 0.03;
    line-height: 1; pointer-events: none;
    user-select: none;
}
.contact__form-header {
    display: flex; align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--gray-100);
}
.contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.7rem; font-weight: 500;
    color: var(--charcoal);
}
.contact__form-ornament { color: var(--gold-light); font-size: 1.1rem; }

/* Floating label inputs */
.form-group { margin-bottom: 0; }
.form-field {
    position: relative;
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--taupe); margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}
.form-field:focus-within .form-label { color: var(--gold-dark); }
.form-input {
    width: 100%; padding: 0.9rem 0;
    border: none; border-bottom: 1.5px solid var(--gray-200);
    border-radius: 0;
    font-family: var(--font-body); font-size: 0.95rem;
    color: var(--text); background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-input:focus { border-bottom-color: var(--gold); }
.form-input::placeholder { color: var(--taupe-light); font-size: 0.88rem; }
/* Keep textarea slightly different */
.form-textarea {
    resize: none; min-height: 90px;
    padding: 0.9rem 0;
    border: none; border-bottom: 1.5px solid var(--gray-200);
    width: 100%;
    font-family: var(--font-body); font-size: 0.95rem;
    color: var(--text); background: transparent; outline: none;
    transition: border-color 0.3s ease;
}
.form-textarea:focus { border-bottom-color: var(--gold); }
.form-textarea::placeholder { color: var(--taupe-light); font-size: 0.88rem; }
.contact__form-btn {
    width: 100%; padding: 1.1rem;
    background: var(--charcoal);
    color: #fff; border: none; border-radius: 0;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    cursor: pointer; margin-top: 0.5rem;
    position: relative; overflow: hidden;
    transition: all 0.4s ease;
}
.contact__form-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 0;
}
.contact__form-btn span { position: relative; z-index: 1; }
.contact__form-btn:hover::before { transform: scaleX(1); }
.contact__form-btn:hover { color: #1A1208; }

.footer {
    background: var(--charcoal);
    padding: 3.5rem 1.5rem 2rem;
}
.footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.footer__logo {
    width: 110px; height: auto;
    object-fit: contain;
    filter: brightness(1.1);
}
.footer__tagline {
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--taupe-light);
}
.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}
.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid rgba(201,162,39,0.25);
    border-radius: 50%;
    transition: all var(--transition);
    opacity: 0.7;
}
.footer__social-link:hover {
    border-color: var(--gold);
    opacity: 1;
    transform: translateY(-2px);
}
.footer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.25), transparent);
    margin-bottom: 2rem;
}
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer__text {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
}
.footer__dev {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
    transition: color var(--transition);
}
.footer__dev:hover { color: rgba(255,255,255,0.6); }
.footer__dev-logo { width: 110px; opacity: 0.5; }

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    z-index: 900;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: all var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}


/* ==========================================
   RESPONSIVE — TABLET
   ========================================== */
@media (max-width: 992px) {
    .header__nav, .header__cta { display: none; }
    .header__mobile-btn { display: flex; }
    .about__container { grid-template-columns: 1fr; gap: 3rem; }
    .about__image-wrap { order: -1; max-width: 480px; margin: 0 auto; }
    .about__text { text-align: center; }
    .about__title-divider { margin: 0 auto 1.5rem; }
    .about__highlights { align-items: center; }
    .about__btn { display: inline-block; }
    .stats__container { grid-template-columns: repeat(2, 1fr); }
    .stats__item:nth-child(2)::after, .stats__item:nth-child(4)::after { display: none; }
    .services__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .contact__container { grid-template-columns: 1fr; gap: 3.5rem; }
    .contact__info { opacity: 1; transform: none; }
    .contact__form-wrap { opacity: 1; transform: none; }
    .lightbox__compare { grid-template-columns: 1fr; gap: 0.75rem; }
    .lightbox__img { max-height: 280px; }
}

@media (max-width: 768px) {
    .hero__decor-tl, .hero__decor-br { width: 70px; height: 70px; top: 1.5rem; left: 1.5rem; }
    .hero__decor-br { top: auto; left: auto; bottom: 4rem; right: 1.5rem; }
    .about, .testimonials, .contact, .services, .gallery { padding: 5rem 1rem; }
    .experience-banner { padding: 6rem 1.25rem; }
    .experience-banner::after { display: none; }
    .services__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .contact__form { padding: 2rem 1.5rem; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .waves-divider { height: 80px; margin-top: -60px; }
    .stats__container { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stats__item { padding: 1.25rem 0.75rem; }
    .stats__item::after { display: none; }
    .stats__number { font-size: 2.4rem; }
}

@media (max-width: 480px) {
    .hero { min-height: 100svh; }
    .header__logo-img { width: 64px; height: 64px; }
    .header.scrolled .header__logo-img { width: 50px; height: 50px; }
    .hero__logo-wrap { width: 90px; height: 90px; }
    .hero__title { font-size: clamp(2.5rem, 13vw, 4rem); }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__btn { width: 220px; text-align: center; }
    .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .about__image-frame { display: none; }
    .about__image-badge { width: 75px; height: 75px; }
    .testimonial-card { padding: 2rem 1.5rem; }
    .stats__container { grid-template-columns: repeat(2, 1fr); }
    .stats__number { font-size: 2rem; }
    .mobile-menu__link { font-size: 1.5rem; padding: 0.6rem; }
    .contact__form::after { display: none; }
}

@media (max-width: 360px) {
    .header__container { padding: 0 0.75rem; }
    .header__logo-img { width: 52px; height: 52px; }
    .hero__title { font-size: 2.2rem; }
    .hero__subtitle { font-size: 0.88rem; }
    .about, .services, .testimonials, .contact, .gallery { padding: 4rem 0.75rem; }
    .experience-banner { padding: 5rem 1rem; }
}

/* ── Password eye toggle ── */
.pass-wrap { position: relative; display: flex; align-items: center; }
.pass-wrap input { flex: 1; padding-right: 2.8rem !important; }
.pass-eye { position: absolute; right: 0.75rem; background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; color: #999; transition: color 0.2s; }
.pass-eye:hover { color: #555; }
.pass-eye svg { width: 20px; height: 20px; pointer-events: none; }
