/* ============================================
   HANRAFETH BRITO - SALÃO DE BELEZA
   ✨ Design Ultra Premium & Surpreendente ✨
   Luxo Absoluto - Experiência Imersiva
   ============================================ */

/* Google Fonts - Combinação Única e Sofisticada */
@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Josefin+Sans:wght@200;300;400;500;600;700&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,500&display=swap');

/* CSS Variables - Paleta Luxuosa Exclusiva */
:root {
    /* === PALETA PRINCIPAL - Noir Luxe === */
    /* Deep Noir - Fundos Sofisticados */
    --noir-absolute: #0a0908;
    --noir-velvet: #131110;
    --noir-silk: #1a1816;
    --noir-charcoal: #252220;
    --noir-smoke: #2d2a28;
    
    /* Champagne Oro - Elegância Dourada */
    --oro-champagne: #d4a853;
    --oro-radiant: #e8c778;
    --oro-sunset: #c99a2e;
    --oro-deep: #9e7b2f;
    --oro-blush: #f5e6c8;
    --oro-glow: #fff5d4;
    
    /* Rose Bordeaux - Sofisticação */
    --bordeaux-deep: #6b2d3c;
    --bordeaux-rich: #8c3a4d;
    --bordeaux-wine: #a04a5c;
    --bordeaux-rose: #c06b7c;
    --bordeaux-blush: #d99aa8;
    
    /* Marfim Luxo - Destaques Claros */
    --ivory-warm: #f5efe8;
    --ivory-silk: #ede5dc;
    --ivory-cream: #e3d9cd;
    --ivory-nude: #d4c8ba;
    
    /* Cores de Accent */
    --emerald-soft: #4a7c6f;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    
    /* === GRADIENTES LUXUOSOS NOIR === */
    --gradient-noir-deep: linear-gradient(180deg, #0a0908 0%, #131110 50%, #1a1816 100%);
    --gradient-noir-radial: radial-gradient(ellipse at center, #1a1816 0%, #0a0908 100%);
    --gradient-oro-shine: linear-gradient(135deg, #9e7b2f 0%, #d4a853 25%, #e8c778 50%, #d4a853 75%, #9e7b2f 100%);
    --gradient-oro-sunset: linear-gradient(45deg, #c99a2e 0%, #d4a853 50%, #e8c778 100%);
    --gradient-bordeaux-silk: linear-gradient(135deg, #6b2d3c 0%, #8c3a4d 50%, #a04a5c 100%);
    --gradient-hero-noir: linear-gradient(160deg, 
        #0a0908 0%, 
        #131110 25%,
        #1a1816 50%, 
        #0a0908 100%);
    --gradient-mesh: 
        radial-gradient(at 20% 20%, rgba(212, 168, 83, 0.15) 0%, transparent 50%),
        radial-gradient(at 80% 10%, rgba(107, 45, 60, 0.2) 0%, transparent 40%),
        radial-gradient(at 50% 80%, rgba(212, 168, 83, 0.1) 0%, transparent 45%),
        radial-gradient(at 90% 90%, rgba(107, 45, 60, 0.15) 0%, transparent 50%);
    --gradient-section-odd: linear-gradient(180deg, #0a0908 0%, #131110 100%);
    --gradient-section-even: linear-gradient(180deg, #131110 0%, #1a1816 100%);
    
    /* === SOMBRAS DRAMÁTICAS === */
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 10px 50px rgba(0, 0, 0, 0.5);
    --shadow-strong: 0 25px 80px rgba(0, 0, 0, 0.6);
    --shadow-oro-glow: 0 0 60px rgba(212, 168, 83, 0.35);
    --shadow-bordeaux-glow: 0 0 50px rgba(107, 45, 60, 0.4);
    --shadow-float: 0 35px 100px rgba(0, 0, 0, 0.5);
    --shadow-inset: inset 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 15px 60px rgba(0, 0, 0, 0.4), 0 5px 20px rgba(0, 0, 0, 0.3);
    --shadow-text: 0 2px 20px rgba(212, 168, 83, 0.3);
    
    /* === TIPOGRAFIA PREMIUM === */
    --font-display: 'Italiana', serif;
    --font-elegant: 'Bodoni Moda', serif;
    --font-body: 'Josefin Sans', sans-serif;
    --font-accent: 'Lora', serif;
    
    /* === ESPAÇAMENTOS HARMONIOSOS === */
    --space-2xs: 4px;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 100px;
    --space-3xl: 150px;
    
    /* === BORDAS REFINADAS === */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-2xl: 60px;
    --radius-full: 9999px;
    
    /* === TRANSIÇÕES FLUIDAS === */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-smooth: 0.4s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);
    --transition-slower: 0.9s var(--ease-out-expo);
}

/* === RESET MODERNO E OTIMIZADO === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.8;
    color: var(--ivory-warm);
    background: var(--noir-absolute);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* === SELEÇÃO DE TEXTO ELEGANTE === */
::selection {
    background: var(--oro-champagne);
    color: var(--noir-absolute);
}

::-moz-selection {
    background: var(--oro-champagne);
    color: var(--noir-absolute);
}

/* === SCROLLBAR LUXUOSA NOIR === */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--noir-velvet);
    border-left: 1px solid var(--noir-charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-oro-shine);
    background-size: 200% 200%;
    border-radius: var(--radius-full);
    border: 3px solid var(--noir-velvet);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--oro-radiant);
}

/* === CONTAINER PRINCIPAL === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   HEADER - Glass Noir Premium
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(212, 168, 83, 0.3);
    transition: var(--transition-smooth);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    pointer-events: none;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--oro-deep) 15%,
        var(--oro-champagne) 30%,
        var(--oro-radiant) 50%, 
        var(--oro-champagne) 70%,
        var(--oro-deep) 85%,
        transparent 100%);
    opacity: 0.8;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    min-height: 100px;
    position: relative;
    z-index: 1;
}

/* === LOGO ELEGANTE === */
.logo {
    text-align: center;
    position: relative;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: var(--transition-smooth);
}

.logo a:hover {
    transform: translateY(-3px);
}

.logo-text {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 400;
    color: var(--oro-deep);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 6px;
    position: relative;
    text-shadow: none;
}

.logo-text::before {
    content: '◈';
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    color: var(--oro-deep);
    opacity: 0.9;
    animation: sparkle 3s ease-in-out infinite;
}

.logo-text::after {
    content: '◈';
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    color: var(--oro-deep);
    opacity: 0.9;
    animation: sparkle 3s ease-in-out infinite 0.5s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

.logo-subtitle {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    color: var(--bordeaux-deep);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.95;
}

/* ============================================
   HERO SECTION - Impacto Visual Máximo Noir
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 120px;
    background: #ffffff;
    overflow: hidden;
}

/* Padrão Mesh de Fundo - Suave para fundo branco */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(107, 45, 60, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Elemento Luminoso Flutuante - Suave */
.hero::after {
    content: '';
    position: absolute;
    top: -250px;
    right: -250px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, 
        rgba(212, 168, 83, 0.1) 0%, 
        rgba(107, 45, 60, 0.05) 40%,
        transparent 70%);
    border-radius: 50%;
    animation: floatOrb 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(-40px, 50px) scale(1.08) rotate(5deg); }
    50% { transform: translate(30px, -30px) scale(0.95) rotate(-3deg); }
    75% { transform: translate(-25px, -40px) scale(1.05) rotate(2deg); }
}

/* Orbe Inferior Adicional - Suave */
.hero .container::before {
    content: '';
    position: fixed;
    bottom: -300px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(107, 45, 60, 0.08) 0%, 
        transparent 60%);
    border-radius: 50%;
    animation: floatOrb 20s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ordem dos elementos na Hero: Título > CTAs > Descrição */
.hero-title {
    order: 1;
}

.hero-ctas {
    order: 2;
}

.hero-description {
    order: 3;
}

/* === TÍTULO HERO === */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    color: var(--noir-charcoal);
    margin-bottom: var(--space-md);
    line-height: 1.15;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: none;
}

.hero-title span {
    display: inline-block;
    position: relative;
    color: transparent;
    background: linear-gradient(135deg, var(--oro-deep) 0%, var(--oro-champagne) 50%, var(--oro-deep) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmerText 5s linear infinite;
    filter: none;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--oro-deep), var(--oro-champagne), var(--oro-deep));
    border-radius: var(--radius-full);
    transform: scaleX(0.85);
    box-shadow: none;
}

/* === DESCRIÇÃO HERO === */
.hero-description {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-weight: 400;
    color: var(--noir-smoke);
    max-width: 900px;
    margin: 0 auto 0;
    line-height: 2.1;
    opacity: 1;
    text-shadow: none;
}

.hero-description strong {
    color: var(--oro-deep);
    font-weight: 600;
    font-style: italic;
}

/* === CTAs PREMIUM === */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 44px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-smooth);
    min-height: 66px;
    isolation: isolate;
}

