/* 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 DULCIPLAS*/

/* HERO */
.dulciplas-hero {
    background-color: #F2CCCB;
    padding: 120px 20px 70px;
}

.dulciplas-hero h1 {
    font-family: "Caveat Brush", cursive;
    color: #05380b;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.dulciplas-hero p {
    color: #05380b;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}

/* MOCKUP PRINCIPAL */
.dulciplas-mockup {
    background-color: #ffffff;
}

.dulciplas-mockup-img {
    width: 100%;
    display: block;
}

/* PALETA */
.dulciplas-paleta {
    background-color: #ffffff;
}

.dulciplas-color {
    min-height: 155px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.dulciplas-color span {
    color: white;
    font-size: 15px;
    font-weight: bold;
}

/* Colores */
.color-azul-claro {
    background-color: #5AB7D7;
}

.color-azul-medio {
    background-color: #4E91C2;
}

.color-azul-oscuro {
    background-color: #343F7A;
}

.color-rojo-dulciplas {
    background-color: #D83251;
}

.color-naranja-dulciplas {
    background-color: #E8754A;
}

.color-amarillo-dulciplas {
    background-color: #F6E600;
}

.color-amarillo-dulciplas span {
    color: #05380b;
}

.color-verde-dulciplas {
    background-color: #50A25A;
}

/* DESCRIPCIÓN */
.dulciplas-descripcion {
    background-color: white;
    padding: 45px 20px;
}

.dulciplas-descripcion h2 {
    font-family: "Caveat Brush", cursive;
    color: #05380b;
    font-size: 36px;
    margin-bottom: 20px;
}

.dulciplas-descripcion p {
    color: #05380b;
    font-size: 16px;
    line-height: 1.7;
    max-width: 1100px;
    margin: 0 auto;
}

/* SECCIONES WEB */
.dulciplas-web {
    background-color: #5AB7D7;
}

.dulciplas-web-principal {
    padding: 70px 0 45px;
}

.dulciplas-web-secundario {
    padding: 0 0 80px;
}

.dulciplas-web-img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .20));
}

/* ANIMACIÓN */
.dulciplas-hero,
.dulciplas-mockup-img,
.dulciplas-color,
.dulciplas-descripcion,
.dulciplas-web-img {
    animation: aparecerDulciplas .8s ease both;
}

@keyframes aparecerDulciplas {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 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 DULCIPLAS */
@media (max-width: 991.98px) {

    .dulciplas-hero {
        padding: 100px 20px 60px;
    }

    .dulciplas-hero h1 {
        font-size: 44px;
    }

    .dulciplas-color {
        min-height: 135px;
    }

    .dulciplas-descripcion {
        padding: 40px 20px;
    }

    .dulciplas-descripcion h2 {
        font-size: 32px;
    }

    .dulciplas-descripcion p {
        font-size: 15px;
    }

    .dulciplas-web-principal {
        padding: 55px 20px 35px;
    }

    .dulciplas-web-secundario {
        padding: 0 20px 65px;
    }
}

@media (max-width: 767.98px) {

    .dulciplas-hero {
        padding: 85px 20px 50px;
    }

    .dulciplas-hero h1 {
        font-size: 36px;
    }

    .dulciplas-hero p {
        font-size: 15px;
    }

    .dulciplas-color {
        min-height: 115px;
    }

    .dulciplas-descripcion h2 {
        font-size: 30px;
    }

    .dulciplas-descripcion p {
        font-size: 15px;
        line-height: 1.6;
    }

    .dulciplas-web-principal {
        padding: 45px 20px 30px;
    }

    .dulciplas-web-secundario {
        padding: 0 20px 55px;
    }

    .dulciplas-web-img {
        max-width: 420px;
        margin: 0 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;
    }
}