/* ------------  GERAL  ------------ */
.all-bars {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    height: 52px;
    border-radius: 8px;
}

.bar-titles {
    margin: 0;
    padding: 0 0 0 24px;
    align-items: center;
    justify-items: center;
    font-family: "Montserrat";
    font-size: 1.3em;
    text-transform: uppercase;
}

.btn {
    color: #ffffff;
    max-width: 180px;
    display: flex;
    text-align: center;
    vertical-align: middle;
    align-content: center;
    border: none;
    border-radius: 8px;
    font-family: "League Gothic";
    font-size: 1.1em;
    letter-spacing: 0.02em;
    height: 44px;
}

.homeland-sections {
    display: flex;
    flex-direction: column;
    margin: 8px auto;
}

.hero {
    margin: 0px auto;
    max-width: 1212px;
    max-height: 524px;
    min-height: 300px;
    overflow: hidden;
    border-radius: 12px;
    z-index: 0;
}

.intro .hero a {
    margin: 0px auto;
}

.hero img {
    margin: 0px auto;
    min-width: 100%;
    min-height: 300px;
    object-fit: cover;
}


/* ------------  DESTAQUES  ------------ */

.destaq-bar {
    background-color: var(--destaq);
    background-image: url('../../imgs/bar_destaques.png');
}

.destaq-title {
    color: var(--destaqD);
}

.dest-top {
    margin: 0px auto;
    justify-items: center;
    flex: 1;
    height: 412px;
    min-width: 280px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #2F80ED;
}

.dest-top img {
    /* border-radius: 8px; */
    min-width: 100%;
    min-height: 420px;
    aspect-ratio: 1/1;
    object-fit: cover;
    background-color: #2F80ED;
}



/* ------------  O QUE FAZER EM CAMPOS  ------------ */


.oqfc-bar {
    background-color: var(--oqfc);
    background-image: url('../../imgs/bar_oqfc.png');
    height: 52px;
}

.oqfc-title {
    color: var(--oqfcB);
}

.oqfcD h3 {
    color: var(--oqfcD);
}

.oqfcD span {
    margin: 0px;
    padding: 0px;
    text-align: left;
    color: var(--oqfcD);
}

.btn-oqfc {
    background-color: var(--oqfcD);
}

.btn-oqfc:hover {
    background-color: var(--oqfc);
    animation-name: oqfc-cc;
    animation-duration: 0.4s;
}

@keyframes oqfc-cc {
    from {
        background-color: var(--oqfcD);
    }

    to {
        background-color: var(--oqfc);
    }
}


/* ------------  GASTRONOMIA  ------------ */

.gast-bar {
    background-color: var(--gast);
    background-image: url('../../imgs/bar_gastronomia.png');
}

.gastro span {
    margin: 0px;
    padding: 0px;
    text-align: left;
    color: var(--gastD);
}

.btn-gastr {
    background-color: var(--gastD);
}

.btn-gastr:hover {
    background-color: var(--gast);
    animation-name: gastronomia-cc;
    animation-duration: 0.4s;
}

@keyframes gastronomia-cc {
    from {
        background-color: var(--gastD);
    }

    to {
        background-color: var(--gast);
    }
}


/* ------------  CRIANÇAS  ------------ */

.kids-bar {
    background-color: var(--kids);
    background-image: url('../../imgs/bar_kids.png');
}

.btn-kids {
    background-color: var(--kidsD);
}

.btn-kids:hover {
    background-color: var(--kids);
    animation-name: kids-cc;
    animation-duration: 0.4s;
}

@keyframes kids-cc {
    from {
        background-color: var(--kidsD);
    }

    to {
        background-color: var(--kids);
    }
}


/* ---------  MEDIA  --------- */
@media(max-width:1220px) {
    /* ----  INTRO  ---- */
    .intro, .destaques, .oqfc, .gastronomia, .kids {
        padding: 0px 10px;
    }
}


@media(max-width:925px) {



}


@media(max-width:800px) {
    .bar-titles {
        margin: 0;
        padding: 0 0 0 12px;
        font-size: 1em;
    }

    .oqfc-bar, .gast-bar, .kids-bar, .destaq-bar {
        height: 38px;
    }

    /* ----  DESTAQUES  ---- */
    .dest-top img {
        width: 100%;
    }
}