.cta-btn svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.cta-btn:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

/* Botão Primário - Dourado Luxo */
.cta-primary {
    background: var(--gradient-oro-shine);
    background-size: 200% auto;
    color: var(--noir-absolute);
    box-shadow: 
        var(--shadow-soft),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(212, 168, 83, 0.3);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.cta-primary:hover {
    background-position: 100% center;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        var(--shadow-oro-glow),
        var(--shadow-medium),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta-primary:hover::before {
    left: 100%;
}

/* Botão Secundário - WhatsApp */
.cta-secondary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--noir-absolute);
    box-shadow: 
        0 10px 40px rgba(37, 211, 102, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 0 50px rgba(37, 211, 102, 0.45),
        0 20px 50px rgba(37, 211, 102, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Botão Terciário - Bordeaux */
.cta-tertiary {
    background: var(--gradient-bordeaux-silk);
    color: var(--oro-blush);
    box-shadow: 
        var(--shadow-soft),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-tertiary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        var(--shadow-bordeaux-glow),
        var(--shadow-medium),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ============================================
   WHATSAPP FLUTUANTE - Design Noir
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 1001;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    color: var(--noir-absolute);
    text-decoration: none;
    box-shadow: 
        0 12px 45px rgba(37, 211, 102, 0.45),
        0 0 0 0 rgba(37, 211, 102, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    transition: var(--transition-smooth);
    animation: whatsappGlow 3.5s ease-in-out infinite;
}

@keyframes whatsappGlow {
    0%, 100% {
        box-shadow: 
            0 12px 45px rgba(37, 211, 102, 0.45),
            0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 
            0 12px 45px rgba(37, 211, 102, 0.45),
            0 0 0 18px rgba(37, 211, 102, 0);
    }
}

.whatsapp-float a:hover {
    transform: scale(1.15) rotate(10deg);
    animation: none;
    box-shadow: 
        0 18px 60px rgba(37, 211, 102, 0.55),
        0 0 70px rgba(37, 211, 102, 0.35);
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
}

/* ============================================
   CONTEÚDO PRINCIPAL
   ============================================ */
.main-content {
    padding: 0;
    background: #ffffff;
    position: relative;
}

/* Headings Globais */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--oro-deep);
    font-weight: 400;
}

/* ============================================
   SEO SECTIONS - Cards Noir Elegantes
   ============================================ */
.seo-section {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

/* Backgrounds Alternados - Fundo Claro */
.seo-section:nth-child(odd) {
    background: #ffffff;
}

.seo-section:nth-child(even) {
    background: #f9f7f4;
}

/* Linhas Decorativas Verticais */
.seo-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--oro-deep), var(--oro-champagne), var(--oro-deep));
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: height 0.7s var(--ease-out-expo);
    box-shadow: none;
}

