:root {
    --primary: #033C8E;
    --dark: rgb(29, 46, 74);
    --sky: #c2f6f6;
    --sand: rgb(242, 220, 203);
    --sea: rgb(34, 214, 178);
    --green: rgb(215, 210, 161);
    --emerald: rgb(0, 122, 85);
    --whatsapp: #1dd73c;
    --sea-blue: lightblue;
    --water-green: #00D1B2;
    --white: white;
    --font-display: "Montserrat", serif;
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0px !important;
    padding: 0px !important;
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    position: relative;
}

section {
    min-height: 80vh;
    position: relative;
    padding-top: 0px !important;
}

.white-wave {
    display: block;
    position: absolute;
    bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
}

.padLateral {
    padding: 0px 20px;
}

.primary {
    color: var(--primary);
}

.white {
    color: var(--white);
}

.accent {
    color: var(--emerald) !important;
}

.water {
    color: var(--water-green) !important;
}

.dark {
    color: var(--dark);
}

.hidden {
    display: none !important;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.hand {
    cursor: pointer;
}

.underConstruction {
    width: 100vw;
    height: 100vh;
}

nav {
    width: 100%;
    display: grid;
    grid-template-columns: 3fr 3fr 3fr;
    background-color: var(--white);
}

#mobMenu {
    display: none;
    width: 1px;
    height: 1px;
    background-color: var(--sand);
}

nav.admin {
    display: block;
    width: 100%;
}

nav.admin .logo {
    display: block;
    margin: auto;
    text-align: center;
    padding-top: 20px;
    padding-left: 0px;
}

nav.admin img {
    margin: auto !important;
}

nav .logo {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding-left: 20px;
}

nav img {
    max-width: 120px;
}

a {
    text-decoration: none;
    color: var(--primary);
}

nav a,
footer a {
    font-size: 0.9rem;
    color: var(--primary);
}

nav a:hover {
    color: var(--water-green);
    font-weight: bold;
}

nav .links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    text-align: center;
}

nav .whatsapp {
    display: grid;
    grid-template-columns: 1fr;
    text-align: right;
    align-items: center;

}

.whatsapp-mob {
    display: none;
}

.logout {
    display: block;
    position: fixed;
    bottom: 2%;
    right: 3%;
}

.logout i {
    font-size: 45px;
    color: var(--white);
    background-color: red;
    border-radius: 50%;
    padding: 7px 4px;
}

nav.whatsapp .btn i {
    color: var(--white) !important;
}

nav .whatsapp .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--water-green);
    border-radius: 15px;
    color: var(--white);
    font-weight: bold;
    cursor: pointer;
    margin-right: 20px;
}

nav .small {
    font-size: 0.8rem;
    margin-right: 20px;
}

nav .whatsapp .btn:hover {

    background-color: var(--emerald);

}

#togglePrices,
#toogleDepartures {
    width: 280px;
    border: 1px solid var(--primary);
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 20px auto;
    text-align: center;
    overflow: hidden;
}

#togglePrices div,
#toogleDepartures div {
    cursor: pointer;
}

#togglePrices div.selected,
#toogleDepartures div.selected {
    background-color: var(--primary);
    color: var(--white);
    font-weight: bold;
}

.hero {
    width: 100%;
    min-height: 90vh;
    background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .1)), url("/static/imgs/hero-caribbean-beach.jpg");
    background-size: cover;
    margin-top: 0px !important;
    padding-top: 80px;
    position: relative;
}

.hero h1 {
    padding-top: 0px;
    margin-top: 0px;
    font-size: 70px;
    color: var(--white);
}

.hero h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 35px;
}

.hero .feature {
    display: inline-block;
    background-color: rgba(211, 211, 211, .6);
    padding: 10px 20px;
    border-radius: 10px;
    margin: 10px;
    color: var(--white);
    font-weight: bold;
}

.contact-form,
.hero-form {
    padding: 30px;
    width: 90vw;
    max-width: 700px;
    min-height: 350px;
    border-radius: 15px;
    box-shadow: 0px 0px 5px var(--sand);
    margin: auto;
    position: relative;
    bottom: 300px;
    margin-bottom: -280px;
    background-color: rgba(0, 176, 126, .3);
    background-image: linear-gradient(to bottom right, rgba(242, 220, 203, .7), rgba(0, 176, 126, .6), rgba(34, 214, 178, .6), rgba(0, 176, 126, .4));
}

