/* ==========================================================================
   DRA. DANIELLY LOPES - ESTÉTICA AVANÇADA & SAÚDE DA PELE
   DESIGN SYSTEM: MONOCHROME & GOLD LUXURY (PRETO, BRANCO & DOURADO BRILHANTE)
   ========================================================================== */

:root {
    /* Paleta Base Preto & Grafite */
    --color-black-deep: #050507;
    --color-black-surface: #0E0E12;
    --color-black-card: rgba(18, 18, 24, 0.85);
    --color-black-card-hover: rgba(28, 28, 38, 0.95);

    /* Paleta Dourado de Alta Joalheria (Shining Gold) */
    --gold-pure: #D4AF37;
    --gold-light: #FFE8B6;
    --gold-mid: #DFB76C;
    --gold-champagne: #E5C384;
    --gold-dark: #9A7228;
    --gold-glow: rgba(212, 175, 55, 0.4);
    
    /* Gradientes Dourados */
    --grad-satin-gold: linear-gradient(135deg, #FFF3D6 0%, #DFB76C 35%, #C59B4B 70%, #9A7228 100%);
    --grad-gold-text: linear-gradient(135deg, #FFF6DD 0%, #E8C98B 35%, #C5A059 75%, #9E7933 100%);
    --grad-gold-border: linear-gradient(135deg, rgba(255, 235, 175, 0.8) 0%, rgba(212, 175, 55, 0.4) 50%, rgba(154, 114, 40, 0.8) 100%);
    
    /* Tons de Branco, Platina e Prata */
    --color-white-pure: #FFFFFF;
    --color-white-soft: #F4F4F6;
    --color-silver-light: #E4E4E7;
    --color-silver-mid: #A1A1AA;
    --color-silver-dark: #71717A;
    --color-silver-muted: #52525B;

    /* Bordas & Sombras */
    --border-glass: 1px solid rgba(255, 255, 255, 0.14);
    --border-glass-subtle: 1px solid rgba(255, 255, 255, 0.08);
    --border-gold-glow: 1px solid rgba(255, 232, 182, 0.7);
    --border-gold-subtle: 1px solid rgba(212, 175, 55, 0.35);

    --shadow-deep: 0 25px 60px rgba(0, 0, 0, 0.9);
    --shadow-gold-glow: 0 10px 30px rgba(212, 175, 55, 0.35), 0 0 20px rgba(253, 230, 176, 0.2);
    --shadow-gold-hover: 0 15px 40px rgba(212, 175, 55, 0.55), 0 0 30px rgba(255, 232, 182, 0.35);
    --shadow-glass: 0 15px 35px rgba(0, 0, 0, 0.6);
    --blur-glass: blur(20px);

    /* Tipografia */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transições Suaves */
    --transition-smooth: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES BASE (OTIMIZADOS PARA 60/120FPS)
   ========================================================================== */

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

html {
    scroll-behavior: initial;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
    text-rendering: optimizeLegibility;
}

body.silk-mono-theme {
    background-color: var(--color-black-deep);
    color: var(--color-silver-light);
    font-family: var(--font-sans);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    touch-action: manipulation;
}

ul {
    list-style: none;
}

.screen-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2;
}

.w-100 {
    width: 100%;
}

/* ==========================================================================
   CLASSES UTILITÁRIAS DE TEXTO EM DOURADO BRILHANTE
   ========================================================================== */

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

.text-gold-inline {
    color: var(--gold-champagne);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.text-gold-inline:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.text-gold-gradient {
    background: var(--grad-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    display: inline-block;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.25));
}

/* ==========================================================================
   BACKGROUND ETHEREAL SILK WAVES & STARDUST PARTICLES (HARDWARE ACCELERATED)
   ========================================================================== */

.silk-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    contain: strict;
    transform: translateZ(0);
    will-change: transform;
}

.silk-wave-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
    filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.05));
    transform: translateZ(0);
    will-change: transform;
    animation: silkWavePulse 18s ease-in-out infinite alternate;
}

@keyframes silkWavePulse {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.03) translateY(-15px); }
    100% { transform: scale(1) translateY(0); }
}

/* Ambient Glow Orbs com Hardware Acceleration */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform;
    contain: paint;
}

