/* ============================================
   OMEGA INC - ESTILO PRINCIPAL (DESIGN PREMIUM)
   Cores: #2a3f5f (Azul escuro) | #f7f7f7 (Cinza claro)
   ============================================ */

/* Importação da Fonte */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

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

:root {
    /* Cores da Marca */
    --primary-color: #2a3f5f;
    --primary-light: #3d5a80;
    --primary-dark: #1a2940;
    --secondary-color: #f7f7f7;
    --accent-color: #e07a5f;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f7f7f7;
    --gray-medium: #e0e0e0;
    --gray-dark: #666666;
    --text-color: #333333;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #2a3f5f 0%, #3d5a80 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(42, 63, 95, 0.95) 0%, rgba(61, 90, 128, 0.9) 100%);
    
    /* Transições */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(42, 63, 95, 0.06);
    --shadow-md: 0 6px 20px rgba(42, 63, 95, 0.1);
    --shadow-lg: 0 12px 40px rgba(42, 63, 95, 0.14);
    --shadow-hover: 0 10px 35px rgba(42, 63, 95, 0.2);
    
    /* Outros */
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --border-radius-lg: 16px;
}


/* ============================================
   MARQUEE / PARCEIROS
   ============================================ */

.partners-section {
    padding: 2.5rem 0 3rem;
}

.partners-wrapper {
    overflow: hidden;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    min-width: 200%; /* garante espaço para duplicar */
    animation: marquee-scroll 20s linear infinite;
}

.marquee-track[aria-hidden="true"] {
    position: absolute;
    top: 0;
    left: 0;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: transparent;
}

.partner-item img {
    height: 56px;
    width: auto;
    display: block;
    filter: none;
    opacity: 0.95;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .partner-item img { height: 40px; }
    .marquee-track { gap: 1.5rem; animation-duration: 14s; }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

/* ============================================
   UTILITÁRIOS
   ============================================ */

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 4rem 0;
}

.bg-light-custom {
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42, 63, 95, 0.08);
    box-shadow: 0 2px 12px rgba(42, 63, 95, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.navbar-brand {
    transition: var(--transition-fast);
    display: inline-block;
}

.navbar-brand img {
    height: 36px;
    width: auto;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 600;
    padding: 0.6rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: var(--gray-light);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(42, 63, 95, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(42, 63, 95, 0.35);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(42, 63, 95, 0.25);
}

.btn-lg {
    padding: 0.9rem 2.25rem;
    font-size: 1rem;
}

/* ============================================
   FILTRO DE OBRAS
   ============================================ */

.filtro-obras {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.filtro-obras h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-select,
.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-select:focus,
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(42, 63, 95, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* ============================================
   CARDS DE OBRA
   ============================================ */

.obra-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.obra-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.obra-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--gray-light);
}

.obra-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.obra-card:hover .obra-card-image img {
    transform: scale(1.1);
}

.obra-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(42, 63, 95, 0.3);
}

.obra-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.obra-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.obra-card-location {
    color: var(--gray-dark);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.obra-card-location i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.obra-card-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    flex: 1;
}

.obra-card-info {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-medium);
    margin-top: auto;
}

.obra-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.obra-info-label {
    font-size: 0.75rem;
    color: var(--gray-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.obra-info-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ============================================
   CARDS DE BLOG
   ============================================ */

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-light);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    color: var(--gray-dark);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card-date i {
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.blog-card-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    margin-top: auto;
}

.blog-card-link:hover {
    gap: 0.9rem;
    color: var(--primary-light);
}

/* ============================================
   SEÇÕES
   ============================================ */

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.6;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */

.diferencial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.diferencial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.diferencial-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 16px rgba(42, 63, 95, 0.2);
}

.diferencial-icon i {
    font-size: 2rem;
    color: var(--white);
}

.diferencial-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.diferencial-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-logo img {
    height: 42px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}

.footer h5 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer i {
    color: var(--accent-color);
    margin-right: 0.4rem;
    font-size: 1rem;
}

/* ============================================
   ESTATÍSTICAS (STATS)
   ============================================ */

.stats-section {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 100%);
}

