/* ================================================================
   BLEFAROPLASTIA DV – Premium Dark Landing Page
   ================================================================ */

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

:root {
    --bg-dark: #060608;
    --bg-surface: #0c0c10;
    --bg-card: rgba(18, 18, 24, 0.85);
    --bg-elevated: rgba(25, 25, 35, 0.6);

    --gold-600: #a88720;
    --gold-500: #c5a028;
    --gold-400: #e2c275;
    --gold-300: #f3e5ab;
    --gold-200: #faf0d0;
    --gold-glow: rgba(197, 160, 40, 0.22);

    --text-main: #f4f4f5;
    --text-muted: #8e8e96;
    --text-soft: #b8b8c0;

    --green-500: #25d366;
    --green-600: #128c7e;
    --green-glow: rgba(37, 211, 102, 0.35);

    --gradient-gold: linear-gradient(135deg, #f5dfa0 0%, #c5a028 40%, #a88720 70%, #e2c275 100%);
    --gradient-gold-subtle: linear-gradient(135deg, rgba(197,160,40,0.15) 0%, rgba(226,194,117,0.05) 100%);
    --gradient-green: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a10 100%);
    --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --gradient-mesh: radial-gradient(ellipse at 20% 50%, rgba(197,160,40,0.06) 0%, transparent 50%),
                     radial-gradient(ellipse at 80% 20%, rgba(168,135,32,0.04) 0%, transparent 50%),
                     radial-gradient(ellipse at 50% 80%, rgba(243,229,171,0.03) 0%, transparent 50%);

    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 4px 30px rgba(197, 160, 40, 0.25);
    --shadow-card: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.04);
    --shadow-premium: 0 40px 100px rgba(0,0,0,0.7), 0 0 60px rgba(197,160,40,0.06);
    
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-round: 50%;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 120px;
    --space-2xl: 180px;

    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.45s;
}

h1, h2, h3, h4, h5, h6 {
    hyphens: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise texture overlay for premium depth */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

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

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

.container {
    width: 100%;
    max-width: 1100px; /* Mais estreito = conteúdo mais centrado e premium */
    margin: 0 auto;
    padding: 0 40px; /* Padding lateral generoso */
}

/* ==================== UTILITIES ==================== */
.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(197, 160, 40, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, rgba(197,160,40,0.3) 50%, transparent 70%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s var(--ease);
    pointer-events: none;
}

.glass-card:hover::before {
    opacity: 1;
    animation: shimmer-border 2s linear infinite;
}

.glass-card:hover {
    border-color: rgba(197, 160, 40, 0.2);
    box-shadow: var(--shadow-premium);
    transform: translateY(-4px);
}

@keyframes shimmer-border {
    0% { background-position: 100% 0%; }
    100% { background-position: -100% 0%; }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px; /* Mais espaçamento nas letras = mais luxo */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    padding: 16px 36px; /* Mais padding para botões mais imponentes */
    white-space: nowrap;
}

.btn--lg {
    padding: 20px 48px;
    font-size: 1.05rem;
}

.btn--primary {
    background: var(--gradient-gold) !important;
    color: #111 !important;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    animation: shimmer 4s infinite linear;
    background-size: 200% auto;
}

.btn--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(197, 160, 40, 0.45);
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.btn--outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-300);
    transform: translateY(-3px);
}

.btn--whatsapp {
    background-color: #25d366 !important; /* Fallback sólido */
    background: var(--gradient-green) !important;
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.3);
    animation: pulse-green 3s infinite;
    -webkit-appearance: none;
    appearance: none;
}

.btn--whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45);
    color: #fff !important;
    background-color: #128c7e !important;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==================== HEADER ==================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 36px 0; /* Mais espaço para o header respirar */
    transition: all var(--duration) var(--ease);
    background: transparent;
    /* Linha dourada muito sutil na parte inferior do header */
    border-bottom: 1px solid rgba(197, 160, 40, 0.04);
}

