/* ======================================
   FONDOS DE SECCIÓN
====================================== */

.nosotros-bg {
    background-image: url("../img/hero/nosotros.jpg");
    background-color: #2c3e50;
}

.gin-bg {
    background-image: url("../img/hero/fondogin.jpg");
    background-color: #34495e;
}

.nosotros-bg::before,
.gin-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
}

.nosotros-bg .container,
.gin-bg .container {
    position: relative;
    z-index: 2;
}


/* ======================================
   NOSOTROS BOX
====================================== */

.nosotros-box {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(255,255,255,0.9);
    padding: 48px 56px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}


/* ======================================
   GIN GRID
====================================== */

.gin-grid {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

.gin-grid img {
    width: 100%;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.gin-grid img:hover {
    transform: translateY(-8px);
}


/* ======================================
   CONTACTO
====================================== */

.contact-social {
    background: #fff;
    padding: 48px 32px;
    border-radius: 12px;
    text-align: center;
}


/* ======================================
   BOTONES SOCIALES (BASE GLOBAL)
   CRÍTICO para iOS / Android
====================================== */

.social-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 24px;

    border-radius: 999px;

    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;

    text-decoration: none;
    color: #fff;

    cursor: pointer;

    -webkit-appearance: none;
    appearance: none;

    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* COLORES */

.social-btn.whatsapp {
    background-color: #25D366;
}

.social-btn.instagram {
    background: linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045);
}