.seo-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--gradient-bordeaux-silk);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    transition: height 0.7s var(--ease-out-expo);
    box-shadow: none;
}

.seo-section:hover::before,
.seo-section:hover::after {
    height: 100px;
}

.seo-section .container {
    max-width: 950px;
}

/* Título da Seção SEO */
.seo-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--oro-deep);
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-md);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: none;
}

.seo-section h2::before {
    content: '✦';
    display: block;
    font-size: 0.9rem;
    color: var(--bordeaux-deep);
    margin-bottom: var(--space-xs);
    opacity: 0.9;
    text-shadow: none;
}

.seo-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--oro-deep), var(--oro-champagne), var(--oro-deep));
    border-radius: var(--radius-full);
    box-shadow: none;
}

/* Parágrafos da Seção SEO */
.seo-section p {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    line-height: 2.1;
    color: #444444;
    margin-bottom: var(--space-md);
    text-align: center;
}

.seo-section p:last-of-type {
    margin-bottom: var(--space-lg);
}

.seo-section strong {
    color: var(--oro-deep);
    font-weight: 600;
    position: relative;
}

.seo-section .cta-btn {
    display: block;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   LOCALIZAÇÃO / BUSINESS EMBED
   ============================================ */
.business-embed-section {
    position: relative;
    padding: var(--space-3xl) 0;
    background: #f9f7f4;
    overflow: hidden;
}

.business-embed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 25%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 75%, rgba(107, 45, 60, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.business-embed-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--oro-deep), var(--oro-champagne), var(--oro-deep));
    box-shadow: none;
}

.business-embed-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--oro-deep);
    position: relative;
    z-index: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: none;
}