.glow-1 {
    top: 5%;
    right: 8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.glow-2 {
    top: 35%;
    left: 2%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.glow-3 {
    top: 65%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

.glow-4 {
    bottom: 2%;
    left: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

/* Scattered Stardust Particles */
.stardust-particle {
    position: absolute;
    color: var(--gold-champagne);
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform, opacity;
    animation: particleTwinkle 4s ease-in-out infinite alternate;
}

.stardust-particle svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.p-1 { top: 12%; left: 22%; animation-delay: 0s; width: 18px; height: 18px; }
.p-2 { top: 18%; right: 18%; animation-delay: 1.2s; width: 12px; height: 12px; }
.p-3 { top: 32%; left: 8%; animation-delay: 2.4s; width: 15px; height: 15px; }
.p-4 { top: 45%; right: 12%; animation-delay: 0.8s; width: 13px; height: 13px; }
.p-5 { top: 58%; left: 16%; animation-delay: 3s; width: 19px; height: 19px; }
.p-6 { top: 68%; right: 25%; animation-delay: 1.8s; width: 12px; height: 12px; }
.p-7 { top: 78%; left: 28%; animation-delay: 2.2s; width: 15px; height: 15px; }
.p-8 { top: 86%; right: 10%; animation-delay: 0.5s; width: 14px; height: 14px; }
.p-9 { top: 92%; left: 12%; animation-delay: 1.5s; width: 17px; height: 17px; }
.p-10 { top: 25%; left: 45%; animation-delay: 2.8s; width: 11px; height: 11px; }

@keyframes particleTwinkle {
    0% { opacity: 0.25; transform: scale(0.8) translateZ(0); }
    50% { opacity: 1; transform: scale(1.3) translateZ(0); }
    100% { opacity: 0.25; transform: scale(0.8) translateZ(0); }
}

/* ==========================================================================
   BRILHOS REFINADOS SPARKLES (DARK LUXURY & SHINE ANIMATIONS)
   ========================================================================== */

@keyframes sparkleShine {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
  }
}

@keyframes sparklePulse {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.15);
  }
}

.animate-sparkle {
  animation: sparkleShine 3s ease-in-out infinite;
}

.animate-pulse {
  animation: sparklePulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.sparkle {
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
}

/* Hero Sparkles Backdrop & Positioning Utilities */
.hero-sparkles-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Utility Classes for Sparkles */
.text-\[\#D4AF37\] { color: #D4AF37; }
.text-\[\#D4AF37\]\/60 { color: rgba(212, 175, 55, 0.6); }
.text-\[\#D4AF37\]\/50 { color: rgba(212, 175, 55, 0.5); }
.text-\[\#D4AF37\]\/40 { color: rgba(212, 175, 55, 0.4); }
.text-\[\#D4AF37\]\/70 { color: rgba(212, 175, 55, 0.7); }
.text-\[\#F3E5AB\] { color: #F3E5AB; }
.fill-current { fill: currentColor; }
.pointer-events-none { pointer-events: none; }
.inset-0 { inset: 0; }
.overflow-hidden { overflow: hidden; }
.z-0 { z-index: 0; }
.top-12 { top: 3rem; }
.left-10 { left: 2.5rem; }
.top-1\/3 { top: 33.333333%; }
.left-6 { left: 1.5rem; }
.top-20 { top: 5rem; }
.right-1\/4 { right: 25%; }
.top-1\/2 { top: 50%; }
.right-8 { right: 2rem; }
.bottom-1\/4 { bottom: 25%; }
.left-12 { left: 3rem; }
.w-3\.5 { width: 0.875rem; }
.h-3\.5 { height: 0.875rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.opacity-80 { opacity: 0.8; }
.drop-shadow-\[0_0_8px_rgba\(212\,175\,55\,0\.6\)\] {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}
.drop-shadow-\[0_0_6px_rgba\(212\,175\,55\,0\.4\)\] {
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

/* ==========================================================================
   1. SITE HEADER & NAVIGATION (Minimalist Ethereal)
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 7, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Brand Logo com Logo Oficial Dra. Danielly Lopes (Alta Visibilidade & Luxo) */
.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 78px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.55)) brightness(1.2) contrast(1.12);
    transition: var(--transition-smooth);
}

.brand-link:hover .brand-logo-img {
    transform: scale(1.06);
    filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.85)) brightness(1.3);
}

.drawer-logo-img {
    height: 60px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5)) brightness(1.2);
}

.about-signature-seal {
    margin-top: 18px;
    display: flex;
    align-items: center;
}

.about-signature-img {
    height: 105px;
    width: auto;
    max-width: 290px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.5)) brightness(1.2) contrast(1.1);
    opacity: 0.98;
    transition: var(--transition-smooth);
}

.about-signature-img:hover {
    transform: scale(1.05);
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8)) brightness(1.3);
}

.quote-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.quote-logo-img {
    height: 62px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.45)) brightness(1.18);
    opacity: 0.95;
}

.closing-brand-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.closing-logo-img {
    height: 135px;
    width: auto;
    max-width: 340px;
    object-fit: contain;
    filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.7)) brightness(1.25) contrast(1.15);
    transition: var(--transition-smooth);
}

.closing-logo-img:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 38px rgba(212, 175, 55, 0.95)) brightness(1.35);
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.5)) brightness(1.2) contrast(1.1);
    transition: var(--transition-smooth);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 26px rgba(212, 175, 55, 0.8)) brightness(1.3);
}

/* Nav Menu */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--color-silver-mid);
    letter-spacing: 0.5px;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

.nav-item:hover,
.nav-item.active {
    color: var(--gold-light);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--grad-satin-gold);
    transition: transform var(--transition-smooth);
}

.nav-item:hover::after,
.nav-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Header Right Action */
.header-right-action {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--gold-light);
    padding: 4px;
}

/* Mobile Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #0D0D11;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 200;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right var(--transition-smooth);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.9);
}

.mobile-menu-drawer.open {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 18px;
}

.drawer-brand {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold-light);
}

.drawer-close-btn {
    font-size: 1.4rem;
    color: var(--color-silver-mid);
}

.drawer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0;
}

.drawer-nav-link {
    font-size: 1.05rem;
    color: var(--color-silver-light);
    font-weight: 400;
}

.drawer-nav-link:hover {
    color: var(--gold-light);
}

.drawer-bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.drawer-insta-link {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gold-champagne);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   BOTÕES EM DOURADO BRILHANTE (SHINING GOLD PILL BUTTONS)
   ========================================================================== */

/* Botão Sólido Dourado Brilhante */
.pill-btn-solid {
    background: var(--grad-satin-gold);
    color: #0B0A06;
    padding: 14px 34px;
    border-radius: 9999px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-gold-glow);
    transition: var(--transition-smooth);
    border: var(--border-gold-glow);
    position: relative;
    overflow: hidden;
}

