/* ==========================================================================
   ESTILOS EXCLUSIVOS PARA LA PÁGINA DE EXPERIENCIAS
   ========================================================================== */

/* SEPARADOR DE SECCIONES (TÍTULOS) */
.section-title-wrap { 
    text-align: center; 
    margin-bottom: 40px; 
    position: relative; 
}
.section-title-wrap h2 { 
    font-family: 'Playfair Display', serif; 
    color: var(--navy, #16325B); 
    font-size: 2.5rem; 
    position: relative; 
    display: inline-block; 
    padding-bottom: 15px; 
    margin-bottom: 0; 
}
.section-title-wrap h2::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 80px; 
    height: 4px; 
    background-color: var(--gold, #F5A623); 
    border-radius: 2px; 
}

/* INTRODUCCIÓN */
.exp-intro { 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto;  
    padding: 0 20px; 
    position: relative; 
    z-index: 10; 
}
.exp-intro p { 
    color: #555; 
    font-size: 1.1rem; 
    line-height: 1.8; 
}

/* LAYOUT ZIG-ZAG (IMAGEN Y TEXTO INTERCALADOS) */
.exp-container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 20px; 
}
.exp-row { 
    display: flex; 
    flex-wrap: wrap; 
    align-items: stretch; 
    gap: 40px; 
    margin-bottom: 80px; 
}
/* Magia del Zig-Zag: Las filas pares invierten el orden */
.exp-row:nth-child(even) { 
    flex-direction: row-reverse; 
}

.exp-image-col { 
    flex: 1; 
    min-width: 300px; 
    display: flex; 
}
.exp-image-col img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 20px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); 
    transition: transform 0.4s ease; 
}
.exp-image-col img:hover { 
    transform: translateY(-5px); 
}

.exp-text-col { 
    flex: 1; 
    min-width: 300px; 
    background-color: #ffffff; 
    padding: 40px; 
    border-radius: 20px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.06); 
    border: 1px solid #eaeaea; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}
.exp-text-col h3 { 
    font-family: 'Playfair Display', serif; 
    color: var(--navy, #16325B); 
    margin-bottom: 20px; 
    font-size: 2rem; 
}
.exp-text-col p { 
    color: #666; 
    font-size: 1.05rem; 
    line-height: 1.7; 
    margin-bottom: 25px; 
}

/* LISTA DE ÍTEMS CON CHECK DORADO */
.exp-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.exp-list li { 
    position: relative; 
    padding-left: 30px; 
    margin-bottom: 15px; 
    color: #555; 
    font-size: 0.95rem; 
}
.exp-list li::before { 
    content: '\f00c'; 
    font-family: 'Font Awesome 6 Free'; 
    font-weight: 900; 
    position: absolute; 
    left: 0; 
    top: 2px; 
    color: var(--gold, #F5A623); 
    font-size: 1.1rem; 
}

/* CALL TO ACTION (CTA) FINAL */
.exp-cta-section { 
    background-color: #ffffff; 
    border-radius: 20px; 
    padding: 60px 40px; 
    text-align: center; 
    max-width: 1000px; 
    margin: 0 auto; 
    border: 1px solid #eaeaea; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.06); 
    position: relative; 
    z-index: 2; 
    border-top: 5px solid var(--gold, #F5A623); 
}
.exp-cta-section h3 { 
    color: var(--navy, #16325B); 
    font-family: 'Playfair Display', serif; 
    margin-bottom: 20px; 
    font-size: 2.2rem; 
}

.cta-button { 
    display: inline-block; 
    background-color: var(--gold, #F5A623); 
    color: #fff; 
    padding: 15px 40px; 
    border-radius: 50px; 
    font-weight: bold; 
    font-size: 1.1rem; 
    text-decoration: none; 
    transition: all 0.3s; 
    margin-top: 20px; 
}
.cta-button:hover { 
    background-color: #e09612; 
    transform: translateY(-3px); 
    color: #fff; 
    box-shadow: 0 10px 20px rgba(245,166,35,0.3); 
}

/* RESPONSIVE MÓVIL */
@media (max-width: 768px) {
    .exp-row, .exp-row:nth-child(even) { 
        flex-direction: column; 
        gap: 30px; 
        margin-bottom: 60px; 
    }
    .exp-image-col img { height: 300px; }
    .exp-text-col { padding: 30px 20px; }
    .exp-text-col h3 { font-size: 1.6rem; }
}

.exp-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch !important; 
}
.exp-image-col {
    position: relative; /* <-- CLAVE: Actúa como contenedor de referencia */
    min-height: 350px; /* Altura mínima por defecto */
    /* width: 50%; (O la clase que estés usando en tu CSS principal para darle ancho) */
}
.exp-image-col img {
    position: absolute; /* <-- CLAVE: Saca la foto del flujo para que no estire la columna por lo alto */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover !important; 
    border-radius: 12px; /* (Opcional) Para mantener esos bordes redondeados que se ven en tu foto */
}
