* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat";
    font-size: 20px;
    background-color: #FFF9E0;
}

h1 {
    font-size: clamp(24px, 3vw, 56px);
    font-weight: 400;
}

header {
    background-color: #FF3232;
    color: #FFFFFF;

    height: 5vh;
}

iframe {
    height: 40%;
    width: 70%;

    border-radius: 10px;
}

button:hover {
    transform: scale(1.03);
    transition: 0.3s;
}

/*Auxiliares*/

.d-flex {
    display: flex;
}

.f-column {
    display: flex;
    flex-direction: column;
}

.all-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    margin: 0 auto;
    max-width: 80%;
    height: 100%;
}

.button {
    width: 60%;
    background-color: #652607;
    color: #FFFFFF;
    font-size: 20px;

    padding: 20px;
    border: none;
    border-radius: 50px;
    margin-top: 20px;

    font-family: "Montserrat";
    font-weight: bold;

    cursor: pointer;
}

.font__style {
    font-family: "Baskervville";
    font-style: italic;
    color: #652607;
    font-weight: bold;
}



.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*pop__form*/

#overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
}

#popup {
    display: none;
    position: fixed;

    width: 60%;
    height: 60%;

    top: 25%;
    left: 25%;

    z-index: 10;
}


#popup .box__text button {
    width: 90%;
    padding: 15px;
    font-weight: 600;
}

#popup .box__text {
    align-items: flex-start;
    font-size: 30px;
}

#pop_btn {
    height: 20px;

    padding: 5px;
    border: none;
    background: none;
}

#w__input {
    width: 100%;
}

#popup input {
    background-color: rgba(0, 0, 0, 0);

    border: none;
    border-bottom: 1px solid black;
    padding: 15px;
    margin-top: 10px;

    font-size: 15px;
}

#popup .container {
    background-color: #FFF9E0;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    margin: 0;

    align-items: center;
    justify-content: center;
}

#popup .box__input {
    width: 100%;
}

#popup .box__input input {
    width: 100%;
}

#popup .box__text {
    padding: 30px;
    width: 100%;
    height: 100%;
}

#popup .box__image {
    height: 100%;
    width: 100%;
}

#popup .box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

/*Hero*/
#hero {
    height: 95vh;
}

#hero .box__logo img {
    padding-top: 56px;
}

#hero .box__content {
    height: 100%;
}

#hero .box__text {
    width: 100%;
}

#hero .box__vsl {
    height: 100%;
    width: 100%;
}

#hero h1 {
    margin-bottom: 16px;
}

#hero p {
    margin-top: 16px;
}

/*slide*/

#slide {
    overflow: hidden;
    height: 56px;
    background-color: rgba(0, 0, 0, 0.10);
}

.slider__track {
    display: flex;
    animation: slider 40s linear infinite;
}

.card__slide {
    display: flex;
    width: max-content;
    margin-left: 30px;
}

.card__slide::before {
    padding-right: 10px;
    content: '•';
}


@keyframes slider {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*conection*/

#conection {
    height: 80vh;
}

#conection .box__text {
    height: 100%;

}

#conection .box__image {
    height: 100%;
}

#conection p {
    margin-bottom: 40px;
}

#conection h1 {
    margin-bottom: 16px;
}

/*comunity*/

#comunity {
    height: 50vh;
    background-color: #6526071A;
}

#comunity .container {
    max-width: 40%;
}

#comunity .box__text {
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

#comunity .box__text h1 {
    margin-bottom: 40px;
}


/*cards*/

#cards .box__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;

    gap: 20px;

    margin-top: 10%;
}

/*carrossel*/

/*exclusive*/

#exclusive {
    font-size: clamp(30px, 4vw, 48px);
    text-align: center;
}

#exclusive .container {
    margin-top: 10%;
}

#exclusive .box__image {
    padding-left: 5%;
}

#exclusive .box__text {
    padding-left: 5%;
}

.t-style {
    background-color: #652607;
    color: #FFFFFF;
    font-style: italic;
    padding: 12px;
    font-weight: bold;
}

/*phone*/

#phone {
    font-size: clamp(30px, 4vw, 48px);
    text-align: center;

    background-color: #6526071A;

    padding-top: 5%;
    padding-bottom: 5%;
}

#phone .box__image {
    padding-left: 5%;
}

#phone .box__text {
    padding-left: 5%;
}

/*include*/

#include p {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid black;

    width: 100%;
}