/* Reflexo de Brilho Dourado passando pelo botão */
.pill-btn-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-25deg);
    animation: goldShimmer 4s infinite;
}

@keyframes goldShimmer {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.pill-btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-hover);
    filter: brightness(1.1);
}

/* Botão Transparente com Borda Dourada Luminosa */
.pill-btn-outline {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-light);
    border: 1px solid rgba(229, 195, 132, 0.45);
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.pill-btn-outline:hover {
    background: var(--grad-satin-gold);
    color: #0B0A06;
    border-color: rgba(255, 235, 175, 0.9);
    box-shadow: var(--shadow-gold-glow);
    transform: translateY(-2px);
}

.wide-pill {
    padding: 16px 45px;
    font-size: 0.96rem;
}

.giant-pill {
    padding: 18px 48px;
    font-size: 1.05rem;
}

.pill-badge-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 9999px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pill-badge-tag.gold {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(255, 232, 182, 0.5);
    color: var(--gold-light);
}

/* ==========================================================================
   2. HERO SECTION (Composição de Luxo com Destaques Dourados)
   ========================================================================== */

.hero-screen {
    padding: 70px 0 90px 0;
    position: relative;
}

.hero-two-cols {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.hero-left-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Editorial Headline: Line 1 Serif Regular, Line 2 Flowing Gold Italic */
.hero-editorial-heading {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5.2vw, 4.6rem);
    line-height: 1.08;
    color: var(--color-white-pure);
    display: flex;
    flex-direction: column;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.heading-line-serif {
    font-weight: 400;
}

.heading-line-italic {
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-paragraph {
    font-size: 1.05rem;
    color: var(--color-silver-mid);
    line-height: 1.75;
    max-width: 480px;
    font-weight: 300;
}

.hero-cta-group {
    margin-top: 10px;
}

/* Right: Organic Fluid Masked Frame */
.hero-right-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.organic-frame-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1.18;
}

/* Fluid Translucent Aura Ring Behind with Gold Tone */
.organic-aura-layer {
    position: absolute;
    inset: -20px;
    border-radius: 56% 44% 64% 36% / 44% 52% 48% 56%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(255, 255, 255, 0.02) 60%, transparent 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(12px);
    z-index: 1;
    animation: organicFloat1 8s ease-in-out infinite alternate;
}

.aura-secondary {
    inset: -38px;
    border-radius: 46% 54% 38% 62% / 58% 44% 56% 42%;
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.12);
    z-index: 0;
    display: block;
    animation: organicFloat2 10s ease-in-out infinite alternate;
}

@keyframes organicFloat1 {
    0% { border-radius: 56% 44% 64% 36% / 44% 52% 48% 56%; transform: rotate(0deg); }
    100% { border-radius: 46% 54% 42% 58% / 54% 44% 56% 46%; transform: rotate(3deg); }
}

@keyframes organicFloat2 {
    0% { border-radius: 46% 54% 38% 62% / 58% 44% 56% 42%; transform: rotate(0deg); }
    100% { border-radius: 54% 46% 62% 38% / 44% 56% 44% 56%; transform: rotate(-3deg); }
}

/* Organic Blob Image Wrapper */
.organic-blob-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 52% 48% 60% 40% / 46% 50% 50% 54%;
    overflow: hidden;
    border: 1.5px solid rgba(255, 232, 182, 0.45);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), inset 0 0 30px rgba(212, 175, 55, 0.12);
    background: #111116;
}

.organic-fluid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-slow);
}

.organic-blob-wrapper:hover .organic-fluid-img {
    transform: scale(1.04);
}

.organic-sheen-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 235, 175, 0.12) 0%, transparent 45%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.stardust-badge-top {
    position: absolute;
    top: -12px;
    right: 15px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.9));
}

.stardust-badge-top svg {
    width: 100%;
    height: 100%;
}

.stardust-badge-bottom {
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.9));
}

.stardust-badge-bottom svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   3. SEÇÃO SOBRE (Layout Invertido com Moldura Orgânica)
   ========================================================================== */

.about-screen {
    padding: 90px 0 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-center-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-editorial-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 400;
    color: var(--color-white-pure);
    letter-spacing: 0.5px;
}

.section-sub-desc {
    font-size: 0.98rem;
    color: var(--color-silver-mid);
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-two-cols {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 65px;
    align-items: center;
}

.about-right-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-subheading {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--color-white-pure);
    line-height: 1.3;
}

.about-description {
    font-size: 1.02rem;
    color: var(--color-silver-light);
    line-height: 1.8;
    font-weight: 300;
}

.portrait-focus {
    object-position: center 10%;
}

.about-pillars-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 4px 0;
}

.about-pillar-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.25);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-silver-light);
    transition: var(--transition-smooth);
}

.about-pillar-tag:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
}

.about-btn-wrap {
    margin-top: 12px;
}

/* ==========================================================================
   3.2 CIÊNCIA, PESQUISA & RIGOR LABORATORIAL (Livre e Sem Balão Azul)
   ========================================================================== */

.science-screen {
    padding: 90px 0 100px 0;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.science-glass-card {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: relative;
}

.science-glass-card::before {
    display: none;
}

.science-two-cols {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Visual Column */
.science-visual-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.science-photo-card {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.science-photo-holder {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.9);
    background: #0E0E14;
    aspect-ratio: 4 / 4.6;
}

.science-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform var(--transition-slow);
}

.science-photo-card:hover .science-photo-img {
    transform: scale(1.04);
}

.science-glow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(10, 10, 14, 0.8) 100%);
    pointer-events: none;
}