/* Scrolled states removed as per user request (non-sticky) */

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    height: 90px;
    padding: 8px 0;
    flex-shrink: 0;
}

.logo__img {
    height: 100%;
    width: auto;
    max-width: 420px;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
    transition: filter 0.4s var(--ease), transform 0.4s var(--ease);
}

.logo:hover .logo__img {
    transform: scale(1.04);
    filter: drop-shadow(0 6px 20px rgba(197,160,40,0.4)) drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}


.header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    position: relative;
}

.header__link:hover {
    color: var(--gold-400);
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold-400);
    transition: width var(--duration) var(--ease);
}

.header__link:hover::after {
    width: 100%;
}

.header__link--mobile-cta {
    background: var(--gradient-green);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.header__link--mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: #fff;
}

.header__link--mobile-cta::after {
    display: none;
}

/* Mobile Hamburger Menu */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold-400);
    transition: all var(--duration) var(--ease);
    transform-origin: center left;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    background: var(--gradient-mesh), radial-gradient(circle at 75% 50%, rgba(197, 160, 40, 0.05) 0%, var(--bg-dark) 60%);
    overflow: hidden;
}

/* Animated mesh glow */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(197,160,40,0.04) 0%, transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(168,135,32,0.03) 0%, transparent 40%);
    animation: mesh-drift 20s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes mesh-drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(2%, -2%) rotate(1deg); }
    100% { transform: translate(-1%, 1%) rotate(-1deg); }
}

/* Canvas for particles */
#hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero__content {
    max-width: 650px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(197, 160, 40, 0.08);
    border: 1px solid rgba(197, 160, 40, 0.18);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--gold-400);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
    animation: fadeInDown 0.8s ease backwards;
    font-weight: 500;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.2vw, 3.8rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease backwards 0.2s;
}

.hero__text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.85;
    max-width: 560px;
    animation: fadeInUp 0.8s ease backwards 0.4s;
}

.hero__text strong {
    color: var(--text-main);
    font-weight: 500;
}

.hero__cta {
    margin-top: 40px;
    animation: fadeInUp 0.8s ease backwards 0.6s;
}

.hero__image {
    position: relative;
    animation: fadeInRight 1s ease backwards 0.4s;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-card);
    padding: 10px;
}

.hero__img {
    width: 100%;
    max-width: 450px; /* Evita que a imagem domine demais no desktop */
    margin: 0 auto;
    border-radius: calc(var(--radius-lg) - 8px);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.hero__image-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: var(--gold-glow);
    filter: blur(40px);
    z-index: -1;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gold-400);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.hero__scroll-btn:hover {
    border-color: var(--gold-500);
    background: rgba(212, 175, 55, 0.1);
}

/* ==================== GENERAL SECTIONS ==================== */
.section {
    padding: 100px 0; /* Espaçamento mais coeso e elegante */
    position: relative;
}

.section--dark {
    background: var(--bg-dark);
    position: relative;
}

.section--gradient {
    background: var(--bg-surface);
    position: relative;
}

/* Decorative section dividers */
.section--dark::before,
.section--gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 600px);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(197,160,40,0.3) 50%, transparent 100%);
}

/* Center ornament on divider */
.section--dark::after,
.section--gradient::after {
    content: '✦';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--gold-500);
    background: var(--bg-dark);
    padding: 0 12px;
    z-index: 1;
}

.section--gradient::after {
    background: var(--bg-surface);
}

.section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    padding: 0 24px;
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-500);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Linha decorativa antes do label - toque de requinte */
.section__label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gradient-gold);
    flex-shrink: 0;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem); /* Maior e mais impactante */
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.section__subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.section__text {
    font-size: clamp(0.9rem, 1.7vw, 1.05rem);
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.section__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.section__scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gold-400);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.section__scroll-btn:hover {
    border-color: var(--gold-500);
    background: rgba(197, 160, 40, 0.1);
}

