/* --- Estilos de la Página de Bienvenida del Directorio --- */

.repae-landing-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* 1. Sección Héroe */
.repae-hero {
    background-color: #f4f4f4;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
}

.repae-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px 0;
}

.repae-hero .repae-hero-subtitle {
    font-size: 20px;
    color: #555;
    margin: 0;
}

/* 2. Contenido en Rejilla */
.repae-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Columna de contenido más ancha */
    gap: 30px;
}

.repae-content-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    border: 1px solid #eee;
}

.repae-content-box h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.repae-content-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Caja de CTA (para socios) */
.repae-content-box.cta-box {
    background-color: #fdfdfd;
    border-color: #e0e0e0;
}

/* 3. Botones de Acción (CTA) */
.repae-cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

/* Botón Primario (rojo) */
.repae-cta-button.primary {
    background-color: #d9534f; /* Color REPAE */
    color: #ffffff;
    border: 1px solid #d9534f;
}
.repae-cta-button.primary:hover {
    background-color: #c9302c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Botón Secundario (borde rojo) */
.repae-cta-button.secondary {
    background-color: #ffffff;
    color: #d9534f;
    border: 1px solid #d9534f;
}
.repae-cta-button.secondary:hover {
    background-color: #d9534f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


/* 4. Diseño Responsivo (Móviles) */
@media (max-width: 768px) {
    .repae-content-grid {
        grid-template-columns: 1fr; /* Apila las columnas */
    }
    
    .repae-hero {
        padding: 40px 20px;
    }

    .repae-hero h1 {
        font-size: 28px;
    }
    
    .repae-hero .repae-hero-subtitle {
        font-size: 18px;
    }
}