.science-floating-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    right: 20px;
    background: rgba(14, 14, 18, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
}

/* Text Column */
.science-text-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.science-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.3rem, 3.8vw, 3.2rem);
    line-height: 1.15;
    color: var(--color-white-pure);
    display: flex;
    flex-direction: column;
}

.science-lead-desc {
    font-size: 1.02rem;
    color: var(--color-silver-light);
    line-height: 1.75;
    font-weight: 300;
}

.science-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 4px 0;
}

.science-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.science-pillar-item:hover {
    background: rgba(212, 175, 55, 0.09);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.science-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.science-item-data h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-white-pure);
    margin-bottom: 2px;
    line-height: 1.25;
}

.science-item-data p {
    font-size: 0.74rem;
    color: var(--color-silver-mid);
    line-height: 1.35;
}

.science-quote-banner {
    padding: 16px 20px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 2.5px solid var(--gold-mid);
    border-radius: 0 16px 16px 0;
}

.science-quote-banner .quote-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-white-pure);
    line-height: 1.45;
    margin-bottom: 4px;
}

.science-quote-banner .quote-author {
    font-size: 0.76rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.science-action-wrap {
    margin-top: 6px;
}

/* ==========================================================================
   4. PROCEDIMENTOS EM DESTAQUE (3 Cards Dourados e Limpos)
   ========================================================================== */

.procedures-screen {
    padding: 90px 0 100px 0;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

.glass-feature-card {
    background: #0E0E14;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
    opacity: 0.6;
    transition: opacity var(--transition-smooth);
}

.glass-feature-card:hover {
    transform: translateY(-6px);
    background: #13131A;
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.9), 0 0 25px rgba(212, 175, 55, 0.15);
}

.glass-feature-card:hover::before {
    opacity: 1;
}

.card-top-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 18px;
}

.card-icon-flower.gold {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-champagne);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.card-svg-icon {
    width: 28px;
    height: 28px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white-pure);
    line-height: 1.2;
}

.card-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #E4E4E7;
    line-height: 1.55;
}

.card-bullet-list li i {
    color: var(--gold-champagne);
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.center-pill-action {
    text-align: center;
    position: relative;
    z-index: 5;
}

/* ==========================================================================
   4.1 ESPECIALIDADE: TOXINA BOTULÍNICA (Livre e Sem Balão Azul)
   ========================================================================== */

.botox-screen {
    padding: 90px 0 100px 0;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.botox-glass-card {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: relative;
}

.botox-watermark-text {
    display: none;
}

.botox-glass-card::before {
    display: none;
}

.botox-two-cols {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.botox-text-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.botox-tags-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.botox-insta-badge {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 9999px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    margin-bottom: 16px;
}

.botox-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.2vw, 3.5rem);
    line-height: 1.12;
    color: var(--color-white-pure);
    display: flex;
    flex-direction: column;
    letter-spacing: -0.5px;
}

.botox-lead-description {
    font-size: 1.02rem;
    color: var(--color-silver-light);
    line-height: 1.75;
    font-weight: 300;
    max-width: 580px;
}

.botox-lead-description strong {
    color: var(--gold-champagne);
    font-weight: 600;
}

.botox-applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 4px 0;
}

.botox-app-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.botox-app-card:hover {
    background: rgba(212, 175, 55, 0.09);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.botox-icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.botox-app-text h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-white-pure);
    margin-bottom: 2px;
    line-height: 1.25;
}

.botox-app-text p {
    font-size: 0.74rem;
    color: var(--color-silver-mid);
    line-height: 1.35;
}

.botox-highlight-quote {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 2.5px solid var(--gold-mid);
    border-radius: 0 16px 16px 0;
}

.quote-star-icon {
    font-size: 1.4rem;
    color: var(--gold-light);
    flex-shrink: 0;
}

.quote-p {
    font-size: 0.92rem;
    color: var(--color-silver-light);
    line-height: 1.5;
}

.botox-action-row {
    margin-top: 6px;
}

/* Right: Photo Frame */
.botox-visual-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.botox-photo-card {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.botox-photo-holder {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.9);
    background: #0E0E14;
    aspect-ratio: 1 / 1;
}

.botox-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.botox-photo-card:hover .botox-feature-img {
    transform: scale(1.04);
}

.botox-glow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(10, 10, 14, 0.8) 100%);
    pointer-events: none;
}

.botox-floating-seal {
    position: absolute;
    bottom: -15px;
    left: 20px;
    right: 20px;
    background: rgba(14, 14, 18, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
}

.botox-seal-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

.botox-seal-text {
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   5. CONHEÇA O MÉTODO DL - ANÁLISE FACIAL INTEGRADA E PERSONALIZADA
   ========================================================================== */

.metodo-screen {
    padding: 90px 0 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metodo-flex-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.metodo-text-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metodo-formula-header {
    display: inline-block;
}

.formula-text {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 9999px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.metodo-main-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metodo-kicker {
    font-size: 0.92rem;
    letter-spacing: 4px;
    color: var(--color-silver-mid);
    font-weight: 600;
    text-transform: uppercase;
}

.metodo-big-heading {
    display: flex;
    flex-direction: column;
    line-height: 0.95;
}

.metodo-big-heading .text-gold-gradient {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    font-weight: 600;
    letter-spacing: -0.5px;
    font-style: normal;
}

.metodo-sub-title {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white-pure);
    text-transform: uppercase;
    margin-top: 10px;
    line-height: 1.3;
}

.metodo-lead-text {
    font-size: 1.02rem;
    color: var(--color-silver-light);
    line-height: 1.7;
    font-weight: 300;
    max-width: 580px;
}

.six-pillars-glass-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 6px 0;
}

.pillar-mini-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-smooth);
}