#makePriceBTN.disabled {
    color: lightsteelblue;
    cursor: not-allowed;
}

.contact-form .btn,
.hero-form .btn,
.login-form .btn {
    color: var(--water-green);
    background-color: var(--white);
    border: 1px solid var(--sea);
}

.contact-form .btn:hover,
.hero-form .btn:hover,
.login-form .btn:hover {
    box-shadow: 0px 0px 5px var(--emerald);
}

.hero-form i.lab,
.contact-form i.lab,
.login-form i.lab {
    font-size: 25px;
    color: var(--white);
    margin-right: 20px;
    position: relative;
    top: 3px;
}

.fa-pen {
    font-size: 25px;
    color: var(--white);
    margin-right: 20px;
    position: relative;
    top: -80px;
}

label.active .fa-pen {
    color: var(--emerald) !important;
}

#paxCounter,
#childCounter,
#infantCounter {
    display: inline-block;
    font-size: 25px;
    margin: 0px 20px;
    color: var(--white);
    width: 15px;
    text-align: center;
    font-weight: bold;
}

.counterBtn {
    color: var(--emerald);
    font-size: 20px;
    cursor: pointer;
}

.btn {
    display: inline-block;
    background-color: var(--water-green);
    color: var(--white);
    border-radius: 15px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
}

.btn:hover {
    box-shadow: 0px 0px 5px var(--primary);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    align-items: center;
}

.triple-split {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    text-align: center;
    align-items: center;
    gap: 20px;
}

.split-three {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    text-align: center;
    align-items: center;
    gap: 20px;
    width: 90%;
}

.split-four {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: center;
    align-items: center;
    gap: 20px;
    width: 90%;
    margin: 20px auto;
}

.split-pacotes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    align-items: center;
    gap: 20px;
    width: 90%;
    margin: 20px auto;
}

.details .split {
    width: 90%;
    margin: auto;
}

.details .big {
    font-size: 25px;
}

.details .btn,
.content-top .btn {
    margin: auto !important;
    background-color: var(--emerald);
    padding: 15px 20px;
}

.details .btn i,
.content-top .btn i {
    color: var(--white);
}

.details .small {
    font-size: 12px;
}

.todoIncluido {
    width: 98%;
    max-width: 700px;
    margin: 40px auto;
    border-radius: 15px;
    border-left: 5px solid var(--water-green);
    box-shadow: 0px 0px 3px var(--primary);
    padding: 10px 0px;
}

.todoIncluido b {
    display: inline-block;
    padding-bottom: 15px;
}

.todoIncluido p {
    width: 90%;
    margin: auto;
}

.info-card {
    width: 90%;
    margin: 0px auto;
    margin-top: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--water-green);
    box-shadow: 0px 0px 3px var(--primary);
    padding: 10px;
    padding-top: 20px;
}

.info-card i {
    font-size: 40px;
    color: var(--water-green);
}


.info-card p {
    color: var(--primary);
    font-weight: bold;
    height: 55px;
}

.info-card .small {
    font-size: 13px;
    color: var(--dark);
    font-weight: initial;
}

#pacotes {
    margin-bottom: -40px;
}

.card-pack .hotel-pic {
    overflow: hidden !important;
    position: relative;
    margin-bottom: -20px;
    height: 180px;
}

.price {
    margin-top: 0px;
    display: inline-block;
}

.oldPrice {
    position: relative;
    color: #888;
    display: inline-block;
}

.oldPrice::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -5%;
    width: 105%;
    height: 2px;
    background: var(--water-green);
    transform: rotate(-10deg);
}

.card-pack .paco-name {
    height: 30px;
}

.card-pack .hotel-pic .voo {
    position: absolute;
    top: 15px;
    left: 10px;
    background-color: var(--water-green);
    color: var(--white);
    border-radius: 15px;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 13px;
}


.card-pack .hotel-pic img {
    width: 100%;
    overflow: none !important;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card-pack .content {
    padding: 20px;
    padding-bottom: 10px;
}

.card-pack .content p.benefit {
    font-size: 16px;
    height: 30px;
}

.card-pack span.small {
    font-size: 13px;
}

.card-pack b {
    font-size: 20px;
}

.card-pack .btn {
    background-color: var(--water-green);
    width: 80%;
    margin: auto;
}

.card-pack {
    overflow: none !important;
    margin: 20px 0px;
    border-radius: 15px;
    box-shadow: 0px 0px 2px var(--primary);
    background-color: var(--white);
    color: var(--dark)
}

.gap {
    gap: 30px;
}

.feedback {
    color: var(--white);
    font-weight: bold;
    margin-top: 10px;
    height: 30px;
}

#feedbackArea,
#feedbackAreaParcelado {
    background-color: var(--primary);
    padding: 5px 20px;
    border-radius: 5px;
}

