/* Elite Dental - Design Premium Sofisticado */
/* ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Variáveis de Design */
:root {
    /* Paleta Principal - Sofisticada */
    --gold-50: #FDF9E7;
    --gold-100: #F9F0C3;
    --gold-200: #F3E19A;
    --gold-300: #E8C94C;
    --gold-400: #D4AF37;
    --gold-500: #B8932E;
    --gold-600: #9A7B26;
    --gold-700: #7A611E;
    
    /* Azul Profundo Premium */
    --navy-50: #E8ECF4;
    --navy-100: #C5D0E6;
    --navy-200: #9FB3D4;
    --navy-300: #7896C2;
    --navy-400: #4A6FA5;
    --navy-500: #1E3A5F;
    --navy-600: #162D4A;
    --navy-700: #0F1F35;
    --navy-800: #091422;
    --navy-900: #050A11;
    
    /* Cores Neutras */
    --cream-50: #FFFDF7;
    --cream-100: #FFF9E8;
    --cream-200: #FFF3D1;
    --cream-300: #FFEAB3;
    
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    
    /* Cores de Destaque */
    --emerald-400: #34D399;
    --emerald-500: #10B981;
    --emerald-600: #059669;
    
    /* Fontes */
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
    --font-accent: 'Outfit', 'Arial', sans-serif;
    
    /* Gradientes Premium */
    --gradient-hero: linear-gradient(135deg, rgba(15, 31, 53, 0.97) 0%, rgba(30, 58, 95, 0.95) 50%, rgba(212, 175, 55, 0.15) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-300) 50%, var(--gold-500) 100%);
    --gradient-navy: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-500) 100%);
    --gradient-subtle: linear-gradient(180deg, var(--cream-50) 0%, var(--slate-50) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Sombras Elegantes */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.16), 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
    --shadow-inner: inset 0 2px 6px rgba(0, 0, 0, 0.06);
    
    /* Transições */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Bordas */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* Body */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-700);
    background: var(--cream-50);
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Tipografia Elegante */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ============================================
   HEADER - Elegante e Sofisticado
   ============================================ */
.header {
    background: var(--gradient-navy);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-400) 50%, transparent 100%);
}

.header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-base);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cream-50);
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--gold-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--gold-300);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 400;
}

.logo:hover {
    transform: scale(1.03);
}

.logo:hover .logo-text {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* ============================================
   HERO SECTION - Impactante e Elegante
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream-50);
    background: url('../images/clinica-odontologica-6.webp') no-repeat center center/cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

/* Padrão geométrico decorativo */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    z-index: 1;
}

/* Elementos decorativos flutuantes */
.hero .container::before,
.hero .container::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero .container::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -150px;
    animation-delay: -5s;
}

.hero .container::after {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -20px) rotate(5deg); }
    50% { transform: translate(-5px, 10px) rotate(-3deg); }
    75% { transform: translate(15px, 5px) rotate(2deg); }
}

.hero-content {
    max-width: 900px;
    padding: 3rem 2rem;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--cream-50);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: heroTitle 1s cubic-bezier(0.4, 0, 0.2, 1) both;
    line-height: 1.1;
}

.hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 1.5rem auto 0;
    border-radius: var(--radius-full);
    animation: expandLine 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

@keyframes heroTitle {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes expandLine {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    line-height: 1.8;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BOTÕES - Design Premium
   ============================================ */
.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.25rem;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn i {
    font-size: 1.1em;
    transition: var(--transition-fast);
}

.btn:hover i {
    transform: scale(1.15);
}

/* Efeito de brilho no hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy-800);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--cream-50);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cream-50);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

/* ============================================
   MAPS SECTION - Elegante
   ============================================ */
.maps-section {
    padding: 6rem 0;
    background: var(--gradient-subtle);
    position: relative;
}

.maps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--slate-200) 50%, transparent 100%);
}

.maps-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.maps-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy-600);
    margin-bottom: 2.5rem;
    position: relative;
}

.maps-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 1rem auto 0;
    border-radius: var(--radius-full);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: white;
    padding: 0.5rem;
    border: 1px solid var(--slate-200);
}

.map-container iframe {
    border-radius: var(--radius-md);
}

/* ============================================
   CONTENT SECTIONS - Refinado
   ============================================ */
.content-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.content-section:nth-child(even) {
    background: var(--slate-50);
}

