:root {
    --white: #FFFFFF;
    --light: #FDFCFB; 
    --beige: #F5EFEB; 
    --nude: #E6DCD1; 
    --gold: #C2A57F; 
    --dark: #1A1817;
    --text-main: #333130;
    --text-muted: #7A7673;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body); color: var(--text-main);
    background-color: var(--light); line-height: 1.6;
    overflow-x: hidden; -webkit-font-smoothing: antialiased; font-weight: 300;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.section-padding { padding: 130px 0; }
.bg-light { background-color: var(--light); }
.bg-nude { background-color: var(--beige); }
.bg-dark { background-color: var(--dark); color: var(--white); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 4rem; }
.mb-5 { margin-bottom: 4rem; }
.relative { position: relative; z-index: 2; }

/* Tipografia */
h1, h2, h3, .brand { font-family: var(--font-heading); font-weight: 400; color: inherit; }
h1 { font-size: clamp(3rem, 6vw, 5rem); line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
h1 em { font-style: italic; background: linear-gradient(135deg, var(--gold), #E6DCD1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; padding-right: 5px; }
h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1.1; margin-bottom: 1rem; }
.subtitle-gold { font-family: var(--font-body); font-size: 0.95rem; font-weight: 400; background: linear-gradient(135deg, var(--gold), var(--nude)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; }
.kicker { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 4px; color: var(--text-muted); margin-bottom: 1.2rem; }
.text-gold { background: linear-gradient(135deg, var(--gold), #f3e5d8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Premium Elements */
.preloader { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: var(--dark); z-index: 999999; display: flex; align-items: center; justify-content: center; transition: opacity 0.8s ease, visibility 0.8s ease; }
.preloader .brand { color: var(--gold); letter-spacing: 15px; opacity: 0; transform: scale(0.9); animation: preloaderFadeIn 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }
@keyframes preloaderFadeIn { 100% { opacity: 1; letter-spacing: 4px; transform: scale(1); } }
body.loaded .preloader { opacity: 0; visibility: hidden; }
body.loading { overflow: hidden; }

.custom-cursor { position: fixed; top: 0; left: 0; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 999999; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background 0.3s; mix-blend-mode: exclusion; }
.custom-cursor.hovering { width: 40px; height: 40px; background: var(--white); mix-blend-mode: difference; }
@media (max-width: 768px) { .custom-cursor { display: none; } }

/* Botões */
.btn-glow {
    display: inline-block; padding: 18px 45px; background-color: var(--gold); color: var(--white);
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; text-decoration: none;
    transition: all 0.4s ease; border: 1px solid var(--gold);
}
.btn-glow:hover { background-color: var(--white); color: var(--dark); border-color: var(--white); }
.btn-glow.dark { background-color: var(--white); color: var(--dark); border-color: var(--white); }
.btn-glow.dark:hover { background-color: var(--gold); color: var(--white); border-color: var(--gold); }

/* Navbar */
.boutique-nav { position: fixed; top: 0; left: 0; width: 100%; padding: 30px 0; z-index: 100; color: white; transition: all 0.4s ease; }
.boutique-nav.scrolled { padding: 15px 0; background: rgba(26, 24, 23, 0.4); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.brand { font-size: 1.5rem; letter-spacing: 4px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.btn-outline-gold { padding: 12px 30px; border: 1px solid var(--white); color: var(--white); text-decoration: none; font-size: 0.75rem; text-transform: uppercase; transition: 0.3s; letter-spacing: 2px; }
.btn-outline-gold:hover { background: var(--white); color: var(--dark); }

/* HERO COM SLIDER KEN BURNS */
.hero-boutique { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.slide { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background-size: cover; background-position: center; 
    opacity: 0; transition: opacity 2s ease-in-out, transform 8s linear; 
    transform: scale(1);
}
.slide.active { opacity: 1; transform: scale(1.08); }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(26,24,23,0.6), rgba(26,24,23,0.8)); z-index: -1; }
.hero-content { max-width: 800px; color: var(--white); }
.hero-content p { font-size: 1.15rem; color: #EEE; max-width: 600px; margin: 0 auto; line-height: 1.8; }
.hero-content .kicker { color: var(--gold); }

/* SEÇÃO DA ESPECIALISTA */
.grid-editorial-split { display: grid; grid-template-columns: 5fr 6fr; gap: 8vw; align-items: center; }
.premium-frame { position: relative; padding: 25px 25px 0 0; }
.frame-offset {
    position: absolute; top: 0; right: 0; width: calc(100% - 25px); height: calc(100% - 25px);
    border: 1px solid var(--gold); z-index: 1; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.premium-frame:hover .frame-offset { transform: translate(-15px, 15px); }

.img-mask { position: relative; z-index: 2; width: 100%; height: 600px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.esp-img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; transition: transform 0.6s ease; }
.premium-frame:hover .esp-img { transform: scale(1.03); }

.floating-badge {
    position: absolute; bottom: -30px; left: -30px; z-index: 10;
    display: flex; align-items: center; gap: 15px; padding: 20px 30px; 
    background: rgba(255, 255, 255, 0.95); box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.badge-icon { font-size: 1.5rem; color: var(--gold); }
.badge-content strong { display: block; font-family: var(--font-heading); font-size: 1.8rem; color: var(--dark); line-height: 1; }
.badge-content span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }

.esp-text-col .bio { margin-bottom: 20px; font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; }
.credentials-list { border-top: 1px solid var(--nude); padding-top: 30px; }
.cred-row { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; }
.check { color: var(--gold); font-size: 1.2rem; line-height: 1.2; }
.signature { width: 140px; opacity: 0.8; }

/* SERVIÇOS (Image Reveal Cards) */
.grid-servicos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.editorial-card {
    position: relative; height: 500px; background: var(--white); border: 1px solid var(--nude);
    overflow: hidden; cursor: pointer; transition: all 0.4s ease;
}
.card-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.4s ease, transform 0.6s ease;
}
.editorial-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26,24,23,0.8); z-index: 1; opacity: 0; transition: opacity 0.4s ease;
}
.card-content { position: relative; z-index: 2; padding: 40px; height: 100%; display: flex; flex-direction: column; transition: color 0.4s ease; }
.icon-line { font-size: 2rem; color: var(--gold); margin-bottom: 25px; transition: color 0.4s; }
.editorial-card h3 { font-size: 1.8rem; margin-bottom: 10px; }
.editorial-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 25px; transition: color 0.4s; }
.card-list { list-style: none; border-top: 1px solid var(--nude); padding-top: 20px; margin-top: auto; transition: border-color 0.4s; }
.card-list li { font-size: 0.9rem; padding: 6px 0; color: var(--text-main); transition: color 0.4s; }

.editorial-card:hover { transform: translateY(-5px); border-color: transparent; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.editorial-card:hover .card-bg { opacity: 1; transform: scale(1.05); }
.editorial-card:hover::before { opacity: 1; }
.editorial-card:hover .card-content { color: var(--white); }
.editorial-card:hover .icon-line { color: var(--gold); }
.editorial-card:hover p { color: #DDD; }
.editorial-card:hover .card-list { border-color: rgba(255,255,255,0.2); }
.editorial-card:hover .card-list li { color: var(--white); }

/* PROVA SOCIAL */
.testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.testimonial-box { position: relative; padding: 40px 30px; background: transparent; border: none; text-align: left; transition: transform 0.4s ease; }
.testimonial-box::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 4px; border: 1px solid rgba(255,255,255,0.4); z-index: -1; transition: all 0.4s; }
.testimonial-box:hover::before { background: rgba(255,255,255,0.9); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.testimonial-box:hover { transform: translateY(-5px); }
.t-quote-mark { position: absolute; top: -10px; left: 20px; font-family: var(--font-heading); font-size: 8rem; color: var(--gold); opacity: 0.15; line-height: 1; pointer-events: none; }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 25px; }
.t-text { font-style: italic; color: var(--text-main); font-size: 1.05rem; line-height: 1.8; margin-bottom: 25px; font-family: var(--font-heading); }
.t-author { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); font-weight: 500; }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Timeline Experiência */
.grid-experiencia { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.timeline { border-left: 1px solid #333; padding-left: 40px; }
.tl-item { position: relative; margin-bottom: 40px; }
.tl-dot {
    position: absolute; left: -56px; top: 0; width: 30px; height: 30px;
    background: var(--dark); border: 1px solid var(--gold); color: var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 0.9rem;
}
.tl-item h4 { font-size: 1.2rem; color: var(--gold); margin-bottom: 5px; }
.tl-item p { font-size: 0.9rem; color: #aaa; }

/* CTA Fotográfico */
.cta-mid { position: relative; padding: 160px 0; color: var(--white); overflow: hidden; }
.cta-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.overlay-dark { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(26, 24, 23, 0.8); }
.cta-mid h2 { font-size: clamp(2.5rem, 5vw, 4rem); }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.acc-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.acc-header {
    width: 100%; text-align: left; background: none; border: none; padding: 30px 0;
    font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-main);
    display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; cursor: pointer;
}
.acc-header::after { content: '+'; font-family: var(--font-body); font-weight: 300; transition: transform 0.3s; }
.acc-header.active { color: var(--gold); }
.acc-header.active::after { transform: rotate(45deg); }
.acc-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-content p { padding-bottom: 30px; color: var(--text-muted); font-size: 1rem; line-height: 1.8; }

/* Footer */
.footer-boutique { padding-top: 80px; }
.grid-footer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center; }
.grid-footer h4 { color: var(--gold); letter-spacing: 3px; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 20px; }
.grid-footer p, .grid-footer a { color: #999; text-decoration: none; font-size: 0.95rem; line-height: 1.8; transition: color 0.3s; }
.grid-footer a:hover { color: var(--white); }
.copyright { padding: 30px 0; text-align: center; color: #555; font-size: 0.8rem; letter-spacing: 1px; }

/* ========================================= */
/* Botão WhatsApp Premium (Atualizado)         */
/* ========================================= */
.wpp-float-premium {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    display: flex; align-items: center; gap: 15px;
    background: rgba(26, 24, 23, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 8px 8px 8px 25px; border-radius: 50px;
    border: 1px solid rgba(194, 165, 127, 0.4); /* Borda Dourada Suave */
    color: var(--white); text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); cursor: pointer;
}
.wpp-text { 
    font-family: var(--font-body); font-size: 0.75rem; text-transform: uppercase; 
    letter-spacing: 1px; font-weight: 500; color: var(--nude); 
}
.wpp-icon {
    width: 45px; height: 45px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    color: white; box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.wpp-float-premium:hover {
    transform: translateY(-5px); border-color: var(--gold);
    background: rgba(26, 24, 23, 0.98);
}
.wpp-float-premium:hover .wpp-icon { 
    transform: scale(1.1); box-shadow: 0 0 25px rgba(37, 211, 102, 0.6); 
}

/* Animações (AOS style) */
.fade-up { opacity: 0; transform: translateY(40px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-in-zoom { opacity: 0; transform: scale(0.95); transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in-zoom.in-view { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Mobile */
@media (max-width: 900px) {
    .grid-editorial-split { grid-template-columns: 1fr; gap: 60px; }
    .esp-img-col { padding: 0 20px; }
    .img-mask { height: 450px; }
    .floating-badge { left: 10px; bottom: -20px; padding: 15px 20px; }
    .badge-content strong { font-size: 1.4rem; }
    .grid-servicos, .testimonials-slider, .grid-experiencia { grid-template-columns: 1fr; gap: 30px; }
    .editorial-card { height: auto; }
    
    /* Adaptação Mobile do WhatsApp (Some o texto e vira bolinha) */
    .wpp-float-premium { padding: 5px; gap: 0; bottom: 20px; right: 20px; }
    .wpp-text { display: none; }
    .wpp-icon { width: 50px; height: 50px; }
}