#feedbackArea.success,
#feedbackAreaParcelado.success {
    background-color: var(--emerald);

}

.form-field-container {
    position: relative;
    min-height: 50px;
}

input,
textarea,
select {
    width: 88%;
    margin: auto;
    height: 25px;
    color: var(--dark);
    padding-left: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    border-radius: 5px;
    border: var(--sand);
}

textarea {
    height: 100px;
    padding-top: 10px;
}

select {
    width: 90%;
    height: 27px;
}

/* Base reset */
input[type="range"] {
    -webkit-appearance: none;
    margin: auto;
    width: 90%;
    height: 8px;
    border-radius: 5px;
    outline: none;
    background: #e0e0e0;
    /* fallback */
}

input[type="range"]:focus {

    outline: none;
    border: none !important;
}

/* Track background (dynamic fill using gradient) */
input[type="range"] {
    background: linear-gradient(to right, #3ed6c3 0%, #3ed6c3 0%, #e0e0e0 0%, #e0e0e0 100%);
}

/* Thumb (Chrome, Safari, Edge) */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #3ed6c3;
    /* water green */
    cursor: pointer;
    border: none;
}

/* Thumb (Firefox) */
input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #3ed6c3;
    cursor: pointer;
    border: none;
}

/* Filled track (Firefox only) */
input[type="range"]::-moz-range-progress {
    background-color: #3ed6c3;
    height: 8px;
    border-radius: 5px;
}

/* Track background (Firefox) */
input[type="range"]::-moz-range-track {
    background-color: #e0e0e0;
    height: 8px;
    border-radius: 5px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border: 2px solid var(--emerald);
}

label span {
    display: none;
    position: absolute;
    top: -20px;
    left: 8%;
    font-size: 12px;
    color: var(--emerald);
    font-weight: bold;
}

.adultForm,
.childForm {
    margin-top: 45px;
    position: relative;
}

.pseudoLabel,
.date-helper {
    position: absolute;
    top: -35px;
    left: 8%;
    font-size: 12px;
    color: var(--emerald);
    font-weight: bold;
}

.date-helper {
    color: var(--dark);
    width: 90%;
    top: 35px;
    display: block;
    text-align: right;
    font-size: 13px;
    margin-top: 5px;
    font-weight: normal;
}

label.active i {
    color: var(--emerald) !important;
}

label.active i.fa-piggy-bank {
    color: var(--water-green) !important;
}

label.active i.fa-piggy-bank.lab {
    color: var(--emerald) !important;
}

label.active span {
    display: block;
}

.about {
    width: 95%;
    margin: auto;
    max-width: 1200px;
}

.about .social i {
    font-size: 30px !important;
}

i.fa-facebook {
    color: var(--primary);
}

nav i.fa-whatsapp {
    color: var(--white);
}

nav .menuBTN {
    display: none;
}

i.fa-whatsapp {
    color: var(--emerald);
}

i.fa-instagram {
    color: rgb(234, 159, 172);
}

.about h2 {
    font-size: 40px;
}

.about img {
    width: 100%;
    border-radius: 15px;
}

.faq-section {
    width: 100%;
    background-image: linear-gradient(to bottom, var(--primary), var(--primary), var(--primary), var(--sea-blue), var(--white));
}

.faq-section .wave {
    transform: rotateZ(180deg);
    position: relative;
    bottom: 3px;
    margin-bottom: -150px;
}

.faq-section h1 {
    position: relative;
    bottom: 150px;
    margin-bottom: -150px;
}

.faq-section .subtitle {
    position: relative;

}

.question {
    margin: 20px auto;
    width: 95%;
    max-width: 900px;
    border-radius: 15px;
    box-shadow: 0px 0px 3px var(--primary);
    padding: 5px 20px;
    position: relative;
    background-color: var(--white);
    color: var(--dark);
}

.q {
    width: 90%;
}

.question i {
    color: var(--water-green);
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
}

.question .answer {
    display: none;
    opacity: 0;
    padding-top: 20px;
    color: var(--primary);
}

.question.active .answer {
    display: block !important;
    animation: appearFaq 1s forwards ease;
}