/* Linha decorativa entre seções */
.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold-400) 0%, transparent 100%);
}

.content-section:first-of-type::before {
    display: none;
}

.content-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-section h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--navy-600);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0.75rem auto 0;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.content-section:hover h2::after {
    width: 80px;
}

.content-section h3 {
    text-align: center;
    color: var(--navy-500);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--slate-600);
    margin-bottom: 1.75rem;
    text-align: center;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Listas dentro das seções de conteúdo */
.content-section ul, 
.content-section ol {
    text-align: left;
    display: inline-block;
    padding-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.content-section ul li,
.content-section ol li {
    margin-bottom: 0.75rem;
    color: var(--slate-600);
    font-size: 1.1rem;
    line-height: 1.6;
}

.content-section ul li a {
    color: var(--navy-500);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.content-section ul li a:hover {
    color: var(--gold-400);
}

/* ============================================
   WHATSAPP CTA - Premium
   ============================================ */
.whatsapp-cta {
    text-align: center;
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.whatsapp-cta p {
    color: var(--cream-100);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.whatsapp-cta .btn-whatsapp {
    font-size: 1.15rem;
    padding: 1.25rem 3rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   SITE MAP LIST - Elegante
   ============================================ */
.site-map-list {
    list-style: none;
    margin-left: 0;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.site-map-list li {
    margin-bottom: 0;
}

.site-map-list a {
    display: block;
    padding: 1rem 1.25rem;
    color: var(--navy-600);
    text-decoration: none;
    font-weight: 500;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.site-map-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-gold);
    transform: scaleY(0);
    transition: var(--transition-base);
}

.site-map-list a:hover {
    color: var(--gold-500);
    background: var(--cream-50);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-color: var(--gold-300);
}

.site-map-list a:hover::before {
    transform: scaleY(1);
}

/* ============================================
   FOOTER - Sofisticado
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: var(--cream-100);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-400) 50%, transparent 100%);
}

.footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-family: var(--font-display);
    color: var(--gold-300);
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold-400);
    margin: 0.5rem auto 0;
    border-radius: var(--radius-full);
}

.footer-section p,
.footer-section a {
    color: var(--slate-300);
    text-decoration: none;
    line-height: 1.8;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--gold-300);
}

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

.footer-section ul li {
    color: var(--slate-300);
    padding: 0.25rem 0;
}

.footer-section .schedule {
    line-height: 1.8;
}

.footer-links {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-400);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--gold-300);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--slate-500);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Ajuste para seções de conteúdo dentro do rodapé */
.footer .content-section {
    background: transparent;
    padding: 0 0 2rem 0;
}

.footer .content-section::before {
    display: none;
}

.footer .content-section h2 {
    color: var(--cream-50);
}

.footer .content-section p,
.footer .content-section ul li {
    color: var(--slate-300);
    text-align: center;
}

.footer .content-section a {
    color: var(--slate-300);
}

.footer .content-section a:hover {
    color: var(--gold-300);
}

/* ============================================
   WHATSAPP FLUTUANTE - Premium
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 9999;
    transition: var(--transition-base);
    text-decoration: none;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), transparent);
    animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.75rem;
    color: white;
}

/* Fix for nested WhatsApp link structure */
.whatsapp-float .whatsapp-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

/* ============================================
   ANIMAÇÕES GLOBAIS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ESTILOS PARA PÁGINAS INTERNAS
   ============================================ */
.page-header {
    background: var(--gradient-navy);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream-50);
    margin-bottom: 0.5rem;
    position: relative;
}

.page-header p {
    color: var(--slate-300);
    font-size: 1.1rem;
}

/* ============================================
   SCROLL SUAVE E SELEÇÃO
   ============================================ */
::selection {
    background: var(--gold-300);
    color: var(--navy-800);
}

::-moz-selection {
    background: var(--gold-300);
    color: var(--navy-800);
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--slate-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--navy-400) 0%, var(--navy-600) 100%);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--navy-500) 0%, var(--navy-700) 100%);
}

/* ============================================
   MEDIA QUERIES BASE
   ============================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .content-section .container {
        padding: 0 1.25rem;
    }

    .footer-content {
        gap: 2rem;
    }
}

/* Focus States para Acessibilidade */
.btn:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gold-400);
    outline-offset: 3px;
}

/* Preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