.business-embed-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--oro-deep), var(--oro-champagne), var(--oro-deep));
    margin: var(--space-sm) auto 0;
    border-radius: var(--radius-full);
    box-shadow: none;
}

.business-embed-section p {
    color: #555555;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 1.15rem;
    font-style: italic;
}

.business-embed-section iframe {
    width: 100%;
    max-width: 1150px;
    height: 500px;
    margin: 0 auto;
    display: block;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.business-embed-section iframe:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ============================================
   FOOTER - Fundo Claro Elegante
   ============================================ */
.footer {
    background: #f5f3f0;
    color: #333333;
    padding: var(--space-3xl) 0 var(--space-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--oro-deep), var(--oro-champagne), var(--oro-deep));
    background-size: 300% auto;
    animation: shimmerLine 4s linear infinite;
}

@keyframes shimmerLine {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 85%, rgba(212, 168, 83, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(107, 45, 60, 0.03) 0%, transparent 45%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--oro-deep);
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-sm);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: none;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--oro-deep), var(--oro-champagne));
    border-radius: var(--radius-full);
    box-shadow: none;
}

.footer-section p {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    line-height: 2;
    color: #555555;
    margin-bottom: var(--space-xs);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-xs);
}

.footer-section ul li a {
    font-family: var(--font-body);
    color: #555555;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    font-size: 0.85rem;
    color: var(--oro-deep);
    opacity: 0;
    transform: translateX(-12px);
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--oro-deep);
    padding-left: 22px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 1px solid rgba(158, 123, 47, 0.2);
    padding-top: var(--space-md);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #777777;
    letter-spacing: 2px;
    opacity: 1;
}

/* ============================================
   MAPA DO SITE
   ============================================ */
.sitemap-section {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(158, 123, 47, 0.15);
    transition: var(--transition-smooth);
}

.sitemap-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(158, 123, 47, 0.25);
}

.sitemap-section h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--oro-deep);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(158, 123, 47, 0.2);
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.sitemap-section h2 a {
    color: var(--oro-deep);
    text-decoration: none;
    transition: var(--transition-fast);
}

.sitemap-section h2 a:hover {
    color: var(--oro-champagne);
    text-shadow: none;
}

.sitemap-section p {
    color: #555555;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    line-height: 1.9;
}

.sitemap-list {
    list-style: none;
    display: grid;
    gap: var(--space-xs);
}

.sitemap-list li {
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.sitemap-list li:hover {
    background: linear-gradient(90deg, 
        rgba(158, 123, 47, 0.08) 0%, 
        transparent 100%);
    border-left-color: var(--oro-deep);
}

.sitemap-list li a {
    font-family: var(--font-body);
    color: #555555;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-fast);
    display: block;
}

.sitemap-list li a:hover {
    color: var(--oro-deep);
    transform: translateX(10px);
}

.mapa-description {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: var(--space-lg);
    color: #555555;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}

/* ============================================
   LINKS E ACESSIBILIDADE
   ============================================ */
a {
    color: var(--oro-deep);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--oro-champagne);
}

/* Focus States Elegantes */
.cta-btn:focus,
.whatsapp-link:focus,
a:focus {
    outline: 2px solid var(--oro-champagne);
    outline-offset: 4px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--oro-champagne);
    color: var(--noir-absolute);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top 0.3s;
    font-weight: 600;
}

.skip-link:focus {
    top: 15px;
}

/* Lazy Load Placeholder */
.lazy-loading {
    background: linear-gradient(90deg, 
        #f0f0f0 25%, 
        #e8e8e8 50%, 
        #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmerLoading 1.8s infinite;
}

@keyframes shimmerLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   EFEITOS ESPECIAIS
   ============================================ */

/* Linha Decorativa Dourada Horizontal */
.gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--oro-deep) 20%,
        var(--oro-champagne) 50%,
        var(--oro-deep) 80%,
        transparent 100%);
    margin: var(--space-lg) 0;
}

/* Texto com Brilho */
.glow-text {
    text-shadow: 
        0 0 10px rgba(212, 168, 83, 0.5),
        0 0 20px rgba(212, 168, 83, 0.3),
        0 0 30px rgba(212, 168, 83, 0.2);
}

/* Card Glass - Fundo Claro */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(158, 123, 47, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Divider Elegante */
.elegant-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.elegant-divider::before,
.elegant-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--oro-champagne), transparent);
}

.elegant-divider span {
    color: var(--oro-champagne);
    font-size: 1.2rem;
}
