/* Restablecer márgenes base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0f141c; /* Fondo general más oscuro */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Cajas contenedoras principales */
.content-box {
    background: #161d26;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid #232d3a;
}

.head-box {
    padding: 3rem 2rem;
    text-align: center;
}

.info-box {
    padding: 3rem 2.5rem;
    text-align: left;
}

/* Estilos del título principal (CVM) */
.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.letter-green {
    color: #22c55e;
    font-size: 3.5rem;
}

.letter-yellow {
    color: #eab308;
    font-size: 3.5rem;
}

.text-light {
    color: #cbd5e1;
    font-size: 1.8rem;
    font-weight: 400;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #2e3b4e, transparent);
    margin: 1.5rem 0;
}

.corporate-name {
    font-size: 1.3rem;
    color: #94a3b8;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Barra de carga */
.loading-bar {
    width: 100%;
    max-width: 250px;
    height: 3px;
    background-color: #232d3a;
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress {
    width: 35%;
    height: 100%;
    background-color: #22c55e;
    position: absolute;
    animation: loading 2.5s infinite ease-in-out;
}

@keyframes loading {
    0% { left: -35%; }
    50% { left: 100%; background-color: #eab308; }
    100% { left: -35%; background-color: #22c55e; }
}

/* Sección Informativa (Parte Inferior) */
.info-title {
    color: #eab308;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    text-align: center;
    border-bottom: 2px solid #232d3a;
    padding-bottom: 10px;
}

.info-subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

/* Grid de Requisitos y Procesos */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.card {
    background: #1c2430;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #22c55e;
}

.card h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.card ul, .card ol {
    padding-left: 1.2rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.card li, .card p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.card strong {
    color: #e2e8f0;
}

/* Sección de Beneficios */
.benefits-section {
    background: #1c2430;
    padding: 1.75rem;
    border-radius: 8px;
    border-top: 3px solid #eab308;
    margin-bottom: 2.5rem;
}

.benefits-section h4 {
    color: #eab308;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}

.benefit-item {
    background: #161d26;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.benefit-item strong {
    display: block;
    color: #22c55e;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Área de Descarga del PDF */
.download-section {
    text-align: center;
    background: rgba(34, 197, 94, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px dashed #22c55e;
}

.download-section p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.btn-download {
    display: inline-block;
    background-color: #22c55e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-download:hover {
    background-color: #16a34a;
    transform: translateY(-1px);
}

.btn-download:active {
    transform: translateY(1px);
}

/* Diseño Adaptativo para Teléfonos */
@media (max-width: 768px) {
    body {
        padding: 1rem 0.5rem;
    }
    .info-box {
        padding: 2rem 1.25rem;
    }
    .main-title {
        font-size: 1.8rem;
    }
    .letter-green, .letter-yellow {
        font-size: 2.5rem;
    }
    .text-light {
        font-size: 1.3rem;
    }
    .info-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
    .btn-download {
        width: 100%;
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
}