body{
    font-family:Arial, Helvetica, sans-serif;
    background-image:url("/panamericana/img/bg-white-3.png");
    background-repeat:repeat;
    background-position:top left;
}
.social-icons{
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 11px;
}
:root {
    --color-corp:      #902223;  /* ← cambia solo aquí */
    --color-corp-dark: #7a1b1c;
    --color-titulo:    #1a1a2e;
    --color-biz:       #2d3a5c;
}
.social-btn{
    width:37px;
    height:37px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#fff;
    text-decoration:none;
    transition:.3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* COLORES */
.facebook{
    background:#1877f2;
}

.instagram{
    background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

.tiktok{
    background:#000;
}

/* HOVER */
.social-btn:hover{
    transform:translateY(-6px) scale(1.08);
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}


.creaditos {
    justify-content: center;
    display: flex;
    align-items: center;
}

.footer-img, .footer-conten{
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 10px;
}

.footer-conten{
       font-size:15px;
    margin-bottom:12px;
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-icon{
    color:#810827;
    min-width:18px;
    font-size:16px;
}


.slide .caption h1 {
    font-size: 38px;
    font-weight: 900;
}
.slide .caption p{
    font-size: 22px;
    font-weight: 600;
}

.maya-img{
    width: 100%;
    height: auto;
}

/* ===== PAGINA NOSOTROS (sin tocar clases maya) ===== */

.main.nosotros-page{
    max-width:1200px;
    margin:auto;
    padding:60px 30px;
}

/* TITULO */
.nosotros-title{
    font-size:46px;
    text-align:center;
    color:#111;
    margin-bottom:18px;
    font-weight:700;
}

.nosotros-title::after{
    content:'';
    display:block;
    width:80px;
    height:4px;
    margin:14px auto 0;
    border-radius:20px;
    background:#d4af37;
}

/* INTRO */
.nosotros-intro{
    max-width:900px;
    margin:0 auto 55px;
    text-align:center;
    font-size:18px;
    line-height:1.8;
    color:#5a5a5a;
}

/* BLOQUES */
.nosotros-section{
    background:#fff;
    border-radius:24px;
    padding:38px;
    margin-bottom:45px;
    box-shadow:0 14px 35px rgba(0,0,0,.06);
}

/* CONTENIDO TEXTO */
.nosotros-content h2{
    font-size:30px;
    color:#111;
    margin-bottom:14px;
    font-weight:700;
}

.nosotros-content h2::after{
    content:'';
    display:block;
    width:60px;
    height:3px;
    background:#d4af37;
    margin-top:10px;
    border-radius:10px;
}

.nosotros-content p{
    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-top:18px;
}

/* IMAGENES CONTROLADAS */
.nosotros-image{
    width: 100%;
    height: auto;
    text-align:center;
}

.nosotros-image img{
    width:100%;
    max-width:340px;   /* reducido */
    height:auto;
    border-radius:18px;
    box-shadow:0 15px 30px rgba(0,0,0,.10);
    object-fit:cover;
    transition:.35s ease;
}

.nosotros-image img:hover{
    transform:translateY(-4px);
}

/* ESPACIADO INTERNO EN COLUMNAS */
.nosotros-content,
.nosotros-image{
    padding:10px 20px;
}

/* RESPONSIVE */
@media(max-width:900px){

    .main.nosotros-page{
        padding:45px 18px;
    }

    .nosotros-title{
        font-size:36px;
    }

    .nosotros-intro{
        font-size:16px;
        margin-bottom:35px;
    }

    .nosotros-section{
        padding:24px;
    }

    .nosotros-content h2{
        font-size:26px;
    }

    .nosotros-image img{
        max-width:260px;
        margin-top:20px;
    }
}