/* ===================================
   HERO SOBRE NOSOTROS
=================================== */
.sn-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.sn-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.sn-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.6)
    );
    z-index: 2;
}

.sn-hero .hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.sn-hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,.7);
}


.sn-hero p {
    font-size: 1.3rem;
    max-width: 750px;
    text-shadow: 1px 1px 4px rgba(0,0,0,.7);
}

/* ===================================
   HISTORIA / QUIÉNES SOMOS
=================================== */
.sn-historia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 90px 10%;
    align-items: center;
    background: #fff;
}

.sn-historia h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
    background-color: #f5f0df;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 14px;
}

.sn-historia p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.sn-historia img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* ===================================
   MISIÓN - VISIÓN - VALORES
=================================== */
.sn-valores {
    background: #f8f8f8;
    padding: 90px 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.sn-valores .valor {
    background: #fff;
    padding: 40px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.sn-valores .valor:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,.12);
}

.sn-valores i {
    font-size: 3rem;
    color: #c49a3a; /* dorado andino */
    margin-bottom: 20px;
}

.sn-valores h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.sn-valores p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* ===================================
   EQUIPO – TEXTO + IMAGEN
=================================== */
.sn-equipo {
    padding: 90px 10%;
    background: #fff;
}

.sn-equipo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXTO */
.sn-equipo-texto h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
    background-color: #f5f0df;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 14px;
}

.sn-equipo-texto p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

/* IMAGEN */
.sn-equipo-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}


/* ===================================
   TURISMO RESPONSABLE
=================================== */
.sn-responsable {
    background: #f5f5f5;
    padding: 90px 10%;
    text-align: center;
}

.sn-responsable h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #000;
    background-color: #f5f0df;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 14px;
}

.sn-responsable ul {
    max-width: 700px;
    margin: auto;
    list-style: none;
}

.sn-responsable li {
    font-size: 1.1rem;
    padding: 12px 0;
    color: #333;
}

/* ===================================
   DIFERENCIAL
=================================== */
.sn-diferencial {
    padding: 90px 10%;
    background: #fff;
    text-align: center;
}

.sn-diferencial h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #000;
    background-color: #f5f0df;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 14px;
}

.sn-diferencial .beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.sn-diferencial span {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 14px;
    font-size: 1.05rem;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}


/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 992px) {

    /* HISTORIA */
    .sn-historia {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* VALORES */
    .sn-valores {
        grid-template-columns: 1fr;
    }

    /* EQUIPO */
    .sn-equipo-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sn-equipo-img img {
        max-width: 500px;
        margin: 30px auto 0;
    }
}

@media (max-width: 768px) {

    /* HERO */
    .sn-hero h1 {
        font-size: 2.6rem;
    }

    .sn-hero p {
        font-size: 1.1rem;
    }

    /* AJUSTE ESPACIADOS */
    .sn-historia,
    .sn-equipo,
    .sn-valores,
    .sn-responsable,
    .sn-diferencial {
        padding: 70px 6%;
    }
}