.question.active i {
    animation: rotateArrow .5s forwards ease;
}

body.success {
    background-image: linear-gradient(to bottom right, rgba(242, 220, 203, .7), rgba(0, 176, 126, .7), rgba(34, 214, 178, .6), rgba(0, 176, 126, .7));
    color: var(--white);
}

body.success div.container,
.loader {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.loader {
    background-image: linear-gradient(to bottom right, rgba(242, 220, 203, .7), rgba(0, 176, 126, .8), rgba(34, 214, 178, .7), rgba(0, 176, 126, .9));
    color: var(--white);
    display: none;
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0px;
    left: 0px;
}

.loader .fa-plane {
    font-size: 150px;

}

.loader.active .fa-plane {
    animation: fly 5s ease;
    animation-iteration-count: infinite;
}

.loader.active {
    display: grid;
}

body.success h2,
body.success h3 {
    font-family: var(--font-body) !important;
}

body.success h1 {
    font-size: 90px;
    animation: biggenUp 1s ease forwards;
    animation-delay: .5s;
}

body.success h2 {
    font-size: 40px;
}

body.success h3 {
    font-size: 30px;
}

.redes i {
    font-size: 30px;
    margin-right: 10px;
}

footer {
    background-color: var(--white);
    max-height: 200px;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}

footer .sand {
    position: relative;
    bottom: 110px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: transparent;
    padding: 10px 20px;
    text-align: center;
    background-color: var(--water-green);
}

footer a {
    text-decoration: none;
    color: var(--white);
    font-weight: bold;
}

/*MODAL*/
.modal-background {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
}

.modal-background.active {
    width: 100vw;
    height: 100vh;
    background-color: rgba(195, 237, 243, 0.8);
    z-index: 100;
}

@media screen and (max-width: 992px) {

    .whatsapp-mob {
        display: block;
        position: fixed;
        bottom: 2%;
        right: 3%;
    }

    .whatsapp-mob i {
        font-size: 45px;
        color: var(--white);
        background-color: var(--emerald);
        border-radius: 50%;
        padding: 7px 4px;
    }

    nav {
        grid-template-columns: 2fr 3fr;
    }

    nav .whatsapp {
        display: none;
    }

    .split-four,
    .split-pacotes {
        grid-template-columns: 1fr 1fr;
    }

    .faq-section .wave {
        position: relative;
        bottom: 15px;
        margin-bottom: -150px;
    }

    .faq-section h1 {
        position: relative;
        bottom: 75px;
        margin-bottom: -75px;
    }

    .faq-section p {
        background-color: var(--white);
        padding-bottom: 15px;
    }

    .question {
        width: 85%;
        max-width: 900px;
    }

    footer .sand {
        bottom: 60px;
    }

    .details .split {
        display: block;
    }
}

@media screen and (max-width: 800px) {

    .triple-split {
        grid-template-columns: 1fr 1fr;
    }

    .split.about {
        display: block;
    }

    .hide-on-med-and-down {
        display: none !important;
    }

    .center-on-med-and-down {
        text-align: center !important;
    }

    .show-on-med-and-down {
        height: 30px;
    }

    footer .sand {
        bottom: 40px;
    }

    .contact-form,
    .hero-form {
        bottom: 200px;
        margin-bottom: -200px;
        padding: 30px 20px;
    }
}

@media screen and (max-width: 750px) {
    footer .sand {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 720px) {

    nav {
        position: relative;
        z-index: 8;
        display: grid;
        grid-template-columns: 3fr 1fr;
    }

    nav .menuBTN {
        display: block;
        overflow: hidden;
        padding: 0px !important;
    }

    nav .menuBTN i {
        position: relative;
        top: 10px;
        font-size: 35px;
        margin: 0px !important
    }

    nav.active .menuBTN i {
        animation: rotateArrow .5s forwards ease;
    }

    #mobMenu.active {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100vh;
        background-color: var(--sand);
        z-index: 7;
    }

    .sea-water {
        background-image: linear-gradient(to bottom, var(--water-green), var(--water-green), var(--water-green), var(--sea), var(--white), var(--white));
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0vh;
        animation: wave 1s ease forwards;
        animation-delay: .5s;
    }

    .sea-water .menu-items {
        opacity: 0;
        margin-top: 150px;
        animation: appearFaq .5s ease forwards;
        animation-delay: .7s;
    }

    .sea-water .menu-items p {
        font-size: 20px;
        font-weight: bold;
        padding-top: 5px;
    }

    .sea-water img {
        width: 100%;
        height: 150px;
        position: absolute;
        bottom: -110px;
        left: 0px;
        transform: rotateZ(180deg);
    }

    nav .links {
        display: none;
    }

    nav .logo {
        width: 100%;
        text-align: left;
        display: block;
        align-items: center;
        padding-left: 0px;
        padding: 10px 0px;
        padding-top: 15px;
    }

    nav .logo img {
        margin: auto;
        width: 150px;
        position: relative;
        left: 20px;
    }

    .contact-form,
    .hero-form {
        bottom: 100px;
        margin-bottom: -100px;
        padding: 30px 20px;
    }

    footer .sand {
        bottom: 20px;
    }

    .faq-section .wave {
        position: relative;
        bottom: 35px;
        margin-bottom: -150px;
    }

    .hero-form i.lab,
    .contact-form i.lab,
    .fa-pen {
        margin-right: 10px;
    }

    input,
    textarea {
        width: 87%;
    }
}

@media screen and (max-width: 635px) {

    .hero {
        overflow: hidden;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero h5 {
        font-size: 30px;
    }

    .hero .white-wave {
        bottom: -50px;
    }

    .contact-form,
    .hero-form {
        bottom: 120px;
        margin-bottom: -120px;
        padding: 30px 20px;
    }

    input,
    textarea {
        width: 84%;
    }

    select {
        width: 86%;
    }

    label span {
        left: 10%;
    }

    .split-four,
    .split-pacotes {
        display: block;
    }

    footer .sand {
        bottom: 5px;
    }

    .faq-section .wave {
        position: relative;
        bottom: 40px;
        margin-bottom: -150px;
    }
}

@media screen and (max-width:550px) {

    .triple-split {
        display: block;
    }

    .hero {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero h5 {
        font-size: 25px;
    }

    .contact-form,
    .hero-form {
        bottom: 40px;
        margin-bottom: -40px;
        background-image: linear-gradient(to bottom right, rgba(242, 220, 203, .7), rgba(0, 176, 126, .6), rgba(34, 214, 178, .6), rgba(0, 176, 126, .4));
    }

    .contact-form .split {
        grid-template-columns: 2fr 1fr;
    }

    label span {
        left: 12%;
    }

    input,
    textarea {
        width: 82%;
    }

    select {
        width: 84%;
    }
}

@media screen and (max-width:460px) {
    .faq-section .wave {
        position: relative;
        bottom: 90px;
        margin-bottom: -150px;
    }

    h1,
    #contato,
    #about,
    #pacotes h1 {
        font-size: 27px;
    }

    input,
    textarea {
        width: 77%;
    }

}

@media screen and (max-width:450px) {

    .pseudoLabel,
    .date-helper {
        display: inline-block;
        width: 85%;
        text-align: right;
    }
}

@media screen and (max-width:400px) {

    @media screen and (max-width: 750px) {
        footer .sand {
            grid-template-columns: 1fr 1fr 1fr;
        }
    }

    .hero h5 {
        font-size: 22px;
    }

    .pseudoLabel,
    .date-helper {
        display: inline-block;
        width: 87%;
        text-align: right;
    }

    .contact-form,
    .hero-form {
        bottom: 10px;
        margin-bottom: -10px;
        width: 85%;
    }

    .q {
        width: 80%;
    }

    input,
    textarea {
        width: 77%;
    }

    select {
        width: 79%;
    }

    .hide-on-super-small {
        display: none;
    }

    .contact-form .split {
        grid-template-columns: 1fr 1fr;
    }

    label span {
        left: 18%;
    }


}

@keyframes appearFaq {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes wave {
    0% {
        height: 0vh
    }

    100% {
        height: 85vh
    }
}

@keyframes rotateArrow {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(90deg);
    }
}

@keyframes biggenUp {
    0% {
        scale: 100%;
    }

    25% {
        scale: 80%;
    }

    75% {
        scale: 120%;
    }

    100% {
        scale: 100%;
    }
}

@keyframes fly {
    0% {
        scale: 100%;
    }

    20% {
        scale: 90%;
        transform: translateX(25%);
    }

    40% {
        scale: 100%;
        transform: translateX(10%);
    }

    60% {
        scale: 105%;
        transform: translateX(0px);
    }

    80% {
        scale: 90%;
        transform: translateX(-15%);
    }

    100% {
        scale: 100%;
        transform: translateX(0px);
    }
}