/* 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 KANAN*/

/* HERO */
.kanan-hero {
    background-color: white;
}

.kanan-hero-img {
    position: relative;
    height: 620px;
    overflow: hidden;
}

.kanan-hero-img>img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* LOGO SOBRE EL FONDO */
.kanan-logo-hero {
    position: absolute;
    width: 430px;
    max-width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, .35));
}

/* DESCRIPCIÓN */
.kanan-descripcion {
    background-color: white;
    padding: 70px 20px;
}

.kanan-descripcion h1 {
    font-family: "Caveat Brush", cursive;
    color: #05380b;
    font-size: 42px;
    margin-bottom: 25px;
}

.kanan-descripcion p {
    color: #05380b;
    font-size: 17px;
    line-height: 1.7;
    max-width: 1180px;
    margin: 0 auto;
}

/* PALETA */
.kanan-paleta {
    background-color: white;
}

.kanan-color {
    min-height: 220px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.kanan-color span {
    font-size: 15px;
    font-weight: bold;
}

.color-kanan-azul-oscuro {
    background-color: #2a376c;
    color: white;
}

.color-kanan-azul {
    background-color: #397bc1;
    color: white;
}

.color-kanan-negro {
    background-color: #1d1d1d;
    color: white;
}

.color-kanan-blanco {
    background-color: white;
    color: #05380b;
}

/* PRODUCTOS */
.kanan-productos {
    background-color: white;
}

.kanan-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.kanan-gel-row {
    width: 100%;
    display: block;
    background-color: #d9f4df;
}

.kanan-img-alta {
    height: 650px;
    object-fit: cover;
}

/* FINAL */
.kanan-final {
    background-color: #d9f4df;
}

.kanan-final-img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

/* ANIMACIÓN */
.kanan-hero-img,
.kanan-descripcion,
.kanan-color,
.kanan-img,
.kanan-final-img {
    animation: aparecerKanan .8s ease both;
}

@keyframes aparecerKanan {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HOVER SUAVE */
.kanan-img,
.kanan-final-img {
    transition: transform .35s ease, filter .35s ease;
}

.kanan-img:hover,
.kanan-final-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 12px 14px rgba(0, 0, 0, .22));
}

/* 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;
}

/* RESPONSIVE KANAN */
@media (max-width: 991.98px) {

    .kanan-hero-img {
        height: 520px;
    }

    .kanan-logo-hero {
        width: 350px;
    }

    .kanan-descripcion {
        padding: 60px 25px;
    }

    .kanan-descripcion h1 {
        font-size: 38px;
    }

    .kanan-descripcion p {
        font-size: 16px;
    }

    .kanan-color {
        min-height: 180px;
    }

    .kanan-img {
        height: 430px;
    }

    .kanan-img-alta {
        height: 520px;
    }

    .kanan-final-img {
        height: 370px;
    }
}

@media (max-width: 767.98px) {

    .kanan-hero-img {
        height: 420px;
    }

    .kanan-logo-hero {
        width: 290px;
        max-width: 78%;
    }

    .kanan-descripcion {
        padding: 50px 20px;
    }

    .kanan-descripcion h1 {
        font-size: 34px;
    }

    .kanan-descripcion p {
        font-size: 15px;
        line-height: 1.6;
    }

    .kanan-color {
        min-height: 140px;
    }

    .kanan-img,
    .kanan-img-alta,
    .kanan-final-img {
        height: auto;
    }

    .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;
    }
}