:root {
    /* Cores principais */
    --color-primary: #003366; /* Substitua pelo azul exato da logo, se necessário */
    --color-text: #ffffff;
    --color-accent: #00a8ff; 
    --color-loader-bg: #001f3f; 
    
    /* Tipografia */
    --font-primary: 'Inter', sans-serif;
    
    /* Espaçamentos e transições */
    --spacing-base: 1rem;
    --spacing-large: 2rem;
    --transition-speed: 0.3s;
}

/* Reset & Boas Práticas */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-primary);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

/* Classe de acessibilidade (Screen Readers Only) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Estados de Foco (Acessibilidade exigida nas diretrizes) */
:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ------------------------
   Componente: Inline Loader
------------------------ */
.inline-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    min-height: 24px;
}

.inline-loader__dot {
    width: 14px;
    height: 14px;
    background-color: #011538;
    border: 2px solid var(--color-text);
    border-radius: 50%;
    animation: bounce 0.5s cubic-bezier(0.19, 0.57, 0.3, 0.98) infinite alternate;
}

.inline-loader__dot:nth-child(2) {
    animation-delay: 0.15s;
}

.inline-loader__dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes bounce {
    from { transform: translateY(0); opacity: 0.6; }
    to { transform: translateY(-10px); opacity: 1; }
}

/* ------------------------
   Componente: Em Construção
------------------------ */
.construction {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-large);
    animation: fadeIn 0.8s ease-out forwards;
}

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

/* Glassmorphism e estrutura moderna */
.construction__container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.construction__logo {
    max-width: 180px;
    height: auto;
    margin-bottom: var(--spacing-large);
    border-radius: 50%; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed) ease;
}

.construction__logo:hover {
    transform: scale(1.05);
}

.construction__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-wrap: balance;
}



/* ------------------------
   Componente: Social Links
------------------------ */
.social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.social-links__item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    text-decoration: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #011435;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-speed) ease;
}

/* Efeito de hover moderno e interativo */
.social-links__item:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--color-text);
    color: #011435;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.social-links__item i {
    font-size: 1.8rem;
}

.construction__cnpj {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 2rem;
    letter-spacing: 0.05em;
}

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