#include {
    margin-top: 10%;
    margin-bottom: 10%;
}


/*guide*/

#guide {
    background-color: #652607;
    color: #FFFFFF;
}

#guide .font__style {
    color: #FFFFFF;
}


#guide .box__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    padding-left: 40px;
    padding-right: 40px;
    border-left: 1px solid #FFFFFF;

    height: 70%;
    width: 50%;

    margin-top: 5%;
    margin-bottom: 5%;
}


#guide p {
    padding-top: 40px;
}

/*price*/
#price {
    margin-top: 10%;
    margin-bottom: 10%;
}

#price .container {
    max-width: 35%;

}

#price .box__text {
    border: #652607 solid 1px;
    padding: 56px 32px 56px 32px;
    border-radius: 20px;

    text-align: center;
}

#price h3 {
    font-size: 32px;
    font-weight: 400;
}

#price span {
    font-size: 48px;
}

#price .font__price {
    font-size: 98px;
    color: #652607;
}

#price p {
    padding-bottom: 20px;
    padding-top: 20px;
}

/*7days*/

#days {
    background-color: #652607;
    color: #FFFFFF;

    padding-top: 5%;
    padding-bottom: 5%;

    font-size: clamp(20px, 3vw, 36px);
}

#days .box__text {
    padding: 50px;
}

#days .box__text h3 {
    padding-bottom: 50px;
}

/*faq*/

#faq {
    margin-top: 5%;
    margin-bottom: 5%;
}

#faq .container {
    max-width: 40%;
}

#faq h1 {
    text-align: center;
}

#faq .card {
    padding: 2%;
    padding-bottom: 5%;
    border-bottom: 1px solid black;
}

#faq .card p {
    margin-top: 20px;
}

/*footer*/
footer {
    border-top: 2px solid #652607;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contato {
    display: flex;
    align-items: center;

    margin-top: 20px;
}

.contato p {
    padding-left: 5px;
}

#vaga .box__text p {
    padding-top: 16px;
}

footer h3 {
    font-size: clamp(24px, 4vw, 56px);
    ;
}


@media (max-width:1240px) {
    .container {
        height: auto;
        max-width: 90%;
    }

    /*header*/

    header {
        text-align: center;
        font-size: 10px;
        font-weight: bold;
    }

    /*hero*/

    #hero {
        height: auto;
    }

    #hero .box__content {
        display: flex;
        flex-direction: column;

    }

    #hero .box__text button {
        display: none;
    }

    #hero .box__logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #hero .box__logo img {
        padding-top: 20px;
        padding-bottom: 20px;

        width: 80%;
    }

    #hero .box__vsl {
        margin-top: 20px;
        margin-bottom: 20px;

        width: 100%;
    }

    #hero .box__vsl iframe {
        width: 80%;
    }


    /*conection*/

    #conection {
        height: auto;
    }

    #conection .box__content {
        display: flex;
        flex-direction: column;
    }

    #conection .box__image img {
        width: 100%;
    }

    /*comunity*/

    #comunity {
        height: auto;
    }

    #comunity .container {
        max-width: 80%;
    }

    #comunity .box__text {
        margin-top: 20px;
        margin-bottom: 20px;
    }


    /*cards*/

    #cards .box__content {
        display: block;

    }


    #cards .box__content img {
        width: 100%;

    }

    /*exclusive*/

    #exclisive img {
        padding: 0;
    }

    #exclusive .box__content {
        display: block;
    }

    #exclusive .box__content2 {
        display: flex;
        flex-direction: column-reverse;
    }

    /*phone*/

    #phone img {
        padding: 0;
        width: 100%;
    }

    #phone .box__content {
        display: block;
    }

    #phone .box__content2 {
        display: flex;
        flex-direction: column-reverse;
    }

    /*include*/

    #include .box__content {
        display: block;

    }

    #include .box__content img {
        width: 100%;
    }

    /*guide*/

    #guide .container {
        display: block;
    }

    #guide .box__text {
        width: 100%;
    }

    #guide .box__image img {
        width: 100%;
    }

    /*price*/

    #price .container {
        max-width: 90%;
    }

    #price .button {
        width: 90%;
    }

    #price .font__price {
        font-size: 50px;
    }

    #price button {
        font-size: 15px;
    }

    /*days*/

    #days .container {
        display: block;
    }

    #days .box__image img {
        width: 100%;
    }

    /*faq*/

    #faq .container {
        max-width: 80%;
    }
}