/* RESET + BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8f9fa;
    overflow-x: hidden;
    line-height: 1.6;
}

/* CONTAINER PRINCIPAL */
.container {
    background: linear-gradient(135deg, #007FFF 0%, #0066CC 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 15px;
}

/* CARD DE CONTEÚDO */
.content-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 2px solid #007FFF;
    position: relative;
}

/* LOGO */
.logo {
    max-width: 200px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* TIPOGRAFIA */
.title {
    font-family: 'GellixBold', 'Roboto', sans-serif;
    font-size: 32px;
    color: #007FFF;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.subtitle {
    font-family: 'GellixMedium', 'Roboto', sans-serif;
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

/* SEÇÕES DE CONTEÚDO */
.content-section {
    margin: 30px 0;
    text-align: left;
}

.content-section h2 {
    font-family: 'GellixSemiBold', 'Roboto', sans-serif;
    font-size: 24px;
    color: #007FFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-section p {
    font-family: 'GellixRegular', 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-section strong {
    color: #007FFF;
    font-weight: 600;
}

/* TIMELINE */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #007FFF;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.timeline-year {
    font-family: 'GellixBold', 'Roboto', sans-serif;
    font-size: 18px;
    color: #007FFF;
    min-width: 60px;
    font-weight: bold;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-family: 'GellixSemiBold', 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* GRID DE ESTATÍSTICAS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, #007FFF, #0066CC);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 127, 255, 0.3);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 127, 255, 0.4);
}

.stat-number {
    font-family: 'GellixBold', 'Roboto', sans-serif;
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: bold;
}

.stat-label {
    font-family: 'GellixMedium', 'Roboto', sans-serif;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* SEÇÃO CTA */
.cta-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 1px solid #dee2e6;
}

.cta-section h2 {
    font-family: 'GellixSemiBold', 'Roboto', sans-serif;
    font-size: 24px;
    color: #007FFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #007FFF, #0066CC);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'GellixSemiBold', 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 127, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 127, 255, 0.4);
    text-decoration: none;
    color: white;
}

.cta-button .material-symbols-outlined {
    font-size: 20px;
}

/* FOOTER */
.footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.footer p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
    line-height: 1.4;
}

.footer a {
    color: #007FFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    text-decoration: underline;
    color: #0066CC;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .container {
        padding: 15px 10px;
    }

    .content-card {
        padding: 25px;
        margin: 10px;
        border-radius: 15px;
    }

    .logo {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .content-section {
        margin: 25px 0;
    }

    .content-section h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .content-section p {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .timeline-year {
        min-width: auto;
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .cta-section {
        padding: 25px;
        margin: 30px 0;
    }

    .cta-section h2 {
        font-size: 20px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 15px;
    }

    .footer {
        padding: 15px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .content-card {
        padding: 20px;
        margin: 5px;
    }

    .title {
        font-size: 20px;
    }

    .subtitle {
        font-size: 14px;
    }

    .content-section h2 {
        font-size: 18px;
    }

    .content-section p {
        font-size: 14px;
    }

    .timeline-item {
        padding: 12px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .cta-section {
        padding: 20px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ANIMAÇÕES SUAVES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    animation: fadeInUp 0.8s ease-out;
}

/* MELHORIAS DE ACESSIBILIDADE */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* FOCO PARA NAVEGAÇÃO POR TECLADO */
.cta-button:focus {
    outline: 2px solid #007FFF;
    outline-offset: 2px;
}

a:focus {
    outline: 2px solid #007FFF;
    outline-offset: 1px;
}
