/* 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 TRADICIÓN DE LOS ALTOS*/

/* HERO */
.tdla-hero {
    background-color: #F2CCCB;
    padding: 120px 20px 70px;
}

.tdla-hero h1 {
    font-family: "Caveat Brush", cursive;
    color: #05380b;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.tdla-hero p {
    color: #05380b;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}

/* LOGO */
.tdla-logo-section {
    background-color: #e6aa25;
    padding: 50px 20px;
}

.tdla-logo {
    width: 390px;
    max-width: 85%;
    filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .20));
}

/* BROCHURE */
.tdla-brochure {
    background-color: white;
}

.tdla-fondo-lateral {
    min-height: 520px;
    background-image: url("../imagenes/tdla/fondo1-tdla.webp");
    background-size: cover;
    background-position: center;
}

.tdla-brochure-contenido {
    min-height: 520px;
    background-image: url("../imagenes/tdla/fondo1-tdla.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tdla-img-brochure {
    width: 72%;
    max-width: 850px;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .28));
}

/* TRÍPTICO */
.tdla-trip {
    background-image: url("../imagenes/tdla/fondo2-tdla.webp");
    background-size: cover;
    background-position: center;
    padding: 70px 0;
}

.tdla-img-trip {
    width: 70%;
    max-width: 850px;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .28));
}

/* TOTE */
.tdla-tote {
    background-color: #e8eeea;
    padding: 80px 0 90px;
}

.tdla-img-tote {
    width: 55%;
    max-width: 720px;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .18));
}

/* ANIMACIÓN */
.tdla-hero,
.tdla-logo,
.tdla-img-brochure,
.tdla-img-trip,
.tdla-img-tote {
    animation: aparecerTdla .8s ease both;
}

@keyframes aparecerTdla {
    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 TDLA */
@media (max-width: 991.98px) {

    .tdla-hero {
        padding: 100px 20px 60px;
    }

    .tdla-hero h1 {
        font-size: 44px;
    }

    .tdla-logo {
        width: 320px;
    }

    .tdla-fondo-lateral {
        display: none;
    }

    .tdla-brochure-contenido {
        min-height: 460px;
    }

    .tdla-img-brochure {
        width: 82%;
    }

    .tdla-img-trip {
        width: 82%;
    }

    .tdla-img-tote {
        width: 70%;
    }
}

@media (max-width: 767.98px) {

    .tdla-hero {
        padding: 85px 20px 50px;
    }

    .tdla-hero h1 {
        font-size: 34px;
    }

    .tdla-hero p {
        font-size: 15px;
    }

    .tdla-logo-section {
        padding: 40px 20px;
    }

    .tdla-logo {
        width: 280px;
    }

    .tdla-brochure-contenido {
        min-height: 360px;
    }

    .tdla-img-brochure {
        width: 90%;
    }

    .tdla-trip {
        padding: 50px 0;
    }

    .tdla-img-trip {
        width: 90%;
    }

    .tdla-tote {
        padding: 60px 0 70px;
    }

    .tdla-img-tote {
        width: 85%;
    }

    .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;
    }
}