/* ==================== ABOUT / PROCEDIMENTO ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-reversed .about-grid {
    /* Swap columns visually */
    direction: rtl;
}

.about-reversed .about-content,
.about-reversed .about-image {
    direction: ltr; /* Reset text direction inside */
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.about-list li i {
    margin-top: 4px;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.image-frame--img {
    padding: 0;
}

.floating-img {
    max-width: 300px;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.rounded-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.05);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: var(--gold-glow);
    filter: blur(80px);
    z-index: 1;
    border-radius: 50%;
}

.care-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

/* Garantir visibilidade total da seção profissional,
   independente de qualquer animação geral */
/* Garantir visibilidade total, independente de qualquer animação geral */
.about-grid {
    opacity: 1 !important;
    visibility: visible !important;
}

.professional-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.8s var(--ease);
    will-change: transform, opacity;
}

/* Decorative gold frame around professional photo */
.image-frame--img:has(.professional-img) {
    position: relative;
    padding: 6px;
    background: linear-gradient(135deg, rgba(197,160,40,0.2) 0%, rgba(197,160,40,0.05) 50%, rgba(197,160,40,0.2) 100%);
    border-radius: calc(var(--radius-lg) + 6px);
    box-shadow: var(--shadow-premium);
}

.image-frame--img:has(.professional-img)::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(197,160,40,0.12);
    border-radius: calc(var(--radius-lg) + 14px);
    pointer-events: none;
}

.image-frame--img:has(.professional-img):hover .professional-img {
    transform: scale(1.03);
}

.care-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(197, 160, 40, 0.08);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.care-step:hover {
    border-color: rgba(197, 160, 40, 0.25);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.care-step__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.care-step h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.care-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==================== SERVICES TABS/CARDS ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    padding: 56px 44px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--duration) var(--ease-out), border-color var(--duration), box-shadow var(--duration) var(--ease-out);
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(197, 160, 40, 0.3);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7), 0 0 40px rgba(197, 160, 40, 0.1);
}

.service-card__icon {
    margin-bottom: 30px;
    height: 120px;
    width: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    padding: 15px;
}

.service-card__icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    transition: transform var(--duration);
}

.service-card:hover .service-card__icon img {
    transform: scale(1.1) rotate(5deg);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--gold-300);
}

.service-card__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ==================== PREMIUM RESULTS GALLERY ==================== */
.premium-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
}

/* --- Mobile Mockup Showcase --- */
.premium-video-showcase {
    flex: 1 1 300px;
    max-width: 380px;
    display: flex;
    justify-content: center;
}

.mobile-mockup {
    position: relative;
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #2a2a2a;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.8),
        inset 0 0 0 2px #555,
        0 0 30px rgba(212, 175, 55, 0.15); /* Gold glow */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-mockup__notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 25px;
    background: #2a2a2a;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.mockup-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px; /* Matches inner radius */
}

/* --- Photos Grid --- */
.premium-photo-grid {
    flex: 2 1 500px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.photo-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration);
}

.photo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    transition: border-color 0.5s var(--ease);
    pointer-events: none;
    z-index: 3;
}

.photo-card:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 30px rgba(197,160,40,0.1);
}

.photo-card:hover::after {
    border-color: rgba(197,160,40,0.35);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

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

.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.photo-overlay i {
    font-size: 2rem;
    color: var(--gold-400);
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.photo-card:hover .photo-overlay {
    opacity: 1;
}

.photo-card:hover .photo-overlay i {
    transform: scale(1);
}

/* --- PHOTO MODAL --- */
.modal {
    visibility: hidden;
    pointer-events: none;
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(5, 5, 5, 0.95); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    display: flex; /* Mantém estrutura pronta para a GPU */
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    will-change: opacity, visibility;
}

.modal.show {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transition-delay: 0s;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--gold-400);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--gold-500);
}

/* ==================== CONTACT ==================== */
.contact-section {
    padding-bottom: 60px;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    padding: 0;
}

