/* ===== HERO SECTION - SOLO TÍTULO Y FRASE ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Overlay oscuro para legibilidad */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 83, 116, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 6px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.subhead {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    color: #d0da89;
    letter-spacing: 1px;
}

/* ===== CONTENEDOR PRINCIPAL (2 COLUMNAS: TEXTO + IMAGEN) ===== */
.info-container {
    max-width: 1300px;
    margin: 6rem auto;
}

/* Grid de dos columnas */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 25px 45px -12px rgba(9, 83, 116, 0.2);
}

/* Lado izquierdo - contenido de texto */
.info-left {
    padding: 3rem;
}

.razon-tag {
    display: inline-block;
    background: #b0bf3e;
    color: #2d2f2f;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.razon-titulo {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #095374;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.razon-descripcion {
    color: #434444;
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: justify;
}

/* Subtítulo de capacidades */
.capacidades-titulo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #095374;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.capacidades-titulo i {
    color: #b0bf3e;
    font-size: 1.2rem;
}

/* Lista de 5 capacidades */
.capacidades-lista {
    font-size: 1.3px;
    list-style: none;
    margin-bottom: 2rem;
}

.capacidad-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.capacidad-item i {
    width: 36px;
    height: 36px;
    background: #095374;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.capacidad-item span {
    color: #434444;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
}

.capacidad-item span strong {
    color: #095374;
    font-weight: 700;
}

/* Botón */
.btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #095374;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
}

.btn-more i {
    font-size: 0.9rem;
    transition: transform 0.25s;
}

.btn-more:hover {
    background: #b0bf3e;
    color: #2d2f2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176, 191, 62, 0.3);
}

.btn-more:hover i {
    transform: translateX(4px);
    color: #2d2f2f;
}

.external-note {
    margin-top: 1rem;
    font-size: 0.7rem;
    color: #6c757d;
}

.external-note i {
    color: #b0bf3e;
    margin-right: 5px;
}

/* ===== LADO DERECHO - IMAGEN QUE OCUPA TODO EL CONTENEDOR ===== */
.info-right {
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background-color: transparent;
}

.info-right picture {
    width: 100%;
    display: flex;
}

.info-right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ===== ESCRITORIO (pantallas grandes) ===== */
@media (min-width: 1025px) {
    .info-right {
        min-height: 100%;
    }
    
    .info-right img {
        object-fit: cover;
        object-position: center;
    }
}

/* ===== TABLET Y MÓVIL (pantallas hasta 1024px) ===== */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .info-left {
        order: 2;
        padding: 2rem;
    }
    
    .info-right {
        order: 1;
        min-height: auto;
        padding: 0;
    }
    
    .info-right img {
        height: auto;
        object-fit: cover;
    }
}

/* ===== AJUSTES ADICIONALES PARA MÓVILES ===== */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 400px;
        height: 50vh;
    }

    .info-container {
        margin: 2rem auto;
    }

    .info-left {
        padding: 1.5rem;
    }

    .razon-titulo {
        font-size: 1.4rem;
    }

    .razon-descripcion {
        font-size: 1rem;
    }

    .capacidad-item span {
        font-size: 0.8rem;
    }

    .capacidad-item i {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .btn-more {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 350px;
        height: 40vh;
    }
    
    .info-left {
        padding: 1.2rem;
    }

    .razon-titulo {
        font-size: 1.2rem;
    }

    .capacidades-titulo {
        font-size: 1rem;
    }
}