.pillar-mini-card:hover {
    background: rgba(212, 175, 55, 0.09);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.pillar-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.pillar-data h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-white-pure);
    margin-bottom: 2px;
    line-height: 1.25;
}

.pillar-data p {
    font-size: 0.74rem;
    color: var(--color-silver-mid);
    line-height: 1.35;
}

.quote-signature-box {
    margin-top: 10px;
    padding: 18px 22px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 2.5px solid var(--gold-mid);
    border-radius: 0 16px 16px 0;
}

.quote-italic {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-white-pure);
    line-height: 1.4;
    margin-bottom: 8px;
}

.quote-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
}

.quote-name {
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.quote-logo-img {
    height: 56px;
    max-width: 170px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.45));
    display: block;
}

/* Method DL Cover Visual Frame */
.metodo-visual-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.metodo-photo-card {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.metodo-photo-holder {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.15);
    background: #0E0E14;
}

.metodo-cover-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.metodo-photo-card:hover .metodo-cover-img {
    transform: scale(1.03);
}

.metodo-glow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(10, 10, 14, 0.85) 100%);
    pointer-events: none;
}

.metodo-cover-badge {
    position: absolute;
    bottom: -18px;
    left: 15px;
    right: 15px;
    background: rgba(12, 12, 16, 0.96);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    border-radius: 20px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85), 0 0 25px rgba(212, 175, 55, 0.25);
}

.metodo-badge-logo {
    height: 52px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.7));
}

.metodo-badge-texts {
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   MÉTODO DL: CARDS DETALHADOS DOS 6 PILARES, GRANDE DIFERENCIAL & POSICIONAMENTO
   ========================================================================== */

.metodo-pillars-full-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metodo-section-center-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.metodo-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card-detailed {
    background: #0E0E14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.pillar-card-detailed:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: #12121A;
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 25px rgba(212, 175, 55, 0.1);
}

.pillar-top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.pillar-num-badge {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.pillar-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--gold-light);
}

.pillar-title {
    font-family: var(--font-serif);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--color-white-pure);
    line-height: 1.3;
}

.pillar-desc {
    font-size: 0.86rem;
    color: var(--color-silver-mid);
    line-height: 1.65;
    font-weight: 300;
    flex-grow: 1;
}

.pillar-highlight-tag {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.06);
    border-left: 2px solid var(--gold-mid);
    font-size: 0.76rem;
    color: var(--color-silver-light);
    line-height: 1.45;
    font-style: italic;
}

/* Grande Diferencial */
.metodo-diferencial-wrap {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metodo-diferencial-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.diferencial-text-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.diferencial-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    line-height: 1.15;
    color: var(--color-white-pure);
}

.diferencial-matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px;
    background: #0E0E14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    margin: 8px 0;
}

.matrix-cell-item {
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-align: center;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-white-pure);
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.matrix-cell-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.matrix-cell-item.gold {
    color: var(--gold-light);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.06);
}

.diferencial-desc {
    font-size: 0.98rem;
    color: var(--color-silver-light);
    line-height: 1.75;
    font-weight: 300;
}

.diferencial-desc strong {
    color: var(--gold-light);
    font-weight: 600;
}

.perguntas-stack-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pergunta-clinica-card {
    padding: 22px 24px;
    background: #0E0E14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pergunta-clinica-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    background: #13131B;
    transform: translateX(4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.1);
}

.pergunta-badge-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    margin-bottom: 6px;
    display: block;
}

.pergunta-quote-title {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.32rem);
    font-style: italic;
    color: var(--color-white-pure);
    line-height: 1.4;
}

/* Posicionamento Premium Box */
.metodo-posicionamento-box {
    margin-top: 60px;
    padding: 60px 44px;
    background: #0E0E14;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.12);
}

.posicionamento-inner {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.posicionamento-main-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    color: var(--color-white-pure);
    line-height: 1.2;
}

.posicionamento-lead-p {
    font-size: 1.02rem;
    color: var(--color-silver-light);
    line-height: 1.75;
    font-weight: 300;
    max-width: 760px;
}

.posicionamento-lead-p strong {
    color: var(--color-white-pure);
}

.posicionamento-lead-p em {
    color: var(--gold-light);
    font-style: italic;
}

.posicionamento-quote-highlight {
    padding: 24px 32px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 20px;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.posicionamento-quote-highlight p {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 600;
    color: var(--color-white-pure);
    letter-spacing: 0.5px;
    line-height: 1.35;
}

.definicao-oficial-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    color: var(--color-silver-mid);
    line-height: 1.7;
    text-align: center;
    max-width: 740px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.definicao-oficial-footer strong {
    color: var(--color-white-pure);
}

.definicao-oficial-footer em {
    color: var(--gold-light);
    font-style: normal;
    font-weight: 600;
}

.posicionamento-btn-wrap {
    margin-top: 6px;
}

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

@media (max-width: 900px) {
    .metodo-diferencial-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .metodo-pillars-grid {
        grid-template-columns: 1fr;
    }
    .diferencial-matrix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .metodo-posicionamento-box {
        padding: 36px 20px;
        border-radius: 24px;
    }
    .posicionamento-quote-highlight {
        padding: 16px 18px;
    }
}



.badge-icon-gold {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grad-satin-gold);
    color: #0B0A06;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.badge-text-box {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--color-white-pure);
}