.contact-info {
    padding: 60px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item__text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.contact-item__text p, .contact-item__text a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-item__text a:hover {
    color: var(--gold-400);
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: grayscale(80%) contrast(1.2) sepia(10%) hue-rotate(180deg);
    opacity: 0.8;
}

/* ==================== FAQ ==================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 0;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
}

.faq-question {
    list-style: none;
    padding: 24px 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.3s var(--ease);
    user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-500);
    flex-shrink: 0;
    transition: transform 0.35s var(--ease);
    line-height: 1;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-item[open] .faq-question {
    color: var(--gold-400);
}

.faq-answer {
    padding: 0 30px 24px;
    border-top: 1px solid rgba(197, 160, 40, 0.08);
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 16px;
}

.faq-answer a {
    color: var(--gold-400);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 20px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    height: 80px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.footer__brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer__links h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer__links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer__links a:hover {
    color: var(--gold-400);
    transform: translateX(5px);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
}

.footer__bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* WhatsApp pulse animation */
.whatsapp-float__pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid var(--green-500);
    animation: pulse 2s infinite;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* Stagger children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Image reveal with clip-path */
.reveal-image {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s var(--ease-out);
}

.reveal-image.visible {
    clip-path: inset(0 0% 0 0);
}

/* Parallax container */
.parallax-img {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* Button ripple effect */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes ripple-effect {
    to { transform: scale(4); opacity: 0; }
}

/* WhatsApp tooltip */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--gradient-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all var(--duration);
}

.whatsapp-float::after {
    content: 'Fale conosco!';
    position: absolute;
    right: 80px;
    background: #fff;
    color: #333;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-body);
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s var(--ease);
    pointer-events: none;
}

.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Custom cursor (desktop only) */
@media (hover: hover) and (pointer: fine) {
    .custom-cursor {
        position: fixed;
        width: 20px;
        height: 20px;
        border: 1.5px solid var(--gold-400);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
        transform: translate(-50%, -50%);
        mix-blend-mode: difference;
    }

    .custom-cursor.cursor-hover {
        width: 40px;
        height: 40px;
        background: rgba(197,160,40,0.1);
        border-color: var(--gold-300);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    will-change: opacity, transform;
}

.animate-fade-up.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* ==================== RESPONSIVE: TABLET (<=992px) ==================== */
@media (max-width: 992px) {
    .about-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 30px; /* Reduzido de 40px para mobile */
    }
    
    .about-reversed .about-grid {
        direction: ltr;
    }

    .about-image {
        order: -1;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
    }

    .professional-card {
        grid-template-columns: 1fr;
    }

    .professional-img-container {
        min-height: 350px;
    }

    .professional-content {
        padding: 40px 28px;
    }

    .premium-gallery {
        flex-direction: column;
    }

    .premium-video-showcase {
        max-width: 100%;
    }

    .section {
        padding: 80px 0; /* Reduzido de 120 para melhor compressão em tablet */
    }

    .section__title {
        font-size: clamp(1.8rem, 4vw, 2.6rem);
    }
}

/* ==================== RESPONSIVE: MOBILE (<=768px) ==================== */
@media (max-width: 768px) {

    /* --- Global --- */
    .container {
        padding: 0 18px;
    }

    .section {
        padding: 60px 0; /* Reduzido respiro vertical da sessão */
    }

    .section__header {
        margin: 0 auto 30px; /* Reduzido espaçamento do titulo da secão */
        padding: 0 10px;
    }

    .section__label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        gap: 8px;
    }

    .section__label::before {
        width: 20px;
    }

    .section__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .section__subtitle {
        font-size: 0.95rem;
    }

    .section__text {
        font-size: 0.95rem;
        line-height: 1.6; /* Melhor compressão de parágrafo no mobile */
        margin-bottom: 12px;
    }

    /* --- Buttons --- */
    .btn {
        font-size: 0.78rem;
        padding: 14px 26px;
        letter-spacing: 1px;
    }

    /* --- Header --- */
    .header {
        position: absolute;
        padding: 12px 0;
        border-bottom: none;
    }

    .header__inner {
        justify-content: center;
    }

    .logo {
        height: 60px;
    }

    .logo__img {
        max-width: 220px;
    }

    .header__hamburger {
        position: absolute;
        right: 18px;
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height para mobile moderno */
        background: rgba(8, 8, 9, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        transition: right 0.5s var(--ease-out);
        padding: 40px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.6);
        border-left: 1px solid rgba(197,160,40,0.08);
    }

    .header__nav.active {
        right: 0;
    }

    .header__link {
        font-size: 1.05rem;
        padding: 8px 0;
    }

    .header__link--mobile-cta {
        margin-top: 10px;
        background-color: #25d366 !important;
        background: var(--gradient-green) !important;
        color: white !important;
        padding: 14px 24px !important;
        border-radius: 50px;
        text-align: center;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 600;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 100;
    }

    .header__hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .header__hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .header__hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* --- Hero --- */
    .hero {
        padding-top: 100px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 30px 0;
    }
    
    .hero__content {
        margin: 0 auto;
        padding: 0 6px;
    }

    .hero__badge {
        font-size: 0.65rem;
        padding: 8px 14px;
        letter-spacing: 1.2px;
        margin: 0 auto 24px;
        text-align: center;
    }

    .hero__title {
        font-size: clamp(1.6rem, 6.5vw, 2.1rem);
        line-height: 1.2;
        margin-bottom: 20px;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: none; /* Previne a divisão de palavras e nomes chatos no celular */
    }
    
    .hero__text {
        margin: 0 auto 16px;
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .hero__cta, .section__cta-left {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin-top: 30px !important;
        text-align: center !important;
    }

    .hero__img {
        max-width: 320px; /* Reduzido para caber melhor no mobile */
        margin: 0 auto;
    }

    .hero__scroll {
        bottom: 20px;
    }

    /* --- Cards Serviço --- */
    .service-card {
        padding: 24px 20px; /* Reduzido padding excessivo do card vertical */
    }

    .service-card__title {
        font-size: 1.3rem;
    }

    .service-card__icon {
        width: 90px;
        height: 90px;
    }

    /* --- Pós-Operatório --- */
    .care-step {
        padding: 14px 16px;
        gap: 14px;
    }

    .care-step h4 {
        font-size: 1rem;
    }

    .care-step p {
        font-size: 0.85rem;
    }

    /* --- Galeria --- */
    .premium-photo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* --- Vídeo --- */
    .mobile-mockup {
        width: 260px;
        height: 540px;
        border-radius: 32px;
    }

    /* --- FAQ --- */
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px 18px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    /* --- Contato --- */
    .contact-info {
        padding: 30px 20px;
    }

    .contact-map {
        min-height: 280px;
    }
    
    /* --- Footer --- */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__logo {
        height: 60px;
    }
}

/* ==================== RESPONSIVE: SMALL MOBILE (<=480px) ==================== */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .section {
        padding: 40px 0; /* Super comprimido para celulares menores */
    }

    .hero__title {
        font-size: 1.5rem;
    }

    .hero__badge {
        font-size: 0.58rem;
        letter-spacing: 0.8px;
        padding: 7px 12px;
    }

    .btn {
        font-size: 0.72rem;
        padding: 12px 20px;
        letter-spacing: 0.8px;
    }

    .section__title {
        font-size: 1.4rem;
    }

    .service-card {
        padding: 20px 16px;
    }

    .professional-img-container {
        min-height: 250px;
    }

    .mobile-mockup {
        width: 220px;
        height: 460px;
    }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    
    .floating-img, 
    .btn--primary,
    .btn--whatsapp,
    .hero__scroll-btn,
    .section__scroll-btn,
    .whatsapp-float__pulse {
        animation: none !important;
    }

    .glass-card:hover,
    .btn:hover,
    .service-card:hover,
    .photo-card:hover img {
        transform: none !important;
    }
}
