/* GENERAL */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Jost", sans-serif;
    color: #05380b;
    background-color: #F2CCCB;
    padding-top: 70px;
}

/* NAVBAR */
.menu-principal {
    background-color: #F2CCCB;
    box-shadow: 0 4px 10px rgb(82, 82, 82);
    padding: 0;
}

.logo-nav {
    width: 55px;
}

.nav-link {
    color: black;
    font-size: 15px;
    padding: 18px 24px !important;
}

.nav-link.active,
.nav-link:hover {
    color: #e71f46 !important;
}

.nav-link.active {
    font-size: 20px;
}

.redes-nav .nav-link {
    color: #e71f46;
    font-weight: bold;
    font-size: 20px;

}

.redes-nav .nav-link,
.redes-footer a {
    display: inline-block;
    position: relative;
    z-index: 10000;
    cursor: pointer;
}

/*PÁGINA XOCO*/

/* HERO */
.xoco-hero {
    background-color: white;
}

.xoco-hero-img {
    position: relative;
    height: 620px;
    overflow: hidden;
}

.xoco-hero-img>img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Logo encima del fondo */
.xoco-logo-hero {
    position: absolute;
    width: 430px;
    max-width: 65%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.35));
}

/* SEPARADOR DE TRIÁNGULOS */
.xoco-separador {
    height: 55px;
    background-image: url("../imagenes/xoco/division-vino.webp");
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center;
    background-color: white;
}

/* DESCRIPCIÓN */
.xoco-descripcion {
    background-color: white;
    padding: 70px 0;
}

.xoco-descripcion h1 {
    font-family: "Caveat Brush", cursive;
    color: #05380b;
    font-size: 42px;
    margin-bottom: 25px;
}

.xoco-descripcion p {
    color: #05380b;
    font-size: 17px;
    line-height: 1.7;
    max-width: 1180px;
    margin: 0 auto 12px;
}

/* PALETA */
.xoco-paleta {
    background-color: white;
}

.color-box {
    min-height: 230px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.color-box span {
    font-size: 16px;
    font-weight: bold;
}

.color-vino {
    background-color: #4c0c0f;
    color: white;
}

.color-dorado {
    background-color: #d9b130;
    color: white;
}

.color-verde {
    background-color: #26381e;
    color: white;
}

.color-crema {
    background-color: #fffaf0;
    color: #26381e;
}

/* BOTELLAS */
.xoco-botellas {
    background-color: white;
    padding: 0 0 35px;
}

.xoco-botellas img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

/* CAJAS */
.xoco-cajas {
    background-color: white;
    padding: 40px 0 85px;
}

.caja-xoco {
    max-height: 480px;
    object-fit: contain;
}

/* ANIMACIÓN SUAVE */
.xoco-hero-img,
.xoco-descripcion,
.color-box,
.xoco-botellas img,
.caja-xoco {
    animation: aparecerXoco .8s ease both;
}

/* FOOTER */
.footer-principal {
    background-color: #F2CCCB;
    padding: 55px 0;
}

.footer-principal h2 {
    font-family: "Caveat Brush", cursive;
    color: #05380b;
    font-size: 48px;
    margin-bottom: 0;
}

.logo-footer {
    width: 80px;
    display: block;
    margin: 0 auto;
}

.footer-principal p {
    color: black;
    font-size: 20px;
    margin-bottom: 8px;
}

.redes-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

.redes-footer a {
    color: #e71f46;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    display: inline-block;
}

@keyframes aparecerXoco {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE XOCO */
@media (max-width: 991.98px) {

    .xoco-hero-img {
        height: 520px;
    }

    .xoco-logo-hero {
        width: 360px;
    }

    .xoco-descripcion {
        padding: 60px 25px;
    }

    .xoco-descripcion h1 {
        font-size: 38px;
    }

    .xoco-descripcion p {
        font-size: 16px;
    }

    .color-box {
        min-height: 190px;
    }

    .xoco-botellas img {
        height: 360px;
    }
}

@media (max-width: 767.98px) {

    .xoco-hero-img {
        height: 420px;
    }

    .xoco-logo-hero {
        width: 280px;
        max-width: 78%;
    }

    .xoco-descripcion {
        padding: 50px 20px;
    }

    .xoco-descripcion h1 {
        font-size: 34px;
    }

    .xoco-descripcion p {
        font-size: 15px;
        line-height: 1.6;
    }

    .color-box {
        min-height: 150px;
    }

    .xoco-botellas {
        padding-bottom: 20px;
    }

    .xoco-botellas img {
        height: auto;
    }

    .xoco-cajas {
        padding: 35px 20px 70px;
    }

    .caja-xoco {
        max-height: 380px;
    }

    .footer-principal {
        text-align: center;
    }

    .footer-principal .row {
        text-align: center;
    }

    .footer-principal .text-md-start,
    .footer-principal .text-md-end {
        text-align: center !important;
    }

    .redes-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 22px;
        margin-top: 10px;
    }

    .redes-footer a {
        margin: 0;
    }
}