.badge-sub {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   6. RESULTADOS REAIS & TRANSFORMAÇÕES (Limpo & Dourado)
   ========================================================================== */

.results-screen {
    padding: 90px 0 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.result-showcase-glass {
    max-width: 960px;
    margin: 0 auto;
    background: #0E0E14;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

.result-img-box {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.result-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.result-verified-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(10, 10, 14, 0.94);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-white-pure);
    text-align: center;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.result-details-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-headline {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-white-pure);
    line-height: 1.25;
}

.result-text {
    font-size: 0.92rem;
    color: var(--color-silver-light);
    line-height: 1.65;
}

.result-check-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 6px 0 10px 0;
}

.result-check-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-silver-light);
}

/* ==========================================================================
   7. PERGUNTAS FREQUENTES (FAQ Accordion Limpo & Responsivo)
   ========================================================================== */

.faq-screen {
    padding: 90px 0 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-accordion-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-glass-item {
    background: #0E0E14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-glass-item:hover,
.faq-glass-item.active {
    border-color: rgba(212, 175, 55, 0.4);
    background: #121218;
}

.faq-toggle-btn {
    width: 100%;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-silver-light);
    transition: color var(--transition-smooth);
}

.faq-toggle-btn i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-glass-item.active .faq-toggle-btn {
    color: var(--gold-light);
}

.faq-body-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 26px;
}

.faq-glass-item.active .faq-body-content {
    max-height: 250px;
    padding: 0 26px 22px 26px;
}

.faq-body-content p {
    font-size: 0.92rem;
    color: var(--color-silver-mid);
    line-height: 1.7;
}

/* ==========================================================================
   8. SEÇÃO DE FECHAMENTO & CTA (Card de Alta Conversão Dourado)
   ========================================================================== */

.closing-screen {
    padding: 90px 0 110px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.closing-glass-card {
    background: #0E0E14;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 32px;
    padding: 60px 36px;
    text-align: center;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.9), 0 0 25px rgba(212, 175, 55, 0.08);
}

.closing-center-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.closing-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--color-white-pure);
}

.italic-serif {
    font-style: italic;
    display: block;
}

.closing-lead-p {
    font-size: 1.05rem;
    color: var(--color-silver-mid);
    line-height: 1.75;
    max-width: 580px;
}

.closing-cta-action {
    margin-top: 10px;
}

.closing-footer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    font-size: 0.88rem;
    color: var(--color-silver-dark);
}

/* ==========================================================================
   9. FOOTER MONOCHROME & GOLD LUXURY (Localização & Créditos)
   ========================================================================== */

.mono-footer {
    background: #060608;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 75px 0 35px 0;
    position: relative;
    z-index: 2;
}

.footer-grid-3cols {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white-pure);
    letter-spacing: 0.5px;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--color-silver-mid);
    line-height: 1.65;
}

.footer-brand-desc strong {
    color: var(--color-white-pure);
}

.footer-insta-wrap {
    margin-top: 4px;
}

.footer-insta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--gold-light);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-insta-link:hover {
    color: var(--color-white-pure);
    transform: translateX(3px);
}

.footer-col-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white-pure);
}

.location-details-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.88rem;
    color: var(--color-silver-mid);
    line-height: 1.5;
}

.location-name {
    font-weight: 600;
}

.location-cep {
    font-size: 0.76rem;
    color: var(--color-silver-dark);
}

.location-map-link-wrap {
    margin-top: 6px;
}

.footer-maps-link {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-light);
    transition: var(--transition-smooth);
}

.footer-maps-link:hover {
    color: var(--gold-champagne);
    text-decoration: underline;
    transform: translateX(3px);
}

.footer-appointment-desc {
    font-size: 0.88rem;
    color: var(--color-silver-mid);
    line-height: 1.55;
}

.footer-contact-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-white-pure);
}

.footer-action-btn {
    padding: 12px 24px;
    font-size: 0.82rem;
    display: inline-flex;
}

.footer-bottom-bar {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--color-silver-dark);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-rights {
    color: var(--color-silver-dark);
}

.footer-developer-credit {
    color: var(--color-silver-mid);
}

.dev-name {
    color: var(--color-white-pure);
    font-weight: 600;
}

.cwd-brand {
    color: var(--gold-light);
    font-weight: 600;
}

/* ==========================================================================
   COOKIE BANNER & PRIVACY MODAL (LGPD COMPLIANCE)
   ========================================================================== */

