.main-presentation {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--foundation-colores-fondo-fondo-500);
}

/* Cabecera */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.app-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

.btn-login-header {
    padding: 8px 20px;
    background-color: #1e1e1e;
    color: #00f2ff;
    /* Turquesa */
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #333;
    font-weight: bold;
}

/* Sección Central */
.hero-selection {
    text-align: center;
}

.main-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 800;
}

.tagline {
    color: #00f2ff;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Grid de las dos opciones (Ilustración + Texto en paralelo) */
.selection-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
}

.selection-option {
    display: flex;
    align-items: center;
    /* Centrado vertical de ilustración y texto */
    gap: 30px;
    flex: 1;
    max-width: 550px;
}

.option-visual {
    flex: 0 0 160px;
    /* Ancho fijo para la ilustración */
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.option-content {
    text-align: left;
    flex: 1;
}


.option-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.subtitle-option {
    color: #00f2ff;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.description-option {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Botones con los colores exactos de Figma */
.btn-selection {
    display: inline-block;
    padding: 10px 25px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
}

.btn-red {
    background-color: #ca3a3a;
    /* Rojo oscuro de tu Figma */
}

.btn-gold {
    background-color: #ca9d3a;
    /* Dorado oscuro de tu Figma */
}

/* Resumen LOPD (Abajo) */
.lopd-summary {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 5px;
    color: #aaa;
    font-size: 0.75rem;
    line-height: 1.4;
    text-align: left;
    margin-top: 40px;
    display: inline-block;
    max-width: 600px;
}

@media (max-width: 780px) {
    .selection-grid {
        display: flex;
        flex-direction: column;
        /* O 'column' */
        justify-content: center;
        /* Alineación horizontal */
        align-items: center;
        /* Alineación vertical */
        gap: 50px;
        /* Espaciado entre elementos */
    }

    .selection-option {
        display: flex;
        flex-direction: column;
        /* O 'column' */
        justify-content: center;
        /* Alineación horizontal */
        align-items: center;
        /* Alineación vertical */
        gap: 50px;
        /* Espaciado entre elementos */
    }
}