/* RESET GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #111;
    color: #fff;
}

/* ================= TITULO ================= */
.heading {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

/* ================= CONTROLES ================= */
.controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.controls .button {
    padding: .6rem 1.4rem;
    border: 1px solid #f39c12;
    cursor: pointer;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: .9rem;
    transition: .3s;
}

.controls .button.active,
.controls .button:hover {
    background: #f39c12;
    color: #000;
}

/* ================= GALERIA ================= */
.gallery {
    padding: 4rem 8%;
}

/* 4 columnas fijas en desktop */
.box-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: auto;
}

/* Ocultamos todas */
.box {
    display: none;
}

/* Por defecto mostramos BARES */
.box.bares {
    display: block;
}

/* ================= IMAGEN ================= */
.image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* cuadradas */
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.image:hover img {
    transform: scale(1.1);
}

/* ================= SHARE ================= */
.share {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    opacity: 0;
    transition: .3s ease;
}

.image:hover .share {
    opacity: 1;
}

.share a {
    color: #fff;
    font-size: 1.6rem;
    transition: .3s;
}

.share a:hover {
    color: #f39c12;
}


/*-------------------------------------------------------------*/


/* ================= SOBRE NOSOTROS ================= */
.nosotros-section {
    display: none;
    padding: 80px 20px;
    background: #0f0f0f;
}

.nosotros-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.nosotros-text {
    width: 50%;
    color: #fff;
}

.nosotros-text h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #f5c518;
}

.nosotros-text p {
    line-height: 1.8;
    color: #ddd;
}

.nosotros-image {
    width: 50%;
    display: flex;
    justify-content: center;
}

.nosotros-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .6);
}



/* SECCION NOSOTROS   FIN*/




/* ===== REDES FIJAS ===== */
.social-fixed {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    z-index: 5;
}

.social-fixed a {
    background: rgba(0, 0, 0, .6);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1rem;
    transition: .3s;
}

.social-fixed a:hover {
    background: #f39c12;
    color: #000;
}





/* ----------------------------------------------------------------- */



.info-section {
    padding: 80px 20px;
    background: #0f0f0f;
}

.info-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.info-container h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #f39c12;
}

.info-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 15px;
}

.info-contact {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

/* ================= SECCIONES OCULTAS ================= */
.contrataciones-section,
.talleres-section {
    display: none;
}



/* ----------------------------------------------------------------- */



/* FOOTER */
.footer {
    background: #000;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer .social {
    margin-bottom: 1rem;
}

.footer .social a {
    color: #fff;
    margin: 0 .6rem;
    font-size: 1.5rem;
}

.footer .social a:hover {
    color: #f39c12;
}

.footer span {
    color: #f39c12;
}





/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 1024px) {
    .box-container {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Sobre Nosotros */


@media (max-width: 768px) {
    .nosotros-container {
        flex-direction: column;
        text-align: center;
    }

    .nosotros-text h2 {
        font-size: 2rem;
    }

    .nosotros-image img {
        max-width: 100%;
    }


    .info-container h2 {
        font-size: 1.9rem;
    }

    .info-container p {
        font-size: .95rem;
    }


}


/* Celulares */
@media (max-width: 600px) {
    .box-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .heading {
        font-size: 1.7rem;
    }
}