.cookie-banner-glass {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 450px;
    width: calc(100% - 48px);
    background: #0E0E14;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
    z-index: 990;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s;
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-glass.cookie-hidden {
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.cookie-content-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cookie-icon {
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-text-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-white-pure);
    letter-spacing: 0.3px;
}

.cookie-desc {
    font-size: 0.76rem;
    color: var(--color-silver-light);
    line-height: 1.5;
}

.cookie-modal-trigger {
    background: none;
    border: none;
    padding: 0;
    font-size: inherit;
    color: var(--gold-light);
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.cookie-modal-trigger:hover {
    color: var(--gold-champagne);
}

.cookie-actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.cookie-btn-accept {
    padding: 9px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    flex: 1;
    justify-content: center;
    border-radius: 10px;
}

.cookie-btn-close {
    background: none;
    border: none;
    color: var(--color-silver-mid);
    font-size: 0.78rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.cookie-btn-close:hover {
    color: var(--color-white-pure);
    background: rgba(255, 255, 255, 0.05);
}

/* Privacy Modal */
.privacy-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.privacy-modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.privacy-modal-card {
    background: #0E0E14;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    max-width: 620px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95);
    overflow: hidden;
    animation: modalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.privacy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: #090D15;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-modal-header .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.privacy-modal-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white-pure);
}

.privacy-modal-close {
    background: none;
    border: none;
    color: var(--color-silver-mid);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.privacy-modal-close:hover {
    color: var(--color-white-pure);
    background: rgba(255, 255, 255, 0.08);
}

.privacy-modal-body {
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.term-block .term-heading {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.term-block p {
    font-size: 0.78rem;
    color: var(--color-silver-light);
    line-height: 1.6;
}

.term-block p strong {
    color: var(--color-white-pure);
}

.privacy-modal-footer {
    padding: 14px 24px;
    background: #090D15;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: flex-end;
}

.modal-confirm-btn {
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 10px;
}

/* ==========================================================================
   FLOATING WHATSAPP PILL BUTTON (SHINING GOLD)
   ========================================================================== */

.floating-whatsapp-pill {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--grad-satin-gold);
    color: #0B0A06;
    padding: 13px 26px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.45);
    z-index: 999;
    border: 1px solid rgba(255, 235, 175, 0.9);
    transition: var(--transition-smooth);
}

.floating-whatsapp-pill:hover {
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.65);
    filter: brightness(1.1);
}

.floating-whatsapp-pill i {
    font-size: 1.3rem;
    color: #0B0A06;
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .glass-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .science-two-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .botox-two-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .metodo-flex-layout {
        grid-template-columns: 1fr;
    }
    .analise-global-two-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .angulos-two-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .result-showcase-glass {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }
    .pill-btn-outline {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .hero-two-cols {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-left-text {
        align-items: center;
    }
    .hero-paragraph {
        margin: 0 auto;
    }
    .about-two-cols {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .about-right-text {
        align-items: center;
    }
    .footer-grid-3cols {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .brand-logo-img {
        height: 60px;
        max-width: 180px;
    }
    .about-signature-img {
        height: 80px;
    }
    .closing-logo-img {
        height: 95px;
    }
    .footer-logo-img {
        height: 75px;
    }
    .hero-editorial-heading {
        font-size: 2.5rem;
    }
    .science-pillars-grid {
        grid-template-columns: 1fr;
    }
    .science-floating-badge {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 14px;
        width: 100%;
    }
    .botox-applications-grid {
        grid-template-columns: 1fr;
    }
    .botox-floating-seal {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 14px;
        width: 100%;
    }
    .metodo-cover-badge {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 14px;
        width: 100%;
    }
    .metodo-badge-logo {
        height: 44px;
    }
    .quote-logo-img {
        height: 46px;
    }
    .six-pillars-glass-grid {
        grid-template-columns: 1fr;
    }
    .closing-glass-card {
        padding: 40px 20px;
    }
    .pill-btn-solid {
        width: 100%;
    }
    .wide-pill {
        width: 100%;
    }
    .giant-pill {
        width: 100%;
    }
    .cookie-banner-glass {
        left: 12px;
        right: 12px;
        bottom: 86px;
        width: calc(100% - 24px);
        padding: 16px;
    }
}

/* ==========================================================================
   SEÇÕES: MÉTODO DL, ÂNGULOS, AVALIAÇÃO & SOBRE (LUXURY DARK & FREE FLOW)
   (#analise-global, #estudo-angulos, #avaliacao-personalizada, #sobre-especialista)
   ========================================================================== */

#analise-global,
#estudo-angulos,
#avaliacao-personalizada,
#sobre-especialista {
    width: 100%;
    position: relative;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 100px 0 110px 0;
    box-sizing: border-box;
}

/* Grids das 4 Seções em Fluxo Livre */
#analise-global .grid.lg\:grid-cols-12,
#estudo-angulos .grid.lg\:grid-cols-12,
#avaliacao-personalizada .grid.lg\:grid-cols-12,
#sobre-especialista .grid.lg\:grid-cols-12 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

@media (min-width: 992px) {
    #analise-global .grid.lg\:grid-cols-12,
    #avaliacao-personalizada .grid.lg\:grid-cols-12 {
        grid-template-columns: 1.18fr 0.82fr;
        gap: 50px;
    }
    #estudo-angulos .grid.lg\:grid-cols-12,
    #sobre-especialista .grid.lg\:grid-cols-12 {
        grid-template-columns: 0.82fr 1.18fr;
        gap: 50px;
    }
}

/* Molduras de Fotos com Borda Ouro e Sem Balão Azul */
#analise-global .lg\:col-span-5 > div,
#estudo-angulos .lg\:col-span-5 > div,
#avaliacao-personalizada .lg\:col-span-5 > div,
#sobre-especialista .lg\:col-span-5 > div {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 25px rgba(212, 175, 55, 0.1);
    background: #0E0E14;
    transition: transform var(--transition-slow), border-color var(--transition-smooth);
}

#analise-global .lg\:col-span-5 > div:hover,
#estudo-angulos .lg\:col-span-5 > div:hover,
#avaliacao-personalizada .lg\:col-span-5 > div:hover,
#sobre-especialista .lg\:col-span-5 > div:hover {
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-4px);
}

#analise-global .lg\:col-span-5 img,
#estudo-angulos .lg\:col-span-5 img,
#avaliacao-personalizada .lg\:col-span-5 img,
#sobre-especialista .lg\:col-span-5 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

#analise-global .lg\:col-span-5 > div:hover img,
#estudo-angulos .lg\:col-span-5 > div:hover img,
#avaliacao-personalizada .lg\:col-span-5 > div:hover img,
#sobre-especialista .lg\:col-span-5 > div:hover img {
    transform: scale(1.03);
}

