/* Configuración General */
body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5; /* Gris claro de fondo para resaltar el blanco */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilo del Encabezado */
.interactive-header {
    background-color: #ffffff;
    padding: 50px 0;
    text-align: center;
    border-bottom: 3px solid #ffc107; /* Línea amarilla institucional */
}

.subtitle-green {
    color: #28a745;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.interactive-header h1 {
    color: #0a2a66;
    font-size: 2.5rem;
    margin: 0;
}

.interactive-header p {
    color: #666;
    margin-top: 10px;
}

/* Contenedor del Genially */
.genially-display {
    padding: 40px 0;
}

.card-frame {
    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Sombra suave */
}

/* Botón de navegación */
.navigation-footer {
    text-align: center;
    padding-bottom: 60px;
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0a2a66;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-back:hover {
    background-color: #ffc107;
    color: #0a2a66;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .interactive-header h1 {
        font-size: 1.8rem;
    }
}