.stat-item {
    text-align: center;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 140px;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-dark);
    font-weight: 700;
}

/* Pequenos detalhes visuais */
.stat-item .stat-number + .stat-label {
    opacity: 0.95;
}

@media (max-width: 768px) {
    .stats-section { padding: 2.5rem 0; }
    .stat-item { min-height: 110px; padding: 0.75rem 0.5rem; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.95rem; }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay-1 {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* ============================================
   ALERTAS
   ============================================ */

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.25rem;
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

/* ============================================
   SPINNER
   ============================================ */

.spinner-border {
    width: 2.5rem;
    height: 2.5rem;
    border-width: 0.25rem;
}

/* ============================================
   BADGES
   ============================================ */

.badge {
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 992px) {
    section {
        padding: 3rem 0;
    }
    
    .filtro-obras {
        padding: 1.75rem;
        margin-top: -3rem;
    }
    
    .diferencial-card {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        min-height: 85vh;
        padding-top: 80px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .filtro-obras {
        padding: 1.5rem 1rem;
        margin-top: -2.5rem;
    }
    
    .filtro-obras h2 {
        font-size: 1.4rem;
    }
    
    .obra-card-image,
    .blog-card-image {
        height: 180px;
    }
    
    .obra-card-body,
    .blog-card-body {
        padding: 1.25rem;
    }
    
    .diferencial-card {
        padding: 1.5rem;
    }
    
    .diferencial-icon {
        width: 55px;
        height: 55px;
    }
    
    .diferencial-icon i {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-social {
        margin-bottom: 2rem;
    }
    
    .footer h5 {
        margin-top: 1.5rem;
        font-size: 1.05rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 13px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .obra-card-image,
    .blog-card-image {
        height: 160px;
    }

    /* Background crossfade para hero: duas imagens em loop com transição suave */
    .hero-section::before,
    .hero-section::after {
        content: '';
        position: absolute;
        inset: 0; /* top:0; right:0; bottom:0; left:0; */
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        opacity: 0.12; /* baixa opacidade para não competir com conteúdo */
        transition: opacity 1.2s ease-in-out;
        z-index: 0;
        pointer-events: none;
    }

    .hero-section::before {
        background-image: url('/assets/images/img-hero-omega01.png');
    }

    .hero-section::after {
        background-image: url('/assets/images/img-hero-omega02.png');
        opacity: 0; /* começa oculto e aparece via animação */
    }

    /* animação de crossfade */
    @keyframes heroCrossfade {
        0% { opacity: 0; }
        10% { opacity: 0.12; }
        45% { opacity: 0.12; }
        55% { opacity: 0; }
        100% { opacity: 0; }
    }

    /* Aplicar animação ao ::after para que ele apareça e desapareça em loop, criando o crossfade */
    .hero-section::after {
        animation: heroCrossfade 14s linear infinite;
    }

    /* Alternativa para reduced motion */
    @media (prefers-reduced-motion: reduce) {
        .hero-section::before,
        .hero-section::after { animation: none !important; opacity: 0.12 !important; }
    }

    /* garantir que conteúdo fique acima dos backgrounds */
    .hero-content { position: relative; z-index: 2; }

    @media (max-width: 768px) {
        .hero-section::before,
        .hero-section::after { opacity: 0.08; }
        .hero-section::after { animation-duration: 10s; }
    }
    
    .obra-card-body,
    .blog-card-body {
        padding: 1rem;
    }
    
    .obra-card-title,
    .blog-card-title {
        font-size: 1.1rem;
    }
    
    .diferencial-card {
        padding: 1.25rem;
    }
    
    .filtro-obras {
        padding: 1.25rem 0.75rem;
    }
    
    .form-select,
    .form-control {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .obra-card-info {
        gap: 1rem;
    }
    
    .navbar-brand img {
        height: 32px;
    }
}

/* ============================================
   MELHORIAS DE PERFORMANCE
   ============================================ */

/* Otimização para imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remover animações em dispositivos com 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;
    }
}

/* Melhor renderização de texto */
body {
    text-rendering: optimizeLegibility;
}

/* Scroll suave apenas se o usuário não preferir movimento reduzido */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}