/* Tipografia das Seções */
#analise-global h2,
#estudo-angulos h2,
#avaliacao-personalizada h2,
#sobre-especialista h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.16;
    letter-spacing: -0.5px;
    margin: 0;
}

#analise-global p.text-slate-300,
#estudo-angulos p.text-slate-300,
#avaliacao-personalizada p.text-slate-300,
#sobre-especialista p.text-slate-300 {
    font-size: 1rem;
    color: var(--color-silver-light);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

#analise-global p.text-slate-300 strong,
#estudo-angulos p.text-slate-300 strong,
#avaliacao-personalizada p.text-slate-300 strong,
#sobre-especialista p.text-slate-300 strong {
    color: var(--gold-champagne);
    font-weight: 600;
}

#sobre-especialista p.text-slate-400 {
    font-size: 0.88rem;
    color: var(--color-silver-mid);
    line-height: 1.65;
    margin: 0;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    #analise-global,
    #estudo-angulos,
    #avaliacao-personalizada,
    #sobre-especialista {
        padding: 60px 0;
    }

    #analise-global .lg\:col-span-7,
    #estudo-angulos .lg\:col-span-7,
    #avaliacao-personalizada .lg\:col-span-7,
    #sobre-especialista .lg\:col-span-7 {
        text-align: left;
    }
}

/* ==========================================================================
   OTIMIZAÇÃO DE PERFORMANCE GLOBAL & HARDWARE ACCELERATION (60/120 FPS)
   ========================================================================== */

/* Aceleração por GPU em Cards e Imagens */
.glass-feature-card,
.pillar-mini-card,
.botox-photo-card,
.metodo-photo-card,
.result-showcase-glass,
.closing-glass-card,
.organic-frame-container {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

/* Redução de Motion para Acessibilidade & Bateria */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .silk-wave-svg,
    .stardust-particle,
    .animate-pulse,
    .animate-sparkle {
        animation: none !important;
    }
}

/* ==========================================================================
   SEÇÃO: DEPOIMENTOS EM ESTILO WHATSAPP LUXURY UI
   ========================================================================== */

.depoimentos-screen {
    width: 100%;
    position: relative;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 100px 0 110px 0;
    box-sizing: border-box;
}

.depoimentos-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.depoimentos-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 700;
    color: var(--color-white-pure);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.depoimentos-subtitle {
    font-size: 0.94rem;
    color: var(--color-silver-mid);
    line-height: 1.6;
    font-weight: 300;
}

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

/* WhatsApp Phone Card Simulation */
.wa-chat-card {
    background: #0B141A;
    border: 1.5px solid rgba(212, 175, 55, 0.32);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    position: relative;
}

.wa-chat-card:hover {
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 28px rgba(212, 175, 55, 0.18);
}

/* WhatsApp Top Bar */
.wa-chat-topbar {
    background: #1F2C34;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wa-user-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #128C7E, #075E54);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white-pure);
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.wa-online-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #25D366;
    border: 2px solid #1F2C34;
    border-radius: 50%;
    box-shadow: 0 0 8px #25D366;
}

.wa-user-details {
    display: flex;
    flex-direction: column;
}

.wa-user-name {
    font-size: 0.96rem;
    font-weight: 600;
    color: #E9EDEF;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.25;
}

.wa-verified-check {
    color: #00A884;
    font-size: 0.85rem;
}

.wa-user-status {
    font-size: 0.74rem;
    color: #8696A0;
    line-height: 1.3;
}

.wa-topbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #AEBAC1;
    font-size: 1.05rem;
}

.wa-action-icon {
    cursor: pointer;
    transition: color 0.2s ease;
}

.wa-action-icon:hover {
    color: var(--gold-light);
}

/* WhatsApp Chat Canvas */
.wa-chat-canvas {
    background-color: #0B141A;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 16px 16px;
    padding: 22px 18px 26px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.wa-security-pill {
    align-self: center;
    background: rgba(24, 34, 41, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 0.68rem;
    color: #FFE285;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 6px;
}

/* Incoming Message Bubble */
.wa-incoming-bubble {
    align-self: flex-start;
    background: #202C33;
    border-radius: 0 16px 16px 16px;
    padding: 12px 16px 10px 16px;
    position: relative;
    max-width: 94%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.wa-incoming-bubble::before {
    content: "";
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-right: 8px solid #202C33;
    border-bottom: 10px solid transparent;
}

.wa-message-text {
    font-size: 0.92rem;
    color: #E9EDEF;
    line-height: 1.55;
    font-weight: 400;
}

.wa-message-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 6px;
}

.wa-timestamp {
    font-size: 0.68rem;
    color: #8696A0;
}

.wa-double-check {
    color: #53BDEB;
    font-size: 0.72rem;
}

.wa-reaction-badge {
    position: absolute;
    bottom: -10px;
    left: 12px;
    background: #1F2C34;
    border: 1.5px solid #0B141A;
    border-radius: 12px;
    padding: 1px 7px;
    font-size: 0.74rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 3px;
    color: #E9EDEF;
}

/* Card Bottom Info Bar */
.wa-card-footer {
    background: #111B21;
    padding: 12px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.wa-procedure-tag {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3px 10px;
    border-radius: 9999px;
}

.wa-stars-rate {
    display: flex;
    gap: 3px;
    color: var(--gold-light);
    font-size: 0.78rem;
}

.depoimentos-cta-wrap {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

@media (max-width: 860px) {
    .depoimentos-screen {
        padding: 60px 0 70px 0;
    }
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    .wa-chat-card {
        border-radius: 20px;
    }
}



