@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Protest+Strike&display=swap');

/*=============== BASE ===============*/
:root {

    --first-color: #ff7846; /*hsl(12, 100%, 67%)*/
    --first-color-soft: #fec795;
    --second-color: #0A95D0;
    --white-color: #fff;
    --grey-color: #92999f;
    --soft-grey-color: #eaeaea;
    --hue-color: 200;
    --body-color: hsl(var(--hue-color), 100%, 99%);
    --text-color: hsl(var(--hue-color), 24%, 20%);

    /*========== Font and typography ==========*/
    --body-font: 'Manrope', sans-serif;
    --thanks-font-size: 8rem;
    --biggest-font-size: 2.5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;

    /*========== Margenes Bottom ==========*/
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-25: 1.25rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'poppins', sans-serif;
}
body{
    /*font-family: var(--body-font);*/
    background-color: var(--body-color);
    color: var(--text-color);
}
ul{
    list-style: none;
}
button,
input {
    border: none;
    /*font-family: var(--body-font);*/
    font-size: var(--normal-font-size);
}
a {
    text-decoration: none;
    color: var(--text-color);
}
.aUnderline{
    text-decoration: underline !important; 
}
a:hover{
    color: var(--first-color);
}
  
input[type="date"]::before {
	color: #999999;
	content: attr(placeholder);
}
input[type="date"] {
	color: #ffffff;
}
input[type="date"]:focus,
input[type="date"]:valid {
	color: #666666;
}
input[type="date"]:focus::before,
input[type="date"]:valid::before {
	content: "" !important;
}
.loader { 
    display: none; 
    border: 4px solid rgba(255, 255, 255, 0.3); 
    border-top: 4px solid var(--second-color); 
    border-radius: 50%; 
    width: 18px; 
    height: 18px; 
    animation: spin 1s linear infinite; 
    margin-left: 10px; 
} 
h3{
    font-size: 1.5rem;
    font-family: 'Protest Strike', sans-serif;
    letter-spacing: 0.1rem;
}
.h3__title{
    font-size: 2.5rem;
}
.h3__subtitle{
    font-size: 2rem;
    margin-top: 1rem;
}

@keyframes spin { 
    0% { 
        transform: rotate(0deg); 
    } 
  
    100% { 
        transform: rotate(360deg); 
    } 
} 
/*=============== REUSABLE CSS CLASSES ===============*/
.section {
    padding: 4.5rem 0 2.5rem;
  }
    
  .section__title {
    display: none;
    font-size: var(--h2-font-size);
    color: var(--white-color);
    text-align: center;
    margin-top: -5%;
  }
  
  .container {
    max-width: 100%;
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }
  
  .grid {
    display: grid;
    gap: 1.5rem;
  }

.padding_0_5{
    padding: .5rem;
}

.flex{
    display: flex;
    align-items: center;
    gap: var(--mb-0-25);
}
.margintop1{
    margin-top: var(--mb-1);
}

 /*=============== BUTTONS ===============*/
.button {
    display: inline-block;
    border-radius: 0.75rem;
    /*/background-color: var(--first-color-soft);*/
    cursor: pointer;
    font-weight: var(--font-semi-bold);
    /*color: var(--first-color);*/
    background-color: lightblue;
    color: var(--second-color);
}
.button:hover{
    background-color: var(--first-color-soft);
    color: var(--text-color);
}
.button__selected{
    background-color: var(--second-color) !important;
    color: var(--white-color) !important;
}
.btn__search{
    padding: 0.95rem;
    width: 70%;
}
.btn__select{
    padding: 0.75rem;
}
.btn__select__hotel{
    padding: 0.25rem 0.75rem;
    margin-top: 0.5rem;
}
.btn__allH{
    height: 100%;
    width: 100%;
    border-radius: 0;
}
.btn_next{
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: absolute;
    right: 2%;
    padding: 0.5rem 0.75rem;
    background-color: var(--first-color);
    color: var(--body-color);
}
.btn_before{
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: absolute;
    left: 2%;
    padding: 0.5rem 0.75rem;
    background-color: var(--first-color);
    color: var(--body-color);
}
/*.button:hover {
    background-color: var(--orange-color-logo);
}*/

/*=============== DROPDOWN ===============*/
.dropdown,
.input__content{
    position: relative;
    margin-top: .5rem;
}
.dropdown__button,
.dropdown__item{
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}
.dropdown__max{
    max-height: 200px;
    overflow-y: auto;
}
.dropdown__button,
.destino__form .input-field{
    border: none;
    outline: none;
    background-color: white;
    border-radius:  .75rem;
    cursor: pointer;
    width: 92%;
    justify-content: space-between;
}
.destino__form .input-field{
    padding: .95rem;
}
.dropdown__button{
    padding: .75rem;
}
.dropdown__icon,
.dropdown__icons{
    font-size: 1.25rem;
    color: #ff7846;
}
.dropdown_name{
    font-weight: 500;
}
.dropdown__icons{
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
}
.dropdown__arrow,
.dropdown__close{
    position: absolute;
    transition: opacity .1s, transform .4s;
}
.dropdown__close{
    opacity: 0;
}
.dropdown__menu{
    background-color: white;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    display: grid;
    row-gap: 1rem;
    position: absolute;
    width: 92%;
    left: 0;
    top: 3.5rem;
    transform: scale(.1);
    transform-origin: 10rem -2rem;
    pointer-events: none;
    transition: opacity .4s, transform .4s;
    opacity: 0;
    z-index: 1;
}
.dropdown__item{
    cursor: pointer;
    transition: color .3s;
}
.dropdown__item:hover{
    color: #ff7846;
}
/*Rotate and hide icon*/
.show-dropdown .dropdown__close{
    opacity: 1;
    transform: rotate(-180deg);
}
.show-dropdown .dropdown__arrow{
    opacity: 0;
    transform: rotate(-180deg);
}
/*Show dropdown menu*/
.show-dropdown .dropdown__menu{
    opacity: 1;
    transform: scale(1);
    pointer-events: initial;
}
.display__none{
    display: none !important;
}
.dropdown__name span{
    font-weight: bold;
}

/*=============== CHECK BOX ===============*/

input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;
}

input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
}

input[type="checkbox"] {
    display: grid;
    place-content: center;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--first-color);
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

input[type="checkbox"]::before {
    /* ...existing styles */

    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type="checkbox"]:disabled {
    --form-control-color: var(--grey-color);
  
    color: var(--grey-color);
    cursor: not-allowed;
  }
  
/*=============== HEADER ===============*/

#curve{
    fill: transparent;
}
.logo__text{
    font-size: 0.8rem;
    fill: var(--white-color);
    font-weight: 600;
}
.header-withoutimage{
    width: 100%;
    max-height: 80px;
    position: relative;
    background: var(--first-color-soft);
}

.logo__container-withoutimage{
    height: 155px;
}

.container__header{
    height: 120px;
}

.title__img__container{
    height: 300px;
    background-size: cover !important;
    background: no-repeat center/80% url(../img/africa.jpg);
    position: relative;
}
.title__orcamento__container{
    height: 150px !important;
}
.title__header__orcamento{
    height: 300px;
    background-color: var(--first-color-soft);
}
.title__content{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.title__orcamento{
    padding: 3rem 1.5rem 1.5rem 3rem !important;
}
.title__img__container h1{
    padding: 5rem;
    font-size: 3em;
    color: black;
}
.title__img__container h2{
    padding: 0 3rem;
    font-size: 2em;
    color: black;
}
.title__img__container h2 i{
    margin: 1rem;
}
.header__logo img{
    width: 100px;
    position: absolute;
    top: 25px;
    left: 25px;
}
.header__logo svg{
    margin-left: 10px;
}

/*=============== HEADER NEW ===============*/
.container__destinos{
    padding-bottom: 2rem;
}
.headerNew{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("../img/home.jpg");
    background-size: cover;
    background-position: center;
}
.destinos{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 30px;
    margin-top: 2rem;
    width: 70%;
}
.destinos .destino__img img{
    width: 100%;
    border-radius: 10px;
    height: 100%;
}
.destinos .destino__img{
    position: relative;
    height: 70%;
}
.destinos .destino__img span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white-color);
}
.headerNew h1{
    font-family: "Protest Strike", sans-serif;
    font-size: 4vw;
    font-weight: 500;
    color: var(--white-color);
    text-align: center;
    position: absolute;
    top: 2rem;
    width: 100%;
    letter-spacing: 2px;
}
.list_destinos ul{
    position: relative;
}
.list_destinos ul li{
    position: relative;
    left: 0;
    color: white;
    margin: 4px 0;
    border-left: 2px solid var(--first-color);
}
.list_destinos ul li:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--first-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.5s;
}
.list_destinos ul li:hover:before{
    transform: scaleX(1);
}
.list_destinos ul li:hover{
    left: 10px;
}
.list_destinos ul li span{
    position: relative;
    padding: 8px;
    display: inline-block;
}
.list_destinos ul li:hover span{
    color: var(--body-color);
}

/*=============== teste ===============*/
.flip-card-container {
   /*width: 310px;*/
    width: 280px;
    height: 500px;
    margin: 0px 40px;
  
    perspective: 1000px;
}
.flip-card-container-mobile {
    /*width: 310px;*/
     width: 280px;
     height: 500px;
     margin: 0px 40px;
   
     perspective: 1000px;

     transition: 300ms linear all;
 }
 .flip-card-container-mobile.touch-device .flip-card{
    transform: rotateY(180deg);
 }
.flip-card {
    width: inherit;
    height: inherit;
  
    position: relative;
    transform-style: preserve-3d;
    transition: .6s .1s;
}
/*,
.flip-active:active .flip-card*/
.flip-card-container:hover .flip-card{
  transform: rotateY(180deg);
}
.card-front,
.card-back {
  width: 100%;
  height: 100%;
  border-radius: 24px;

  background: black;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;

  backface-visibility: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
}
.card-front {
    transform: rotateY(0deg);
    z-index: 2;
  }
  
  /* .card-back */
  .card-back {
    transform: rotateY(180deg);
    z-index: 1;
  }
  figure {
    z-index: -1;
  }
  
  /* figure, .img-bg */
  figure,
  .img-bg {
    position: absolute;
    top: 0;
    left: 0;
  
    width: 100%;
    height: 100%;
  }
  figure img {
    height: 100%;
    border-radius: 24px;
  }
  .img-bg {
    background: hsla(150, 25%, 10%, .5);
  }
  /*.card-front .img-bg {
    clip-path: polygon(0 20%, 100% 40%, 100% 100%, 0 100%);
  }*/
  .card-front .img-bg::before {
    content: "";
  
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
  
    width: 100%;
    height: 6px;
    /*border: 1px solid var(--first-color);*/
    border-left-color: transparent;
    border-right-color: transparent;
  
    transition: .1s;
  }
  .card-front .img-bg{
    height: 60px;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .card-front .img-bg span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: hsl(0, 0%, 95%);
    letter-spacing: 0.1rem;
}
.card-front .img-bg span h3{
    font-size: 1.5rem;
    font-family: 'Protest Strike', sans-serif;
}
  
  /* hover state */
  .flip-card-container:hover .card-front .img-bg::before,
  .flip-card-container-mobile.touch-device .card-front .img-bg::before {
    width: 6px;
    border-left-color: var(--first-color-soft);
    border-right-color: var(--first-color);
  }

  .flip-card-container ul,
  .flip-card-container-mobile ul {
    /*padding-top: 50%;*/
    margin: 0 auto;
    width: 98%;
    height: 100%;
  
    color: hsl(0, 0%, 95%);
  
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .flip-card-container li,
  .flip-card-container-mobile li {
    width: 100%;
    margin-top: 12px;
    padding-bottom: 12px;
  
    font-size: 17px;
    text-align: center;
  
    position: relative;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }
  .flip-card-container li i,
  .flip-card-container-mobile li i{
    font-size: 25px;
  }
  .flip-card-container li a,
  .flip-card-container-mobile li a{
    color: var(--white-color);
  }
  
  .flip-card-container li:nth-child(2n),
  .flip-card-container-mobile li:nth-child(2n){
    color: hsl(0, 0%, 95%);
  }
  .flip-card-container li:not(:last-child)::after,
  .flip-card-container-mobile li:not(:last-child)::after{
    content: "";
  
    position: absolute;
    bottom: 0;
    left: 0;
  
    width: 100%;
    height: 1px;
  
    background: currentColor;
    opacity: .2;
  }
  .icon-back-destino{
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: white;
    font-size: 20px;
    display: none;
  }


.link--arrowed {
    height: 2rem;
    line-height: 2rem;
    display: none;
}
.link--arrowed .arrow-icon {
    display: none; /*TESTE*/
    position: relative;
    top: -1px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    vertical-align: middle;
}
.link--arrowed .arrow-icon--circle {
    transition: stroke-dashoffset 0.3s ease;
    stroke-dasharray: 95;
    stroke-dashoffset: 95;
}
/*.flip-card-container li:hover .link--arrowed{
    display: inline-block;
}*/
.flip-card-container li .link--arrowed,
.flip-card-container li:hover .arrow-icon,
.flip-card-container-mobile li .link--arrowed,
.flip-card-container-mobile li:hover .arrow-icon{
    display: inline-block;
}   
.link--arrowed:hover .arrow-icon {
    transform: translate3d(5px, 0, 0);
}
.link--arrowed:hover .arrow-icon--circle {
    stroke-dashoffset: 0;
}


/*.material-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .material-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border: 2px solid var(--body-color);
    border-radius: 4px;
    transition: all 0.3s;
  }
  
  .material-checkbox input[type="checkbox"]:checked ~ .checkmark {
    background-color: var(--white-color);
    border-color: var(--white-color);
  }
  
  .material-checkbox input[type="checkbox"]:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 10px;
    border: solid var(--first-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .material-checkbox input[type="checkbox"]:disabled ~ .checkmark {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .material-checkbox input[type="checkbox"]:disabled ~ .checkmark:hover {
    border-color: #4d4d4d;
  }
  */
  .checkbox__container{
    display: flex;
    flex-wrap: wrap;
    gap: var(--mb-1) var(--mb-1-5);
    margin-top: .5rem;
  }
  .products__container{
    margin-bottom: 1.5rem;
  }
  .product-input{
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
.product-input:checked + .product-tile {
    background: lightblue;
    border: 2px solid var(--second-color);
    /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);*/
    color: var(--second-color);
}
.product-input:checked + .product-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: var(--second-color);
    border-color: var(--second-color);
    border: none;
    width: 1rem;
    height: 1rem;
}
.product-input:checked + .product-tile .product-label {
    color: var(--second-color);
    margin-left: 8px;
}
.product-input:focus + .product-tile {
    border-color: var(--second-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}
/*.product-input:focus + .product-tile {
    transform: scale(1);
    opacity: 1;
}*/
.product-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 16rem;
    min-height: 3rem;
    border-radius: 0.75rem;
    background-color: #fff;
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0.75rem;
}
.product-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    top: 0.25rem;
    left: 0.20rem;
    opacity: 1;
    transform: scale(1);
    transition: 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.product-tile:hover .product-label {
    color: var(--second-color);
}
.product-tile:hover {
    border-color: var(--second-color);
}
.product-tile:hover:before {
    transform: scale(1);
    opacity: 1;
}
.product-label {
	color: #707070;
	transition: .375s ease;
	text-align: center;
}


.swiper{
    height: 50vh;
    width: 100%;
}
.wrapper,
.slide {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    overflow: hidden;
}
.slide::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10;
}
.slide .image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* swiper button css */
.swiper .nav-btn {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}
.swiper .nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}
.swiper .swiper-button-next {
    right: 50px;
    color: var(--second-color);
}
.swiper .swiper-button-prev {
    left: 50px;
    color: var(--second-color);
}
.swiper .nav-btn::before,
.swiper .nav-btn::after {
  font-size: 25px;
  color: #fff;
}
.swiper-pagination-bullet {
    opacity: 1;
    height: 12px;
    width: 12px;
    background-color: #fff;
    visibility: hidden;
}
.swiper-pagination-bullet-active {
    border: 2px solid #fff;
    background-color: #c87e4f;
}

.search__div{
    position: relative; 
    height: 100%;
    background-color: var(--first-color-soft);
}
.title__search{
    padding-top: 1.5rem;
}
.h3__search{
    text-align: center;
    color: var(--second-color);
    font-size: 2rem;
    letter-spacing: 0.1rem;
}

/*=============== teste ===============*/




/*=============== HOME ===============*/

.home__container{
    min-height: 100vh;
    /*max-height: 100vh;*/
    position: relative;
    background-image: url("../img/home.jpg");
    background-size: cover;
    
    /*background: linear-gradient(to top right, rgb(219, 234, 254), rgb(147, 197, 253), rgb(59, 130, 246));*/
    /*background: radial-gradient(at left top, rgb(56, 189, 248), rgb(186, 230, 253));*/
    /*background: linear-gradient(to top left, rgb(56, 189, 248), rgb(49, 46, 129));*/
}
.home__title{
    position: relative;
}
.home__title h1 {
    position: absolute;
    top: 50%;
    margin: -25px 0 0 190px;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em; 
    letter-spacing:1px; 
    text-transform:uppercase; 
    text-align:center; 
    white-space:nowrap; 
    padding-bottom:13px;
  }
  .home__title h1:nth-child(1){
    color: var(--white-color);
   /* -webkit-text-stroke: 2px var(--white-color); */
  }
  .home__title h1:nth-child(2){
    color: var(--second-color);
    animation: animatetitle 3s ease-in-out infinite;
  }
  .home__title__mobile{
    display: none;
  }
  @keyframes animatetitle{
    0%,100%{
        clip-path: polygon(0% 30%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }
    50%{
        clip-path: polygon(0% 60%, 16% 64%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
  }
  /*.home__title h1:before {
      background-color: var(--first-color)
      ;
      content: '';
      display: block;
      height: 3px;
      width: 75px;
      margin-bottom: 5px;
  }
  .home__title h1:after {
      background-color: var(--first-color);
      content: '';
      display: block;
    position:absolute; right:0; bottom:0;
      height: 3px;
      width: 75px;
      margin-bottom: 0.25em;
  }*/
  
.logo__container{
    position: absolute;
    top: 0.5rem;
    margin-left: 1rem;
    z-index: 2;
    display: flex;
    width: 95%;
}
.gallery__column{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15%;
}
.gallery__photo img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}
.gallery__photo h3{
    position: absolute;
    text-align: center;
    /*top: 15%;
    left: 50%;*/
    z-index: 1;
    /*transform: rotate(40deg);*/
    font-size: 1.5em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: darkblue;
}
.gallery__photo a:hover h3{
    color: darkblue;
   text-decoration: underline darkblue;
}
.clipped-border{
-webkit-clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    padding:5px;
    background:linear-gradient(grey,lightgrey);
    width:200px;
    height:200px;
    max-height:300px;
    max-width:300px;
    height: 100%;
    width:100%;
    transition:transform 0.2s;
    position:absolute;
    cursor:pointer;
}
.clipped-border:before{
    content:"";
    position:absolute;
    opacity:0.5;
    width:330px;
    height: 85px;
    background:white;
    /*top: 35px;
    left: 135px;*/
    z-index:1;
    transform:rotate(45deg);
    transition:transform 0.5s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .clipped-border:nth-child(odd){
    top:0;
  }
  .clipped-border:nth-child(even){
    top:230px;
  }
  .clipped-border:nth-child(1){
    left:-10px;
  }
  .clipped-border:nth-child(2){
    left:127px;
  }
  .clipped-border:nth-child(3){
    left:265px;
  }
  .clipped-border:nth-child(4){
    left:402px;
  }
  .clipped-border:nth-child(5){
    left:540px;
  }
  .clipped-border:nth-child(6){
    left:677px;
  }
  .clipped-border:nth-child(7){
    left:815px;
  }
  .clipped-border:nth-child(8){
    left:952px;
  }
  .clipped-border:nth-child(9){
    left:1090px;
  }
  .clipped-border:nth-child(10){
    left:1227px;
  }
  #clipped {
    -webkit-clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    
    }


.home__gallery{
    padding: 10px;
    margin: 0 auto;
    background: #f2f2f2;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 225px;
    grid-auto-flow: dense;
}
.vertical{
    grid-row: span 2;
}
.horizontal{
    grid-column: span 2;
}
.home__gallery div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.div__image{
    transition: 1s;
    position: relative;
}
.div__image:hover{
    /*transform: scale(1.1);*/
    cursor: pointer;
}
.div__image .img__title{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    border-radius: 0;
    background: linear-gradient(to left, rgba(85, 67, 70, 0.85), rgba(69, 80, 91, 0.85)) !important;
    color: white;
    font-size: 1.1em;
    height: 35px;
    padding-top: 5px;
    font-weight: 600;
    text-align: center;
}

.destino__img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: 83%;
}

.destino__title{
    position: absolute;
    top: 22%;
    left: 5%;
}
.destino__title h1{
    color: white;
    font-size: 2em;
}


.destino__tabs{
    width: 80%;
    height: 450px;
    margin: 70px auto 0;
    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    padding-bottom: 8rem;
}
.tabs__btn{
    display: flex;
    border-bottom: 1px solid #ccc;
}
.tabs__btn button{
    background: var(--white-color);
    color: var(--first-color);
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 20px;
    font-weight: bold;
    border-right: 1px solid var(--first-color-soft);
}

.tab__active{
    background: var(--first-color) !important;
    color: var(--white-color) !important;
}

.content__operador{
    background-color: #ff7846;
    padding: 1.5rem;
    display: none;
}
.content__active{
    display: block;
}
.destino__form{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: flex-end;
    gap: 15px;
}
.destino__form .input-label,
.products__container .input-label{
    color: var(--white-color);
    font-size: 18px;
}
.destino__form .input-field::webkit-datetime-edit{
    text-transform: uppercase;
}


.children__container{
    display: flex;
}


/****** HÓTEIS SF ******/
.hotel__container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: var(--mb-2-5);
    column-gap: var(--mb-1);
    margin-top: var(--mb-1);
}

.hotel__article{
    position: relative;
    /*overflow: hidden;*/
    max-height: 250px;
    min-height: 250px;
}

.hotel__img{
    /*width: 328px;*/
    width: 348px;
    border-radius: var(--mb-1-5);
    height: 100%;
    object-fit: cover;
}

.hotel__data{
    /*width: 280px;*/
    width: 325px;
    padding-inline: var(--mb-2);
    background-color: hsl(0, 0%, 100%);
    padding: var(--mb-0-75);
    box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
    border-radius: var(--mb-1);
    position: absolute;
    bottom: -2rem;
    left: 0;
    right: 0;
    margin-inline: auto;
}

.hotel__star{
    display: block;
    color: var(--second-color);
    margin-bottom: var(--mb-0-5);
}

.hotel__name{
    font-weight: 500;
    color: var(--second-color);
    font-size: var(--mb-1-25);
    margin-bottom: var(--mb-0-75);
}
.choose__section{
    background-color: var(--soft-grey-color);
}
.choose__stepper{
    position: relative;
    padding: 4rem 2rem 2.5rem;
    min-width: 270px;
}

.choose__stepper ul.progress-steps{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 0;
}
.choose__stepper ul.progress-steps li{
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    cursor: pointer;
}
.choose__stepper ul.progress-steps li > span{
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--mb-0-5);
    border-radius: 50%;
    background-color: lightblue;
    z-index: 1;
}
.choose__stepper ul.progress-steps li > p{
    font-size: var(--mb-1-25);
    font-weight: bold;
}
.choose__stepper ul.progress-steps li.active > span{
    color: var(--white-color);
    background-color: var(--second-color);
    z-index: 1;
}
.choose__stepper ul.progress-steps li:not(:last-child)::before{
    content: "";
    position: absolute;
    left: 25px;
    top: 35px;
    width: 2px;
    height: 65px;
    background-color: white;
}
.choose__stepper ul.progress-steps li.active:not(:last-child)::before{
    background-color: var(--second-color);
}

/*=============== CHOOSE Voo, Hotel ===============*/
.choose__container{
    /*margin-left: 3rem;
    margin-right: 3rem;*/
    display: grid;
    grid-template-columns: 1.5fr 9.5fr;
    position: relative;
}
.choose__tabs{
    display: flex;
    flex-direction: column;
    gap: var(--mb-1-5);
    height: 240px;
    border-right: 1px solid var(--first-color-soft);
    cursor: pointer;
}
.choose__tabs h3{
    padding: var(--mb-0-5);
}
.choose__tabs .active,
.choose__tabs h3:hover{
    background-color: var(--first-color-soft);
}
.choose__tabs .active{
    border-right: 3px solid var(--first-color);
}
.choose__tab__content{
    padding: var(--mb-2);
    background-color: var(--white-color);
    text-align: center;
    padding-bottom: 5rem;
    position: relative;
}
.choose__tab__content .choose__tab__div{
    display: none;
}
.choose__tab__content .active{
    display: block;
}
.choose__tabs .icon__backcolor{
    display: inline-block;
    margin-right: var(--mb-0-5);
}
.choose__tab__content .icon__backcolor{
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--first-color);
    color: var(--white-color);
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    line-height: 55px;
    border-radius: 50%;
    margin-bottom: var(--mb-0-75);
}
/*.choose__tab__indicator{
    position: absolute;
    width: 3px;
    height: 41px;
    background-color: var(--first-color);
    left: 192px;
    top: 0px;
    transition: all 500ms ease-in;
}*/

.boarding__pass{
    position: relative;
    /*width: 320px;*/
}
.fligth__textsegment{
    font-size: var(--mb-1-5);
    color: var(--grey-color);
    font-weight: bolder;
    margin-top: var(--mb-0-5);
}

.voo__boardingpass{
    display: flex;
    flex-direction: row;
    gap: 5rem;
    justify-content: center;
    background-color: var(--soft-grey-color);
    padding: 0 0 1.5rem;
}

.boarding__pass .card__voo{
    display: flex;
    background-color: var(--soft-grey-color);
    padding: var(--mb-0-75);
}

.boarding__pass .card__voo.card__top{
    text-align: center;
    justify-content: space-evenly;
    border-radius: 16px 16px 0 0;
}

.boarding__pass .card__voo.card__top .code{
    font-size: 32px;
    font-weight: 900;
}

.boarding__pass .card__voo.card__top .city{
    font-size: 15px;
    color: var(--first-color);
}

.flight__median{
    position: relative;
    height: 38px;
    width: 100px;
    top: 8px;
    border-radius: 100% 100% 0 0 / 180% 190% 0 0;
    border: 2px dashed transparent;
    border-top-color: var(--first-color-soft);
}

.flight__median::before{
    content: '';
    position: absolute;
    height: 6px;
    width: 6px;
    top: 14px;
    left: 5px;
    background-color: var(--first-color);
    border-radius: 50%;
    box-shadow: 80px 0 0 var(--first-color);
}

.flight__median i{
    position: relative;
    top: -11px;
    color: var(--first-color);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(90deg);
    display: inline-block;
    font-weight: 600;
    font-size: 1.32rem;
}

.boarding__pass .card__voo.card__bottom{
    /*flex-direction: column;*/
    border-radius: 0 0 16px 16px;
}

.boarding__pass .card__voo.card__bottom .card__row{
    display: flex;
    justify-content: space-around;
    gap: var(--mb-2);
}

.boarding__pass .card__voo.card__bottom .card__row:not(:last-child){
    margin-bottom: var(--mb-1);
}

.boarding__pass .card__voo.card__bottom .label{
    font-size: 12px;
    color: var(--first-color);
}

.boarding__pass .card__voo.card__bottom .content{
    font-size: 15px;
    font-weight: var(--font-medium);
}

.boarding__pass .card__voo.card__bottom .content-checkbox{
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 10% 80%;
}

.median{
    height: 24px;
    margin: 0 auto;
    background-image: radial-gradient(circle, transparent 72%, var(--soft-grey-color) 72%), 
    repeating-linear-gradient(90deg, var(--soft-grey-color) 0, var(--soft-grey-color) 2%, var(--first-color) 2%, var(--first-color) 4%),
    linear-gradient(var(--soft-grey-color), var(--soft-grey-color)),
    radial-gradient(circle, transparent 72%, var(--soft-grey-color) 72%);
    background-size:  24px 24px, calc(100% - 24px) 1px, calc(100% - 24px) 100%, 24px 24px;
    background-position: -12px 0, 12px 50%, 12px 0, calc(100% + 12px) 0;
    background-repeat: no-repeat;
}

.voo__select{
    margin-bottom: var(--mb-0-75);
    text-align: end;
    padding-right: var(--mb-1);
    color: green;
}

.info__voo{
    margin-top: 2rem;
    height: 40px;
    background: var(--text-color);
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: bold;
}
.fligth__card{
    box-shadow: 1px 1px 20px 0px hsla(0, 0%, 0%, .15);
    margin-top: 0.75rem;
}


.tab__content__hotel{
    padding: 0 !important;
    padding-left: var(--mb-2) !important;
}

.hotel{
    margin-bottom: var(--mb-1-5);
}
.hotel__list{
    text-align: start;
    margin-top: var(--mb-2);
}
.hotel__img{
    flex-basis: 30%;
}
.hotel__img img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.hotel__info{
    margin-top: var(--mb-1);
    height: 220px;  
    display: flex;
}

.hotel__title{
    background: var(--first-color);
    padding: var(--mb-0-75);
    width: 100%;
    font-weight: bold;
    text-align: center;
    color: var(--white-color);
    height: 18%;
}

.span__star i{
    margin-left: var(--mb-0-5);
}

.hotel__detail{
    flex-basis: 70%;
    background-color: var(--soft-grey-color);
}
.hotel__rooms__content{
    display: grid;
    grid-template-columns: 8fr 1fr;
    height: 82%;
}
.hotel__btnrooms{
    text-align: end;
}
.hotel__rooms{
    display: flex;
    flex-direction: row;
    text-align: center;
    gap: var(--mb-0-75);
    justify-content: center;
    margin-top: var(--mb-0-5);
    flex-wrap: wrap;
}
.hotel__selections{
    padding: .5rem 1rem;
}
.hotel__selections .dropdown__menu{
    max-height: 300px;
    overflow-y: auto;
}
.hotel__selections_sf{
    margin-top: 2rem;
    margin-left: 1rem;
}
.room__info{
    width: 250px;
}
.room__info__more{
    width: 350px;
}
.room__info .card__voo.card__bottom .card__row{
    flex-direction: column;
    gap: 5px;
}
.room__info .card__voo{
    display: block;
}
.room__info .card__top p{
    font-size: 20px;
    font-weight: var(--font-semi-bold);
}

.btn__room,
.btn__seguro{
    padding: var(--mb-0-25) var(--mb-0-5);
    font-weight: var(--font-medium);
    border-radius: var(--mb-0-5);
}
.btn__roomselected,
.btn__seguroselected{
    background-color: green;
}
.btn__moreroom,
.btn__lessroom{
    background-color: var(--first-color-soft);
}

.seguros__list{
    gap: var(--mb-1-5);
    margin-top: var(--mb-1);
}

.seguros__list .card__bottom .card__row .card__item:last-child{
    margin-top: var(--mb-1);
}
.servico__info .card__top{
    background-color: var(--first-color);
}

.ring
{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:150px;
  height:150px;
  background:transparent;
  border:3px solid var(--first-color-soft);
  border-radius:50%;
  text-align:center;
  line-height:150px;
  font-family:sans-serif;
  font-size:20px;
  color:var(--first-color);
  letter-spacing:4px;
  text-transform:uppercase;
  text-shadow:0 0 10px var(--first-color-soft);
  box-shadow:0 0 20px rgba(0,0,0,.5);
}
.ring:before
{
  content:'';
  position:absolute;
  top:-3px;
  left:-3px;
  width:100%;
  height:100%;
  border:3px solid transparent;
  border-top:3px solid var(--first-color);
  border-right:3px solid var(--first-color);
  border-radius:50%;
  animation:animateC 2s linear infinite;
}
.ring span
{
  display:block;
  position:absolute;
  top:calc(50% - 2px);
  left:50%;
  width:50%;
  height:4px;
  background:transparent;
  transform-origin:left;
  animation:animate 2s linear infinite;
}
.ring span:before
{
  content:'';
  position:absolute;
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--first-color);
  top:-6px;
  right:-8px;
  box-shadow:0 0 20px var(--first-color);
}
@keyframes animateC
{
  0%
  {
    transform:rotate(0deg);
  }
  100%
  {
    transform:rotate(360deg);
  }
}
@keyframes animate
{
  0%
  {
    transform:rotate(45deg);
  }
  100%
  {
    transform:rotate(405deg);
  }
}

/** ORÇAMENTO **/
.orcamento__section{
    padding: var(--mb-2-5) 0;
}
.orcamento__container{
    display: flex;
    flex-direction: row;
    margin-top: var(--mb-1-5);
}
.orcamento__left{
    width: 65%;
}
.orcamento__right{
    width: 30%;
    margin-left: 2rem;
}
.orcamento__form{
    text-align: start;
    margin-bottom: var(--mb-2-5);
}
.form__title{
    margin-bottom: var(--mb-1);
}
.form__person h4{
    margin-bottom: var(--mb-0-5);
}
.form__person{
    margin-bottom: var(--mb-0-75);
}
.form__person__fields{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form__faturacao__fields{
    display: flex;
    align-items: center;
    gap: var(--mb-0-75);
}
.input__field{
    position: relative;
    width: 225px;
}
.input__field input{
    width: 100%;
    padding: var(--mb-0-5);
    border: 1px solid black;
    border-radius: 5px;
    outline: none;
    font-size: 1em;
    transition: 0.5s;
}
.input__field span{
    position: absolute;
    left: 0;
    padding: var(--mb-0-5);
    pointer-events: none;
    font-size: 1em;
    text-transform: uppercase;
    transition: 0.5s;
}
.input__field input:valid ~ span:not(.notrequired),
.input__field input:focus ~ span,
.input__field input ~ span.filled{
    transform: translateX(10px) translateY(-7px);
    font-size: 0.75em;
    padding: 0 10px;
    background: var(--first-color);
    border-radius: 2px;
    border-left: 1px solid var(--first-color);
    border-right: 1px solid var(--first-color);
    letter-spacing: 0.1em;
}
.input__field input:valid :not(.notrequired),
.input__field input:focus{
    border: 1px solid var(--first-color);
    padding: var(--mb-0-75);
}
#resumomobile,
#btnreservarmobile{
    display: none;
}
.orcamento__total{
    border-radius: var(--mb-0-5);
    padding: var(--mb-2);
    background-color: var(--first-color);
    margin-bottom: var(--mb-2);
}
.orcamento__total h2{
    margin-bottom: var(--mb-1);
    border-bottom: 2px solid var(--text-color);
}
.orcamento__total span{
    text-align: end;
}
.orcamento__total li{
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--mb-0-75);
}
.orcamento__total li p{
    flex: 1;
}
.orcamento__total .total{
    text-align: end;
}
.orcamento__table,
.orcamento__table th,
.orcamento__table td{
    padding: var(--mb-1);
    border-collapse: collapse;
}
.orcamento__table{
    border-radius: var(--mb-0-5);
}
.orcamento__table thead th{
    background: var(--first-color);
}
.orcamento__table tbody td i.status__ok{
    color: green;
}
.orcamento__table tbody td i.status__notok{
    color: red;
}
.orcamento__table tbody tr {
    border-bottom: 1px solid #dddddd;
    text-align: center;
}

.orcamento__table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.orcamento__table tbody tr:last-of-type {
    border-bottom: 3px solid var(--first-color);
}
.orcamento__table tbody tr td:first-child{
    text-align: start;
}
.orcamento__btn__reservar,
.orcamento__title{
    text-align: center;
}
.orcamento__title h1{
    margin-bottom: var(--mb-0-5);
}
.orcamento__title i{
    color: var(--first-color);
    padding: 0 var(--mb-0-5);
}


.orcamento__detail{
    display: flex;
    flex-direction: row;
    gap: var(--mb-2);
    margin-bottom: var(--mb-2);
}
.orcamento__detail__card{
    border: 2px solid var(--first-color);
    border-radius: var(--mb-0-5);
    padding: var(--mb-0-75);
    text-align: center;
    flex-basis: 50%;
}
.orcamento__detail__card .fligth__textsegment{
    font-size: var(--mb-1-25);
    color: var(--text-color);
}
.orcamento__detail__card span{
    font-size: 1.5em;
    font-weight: 600;
    margin-left: var(--mb-0-5);
}
.orcamento__detail__card .icon__backcolor{
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--first-color);
    color: var(--white-color);
    font-size: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
}
.card__detail__icon__flight{
    position: relative;
    height: 50px;
    width: 100px;
    top: 12px;
    border-radius: 100% 100% 0 0 / 180% 180% 0 0;
    border: 2px dashed transparent;
    border-top-color: var(--first-color-soft);
}
.card__detail__icon__flight::before{
    content: '';
    position: absolute;
    height: 6px;
    width: 6px;
    top: 14px;
    left: 7px;
    background-color: var(--first-color);
    border-radius: 50%;
    box-shadow: 72px 0 0 var(--first-color);
}
.icon__flight{
    position: relative;
    top: -11px;
    color: var(--first-color);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(90deg);
    display: inline-block;
    font-weight: 600;
    font-size: 1.32rem;
}
.columns__flight{
    /*display: flex;*/
    display: grid;
    grid-template-columns: 30% auto auto;
    gap: 25px;
    text-align: center;
}
.card__detail p:first-child{
    font-weight: 600;
}
.columns__hotel{
    display: grid;
    text-align: center;
}
.columns__hotel_4col{
    grid-template-columns: repeat(4, 1fr);
}
.columns__hotel50_50{
    grid-template-columns: 1fr 1fr;
}
.columns__servicos,
.columns__hotel,
.columns__flight{
    margin-top: var(--mb-1);
}
.columns__servicos ul li{
    text-align: start;
    margin-bottom: var(--mb-0-5);
}
.orcamento__termos{
    margin-bottom: var(--mb-1);
    display: flex;
    justify-content: center;
    gap: 10px;
}
.orcamento__currdate{
    font-size: 10px;
    font-weight: bold;
}     
.formOrcamento{
    display: none;
}
.notes{
    font-weight: bold;
    font-size: 20px;
  }

/*=============== INFORMAÇÃO LEGAL ===============*/
.informacaolegal{
    text-align: justify;
    text-justify: inter-word;
  }
  
  .informacaolegal h1,
  .informacaolegal p{
    margin-bottom: var(--mb-1);
  }
  
  .informacaolegal h3{
    margin-bottom: var(--mb-0-5);
  }

  /**** PAGE THANK YOU ***/
.variable__thanks {
    display: flex;
    font-variation-settings: "wght"275, "wdth"50;
    text-align: center;
    animation: swapthings 3s infinite both cubic-bezier(0.17, 0.04, 0.04, 0.99);
    font-size: var(--thanks-font-size);
    justify-content: center;
    color: var(--first-color);
  }
  
  .label__thank {
    animation: swapthings2 3s infinite both cubic-bezier(0.17, 0.04, 0.04, 0.99);
  }
  .text__thanks{
    width: 60%;
    margin: 1rem auto;
    padding: 2rem;
    text-align: justify;
    transition: all 0.3s;
  }
  
  .text__thanks p{
    line-height: 1.5;
    letter-spacing: 0.3px;
    word-spacing: 2px;
  }
  .text__thanks a{
    display: flex;
    justify-content: center;
  }
/*=============== FOOTER ===============*/
.logo__footer{
    width: 100px;
}
.logo__footer img{
    width: 100px;
}
footer{
    background-color: var(--first-color-soft);
}
.footer__container{
    row-gap: 5rem;
}
.footer__content{
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    row-gap: 2rem;
    gap: var(--mb-1);
}
.footer__title,
.footer__subtitle{
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
}
.footer__social{
    font-size: 1.25rem;
    color: var(--title-color);
    margin-right: var(--mb-1-25);
}
.footer__social:hover,
.footer__link:hover{
    color: var(--orange-color-logo);
}
.footer__item{
    margin-bottom: var(--mb-0-75);
}
.footer__container .info span:nth-child(1) {
    margin-right:  var(--mb-0-75);
}
.footer__link{
    color: var(--text-color);
}
.footer__rights{
    display: flex;
    flex-direction: column;
    row-gap: var(--mb-1-5);
    text-align: center;
}
.footer__copy,
.footer__terms-link{
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}
.footer__apavt{
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    gap: var(--mb-1-25);
}
.footer__apavt img{
    width: 50px;
}


/*=============== FOOTER NEW ===============*/
.footer-distributed{
	background: var(--first-color);
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 55px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
	width: 40%;
}

.footer-icons-img{
    display: flex;
    gap: 3rem;
}

/* The company logo */

.footer-distributed h3{
	font: normal 30px 'Open Sans', cursive;
	margin: 0;
}

/* Footer links */

.footer-distributed .footer-links{
	color:  #ffffff;
	margin: 20px 0 12px;
	padding: 0;
}

.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
    font-weight:400;
	text-decoration: none;
	color:  inherit;
}
.footer-distributed .footer-links a:hover{
    text-decoration: underline;
}
.footer-distributed .footer-company-name{
	color:  white;
	font-size: 14px;
	font-weight: normal;
	margin-top: var(--mb-1);
}

/* Footer Center */
.footer-distributed .footer-center{
	width: 35%;
}

.footer-distributed .footer-center div{
    margin-bottom: var(--mb-0-5);
}

.footer-distributed .footer-center i{
	background-color: var(--first-color-soft);
    padding: var(--mb-0-5);
	font-size: 20px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

.footer-distributed .footer-center p{
	display: inline-block;
    font-weight:400;
	vertical-align: middle;
	margin:0;
    color: var(--white-color);
}

.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer-distributed .footer-center p a{
	color:  var(--white-color);
	text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
	width: 20%;
}
.footer-subscribe{
    margin-top: var(--mb-0-75) !important;
    margin-bottom: var(--mb-0-5) !important;
}
.footer-distributed .footer-company-about{
	line-height: 20px;
	color:  var(--white-color);
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}

.footer-distributed .footer-company-about span{
	display: block;
	color:  #ffffff;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
}
.footer-distributed .footer-icons{
	margin-top: 25px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color: var(--first-color-soft);
	border-radius: 2px;

	font-size: 20px;
	text-align: center;
	line-height: 35px;

	margin-right: 3px;
	margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover{
    color: var(--white-color);
}

.subscribe__form{
    text-align: center;
}

.subscribe__form .input__container{
    margin-bottom: var(--mb-0-5);
}

.subscribe__form .input__container input{
    border: 1px solid var(--white-color);
    width: 90%;
    border-radius: var(--mb-0-25);
    padding: var(--mb-0-25);
}

.subscribe__form .input__container label{
    color: var(--white-color);
}
.btn__subscribe{
    margin-top: var(--mb-0-25);
    padding: var(--mb-0-25) var(--mb-0-5);
    color: var(--text-color);
    background-color: var(--first-color-soft);
}
.btn__subscribe:hover{
    color: var(--white-color);
    background-color: var(--first-color-soft);
}


.loading-page {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    /*background: linear-gradient(to right, #2c5364, #203a43, #0f2027);*/
    background-color: rgb(0 0 0 / .8);
    z-index: 1;
  
    height: 100%;
    width: 100%;
    /*display: flex;*/
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    color: #191654;
  }
  
  #svg {
    height: 100px;
    width: 100px;
    stroke: white;
    fill-opacity: 0;
    stroke-width: 3px;
    stroke-dasharray: 4500;
    animation: draw 4s infinite;
  }
  @keyframes draw {
    0% {
      stroke-dashoffset: 4500;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }

  @-webkit-keyframes draw {
    0% {
        stroke-dashoffset: 4500;
    }
    100% {
        stroke-dashoffset: 0;
    }
  }

  @-webkit-keyframes draw {
    0% {
        -webkit-stroke-dashoffset: 4500;
    }
    100% {
        -webkit-stroke-dashoffset: 0;
    }
  }
  
  .name-container {
    height: 30px;
    overflow: hidden;
  }
  
  .logo-name {
    color: #fff;
    font-size: 20px;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-left: 20px;
    font-weight: bolder;
  }

  .circle{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    /*border: 1px solid white;*/
    animation: circle 2s linear infinite;
    /*background: white;*/
    color: var(--second-color);
    padding: 0.5rem;
  }

  @keyframes circle{
    0%{
        transform: rotate(0deg) translate(-10px) rotate(0deg);
      }
      100%{
        transform: rotate(360deg) translate(-10px) rotate(-360deg);
      }
  }






/** RESPONSIVE **/
@media (max-width: 880px) {

	.footer-distributed{
		font-weight: bold;
        font-size: 14px;
        padding: 15px;
        display: flex;
        flex-direction: column-reverse;
	}

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

    .footer-distributed .footer-center{
        text-align: start;
    }

	.footer-distributed .footer-center i{
		margin-left: 0;
	}

    .footer-distributed .footer-center i{
        font-size: 15px;
    }
    .footer-distributed h3{
        font: normal 25px 'Open Sans', cursive;
    }
}

@media (min-width: 1645px){
    .gallery__column{
        left: 2%;
    }
}

@media (min-width: 1750px){
    .gallery__column{
        left: 8%;
    }
}

@media(max-width: 768px){
    /*.home__title{
        display: none;
    }*/
    .section__title{
        display: block;
        margin-top: 0;
    }
    .section__title h2{
        color: var(--first-color);
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
    }
    .section__title h2 i{
        font-size: 20px;
    }
    .home__container {
        min-height: 790px;
    }
    .header__logo img{
        width: 70px;
        top: 28px;
        left: 25px;
    }
    .home__title h1{
        margin: 0;
        font-size: 1em;
    }
    .clipped-border{
        max-height: 200px;
        max-width: 225px;
    }
    .clipped-border:nth-child(3){
        left: 200px;
    }
    .clipped-border:nth-child(even){
        top: 152px;
    }
    .clipped-border:nth-child(2){
        left: 95px;
    }
    .clipped-border:nth-child(4){
        left: 305px;
    }
    .clipped-border:nth-child(5){
        left: 410px;
    }
    .clipped-border:nth-child(6){
        top: 303px;
        left: -10px;
    }
    .clipped-border:nth-child(7){
        top: 303px;
        left: 200px;
    }
    .clipped-border:nth-child(8){
        top: 303px;
        left: 410px;
    }
    .clipped-border:nth-child(9){
        top: 455px;
        left: 95px;
    }
    .clipped-border:nth-child(10){
        top: 455px;
        left: 305px;
    }
    .gallery__photo h3 {
        font-size: 1em;
    }
    .gallery__column{
        top: 10%;
        left: 5%;
    }
}

@media(max-width: 660px){
    .home__container {
        min-height: 950px;
    }
    .header__logo img{
        width: 70px;
        top: 28px;
        left: 25px;
    }
    .home__title h1{
        margin: 0;
        font-size: 1em;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -20%);
    }
    .home__title__web{
        display: none;
    }
    .home__title__mobile{
        display: block;
    }
    .clipped-border{
        max-height: 200px;
        max-width: 225px;
    }
    .clipped-border:nth-child(3){
        left: 200px;
    }
    .clipped-border:nth-child(even){
        top: 152px;
    }
    .clipped-border:nth-child(2){
        left: 95px;
    }
    .clipped-border:nth-child(4){
        left: 305px;
    }
    .clipped-border:nth-child(5){
        left: -10px;
        top: 305px;
    }
    .clipped-border:nth-child(6){
        top: 460px;
        left: 95px;
    }
    .clipped-border:nth-child(7){
        top: 305px;
        left: 200px;
    }
    .clipped-border:nth-child(8){
        top: 460px;
        left: 305px;
    }
    .clipped-border:nth-child(9){
        top: 615px;
        left: -10px;
    }
    .clipped-border:nth-child(10){
        top: 615px;
        left: 200px;
    }
    .gallery__photo h3 {
        font-size: 1em;
    }
    .gallery__column{
        top: 10%;
        left: 5%;
    }
    .nav-btn {
        visibility: hidden;
      }
      .swiper-pagination-bullet {
        visibility: visible;
      }
}

@media (max-width: 480px){
    .logo__container{
        top: var(--mb-0-25);
        margin-left: var(--mb-0-5);
    }
    .logo__text{
        font-size: 0.5rem;
    }
    .section__title{
        margin-top: -5%;
    }
    .home__container{
        min-height: 1750px;
    }
    .header__logo img{
        width: 50px;
        top: 20px;
        left: 20px;
    }
    .section{
        padding: 1.5rem 0 1.5rem;
      }
    .div__image .img__title{
        font-size: 16px;
        height: 25px;
        font-weight: 500;
    }
    .destino__title{
        top: 13%;
    }
    .destino__title h1{
        font-size: 1.5em;
    }
    .destino__form{
        grid-template-columns: auto;
    }
    .destino__tabs{
        margin: 40px auto 0;
        height: auto;
        padding-bottom: 3rem;
    }
    .destino__img{
        height: 108vh;
    }
    .ring{
        top: 130%;
    }
    .tabs__btn{
        flex-wrap: wrap;
    }
    .tabs__btn button{
        margin-right: 0;
        padding: 10px;
        font-size: 15px;
        flex: 50%;
        border-bottom: 1px solid var(--first-color-soft);
    }
    .content__operador{
        padding: var(--mb-1);
    }
    .destino__form .input-field{
        padding: var(--mb-0-75);
        width: 100%;
    }
    .dropdown__button{
        padding: var(--mb-0-5);
        width: 100%;
    }
    .btn__search{
        width: 100%;
        padding: var(--mb-0-75);
    }
    .show-dropdown .dropdown__menu{
        z-index: 1;
    }
    .choose__container{
        margin-left: 0;
        margin-right: 0;
    }
    .tabs .tab__header{
        /*width: 130px;*/
        display: flex;
        justify-content: space-around;
        width: 100%;
    }
    .tabs .tab__header div{
        font-size: 20px;
    }
    .tabs .tab__header div .icon__backcolor{
        margin-right: var(--mb-0-25);
    }
    .tabs .tab__indicator{
        /*left: 127px;*/
        display: none;
    }
    .voo__boardingpass{
        flex-direction: column;
        gap: var(--mb-2);
        align-items: center;
    }
    .tabs{
        width: 100%;
    }
    .tabs .tab__content{
        /*margin-left: 135px;*/
        margin-top: 5rem;
    }
    .logo__container{
        flex-direction: column;
    }
    .clipped-border{
        max-height: 200px;
        max-width: 210px;
    }
    .clipped-border:nth-child(odd){
        left: 0;
    }
    .clipped-border:nth-child(3){
        top: 300px;
    }
    .clipped-border:nth-child(even){
        left: 95px;
    }
    .clipped-border:nth-child(2){
        top: 150px;
    }
    .clipped-border:nth-child(4){
        top: 450px;
    }
    .clipped-border:nth-child(5){
        top: 600px;
    }
    .clipped-border:nth-child(6){
        top: 750px;
    }
    .clipped-border:nth-child(7){
        top: 900px;
    }
    .clipped-border:nth-child(8){
        top: 1050px;
    }
    .clipped-border:nth-child(9){
        top: 1200px;
    }
    .clipped-border:nth-child(10){
        top: 1350px;
    }
    .gallery__photo h3 {
        font-size: 1em;
    }
    .gallery__column{
        top: 10%;
    }
    .hotel__info,
    .hotel__rooms{
        flex-direction: column;
    }
    .orcamento__detail,
    .form__person__fields{
        flex-direction: column;
        margin-top: 1rem;
    }
    .orcamento__container{
        flex-direction: column;
    }
    .orcamento__left, 
    .orcamento__right,
    .input__field{
        width: 100%;
    }
    .orcamento__right{
        margin-left: 0;
    }
    .form__person__fields{
        gap: var(--mb-0-75);
    }
    .input__field input,
    .input__field span{
        font-size: 0.9em;
    }
    .columns__flight{
        grid-template-columns: auto auto auto;
        gap: 0;
    }
    .card__detail__icon__flight::before{
        box-shadow: 75px 0 0 var(--first-color);
    }
    .choose__container{
        grid-template-columns: none;
    }
    .choose__tabs{
        flex-direction: row;
        height: 50px;
        justify-content: space-between;
        gap: 0;
        text-align: center;
    }
    .choose__tabs h3{
        width: 30%;
        font-size: 1rem;
    }
    .choose__tabs h3.tab__orcamento{
        width: 40%;
    }
    .choose__tab__content{
        margin-top: var(--mb-1-25);
        padding: var(--mb-1);
    }
    .tab__content__hotel{
        padding-left: 0 !important;
    }
    .title__img__container{
        height: 180px;
    }
    .title__orcamento{
        padding: 1.5rem 1rem 1rem 1.5rem !important;
    }
    .title__img__container h2{
        padding: 0 1.5rem;
        font-size: 1em;
        color: black;
        text-align: center;
    }
    .title__img__container h1{
        font-size: 1.5em;
        padding: 2rem;
        text-align: center;
    }
    .hotel__title{
        padding: var(--mb-0-5);
    }
    .hotel__img{
        width: 100%;
    }
    .hotel__img img{
        width: 100%;
        height: 100px;
    }
    .hotel__rooms{
        align-items: center;
        justify-content: initial;
    }
    .boarding__pass .card__voo{
        padding: var(--mb-0-25);
    }
    .median{
        height: 10px;
    }
    .boarding__pass .card__voo{
        padding: var(--mb-0-25);
    }
    .btn__room{
        font-size: var(--smaller-font-size);
        padding: var(--mb-0-25);
    }
    .ring{
        width: 100px;
        height: 100px;
        font-size: 10px;
        line-height: 100px;
    }
    .logo__container-withoutimage{
        height: 60px;
    }
    .header-withoutimage{
        padding-left: var(--mb-1);
    }
    .boarding__pass .card__voo.card__top .code{
        font-size: 25px;
    }
    .source__voo .code{
        margin-left: var(--mb-1-5);
    }
    .destination__voo .code{
        margin-right: var(--mb-1-5);
    }
    .hotel__btnrooms{
        margin-right: 30px;
    }
    .hotel__info{
        margin-top: var(--mb-0-5);
        height: auto;
    }
    .room__info{
        width: 90%;
    }
    .columns__hotel{
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    .text__thanks{
        width: 100%;
      }
    .destino__form .input-label,
    .products__container .input-label{
        font-size: 15px;
    }
    .choose__stepper{
        padding: 1.5rem 0;
        min-width: 100%;
    }
    .choose__stepper ul.progress-steps{
        flex-direction: row;
        gap: var(--mb-1);
    }
    .choose__stepper ul.progress-steps li{
        flex-direction: column;
        margin-bottom: 0rem;
        flex: 20%;
        gap: 0.25rem;
        text-align: center;
    }
    .choose__stepper ul.progress-steps li:not(:last-child)::before{
        left: 40px;
        top: 20px;
        width: 100px;
        height: 2px;
    }
    .choose__stepper ul.progress-steps li > span{
        width: 40px;
        height: 40px;
    }
    .choose__stepper ul.progress-steps li > p{
        font-size: 0.70rem;
    }
    .fligth__textsegment{
        font-size: var(--mb-1);
    }
    .fligth__card{
        margin: var(--mb-0-75);
    }
    .hotel__rooms__content{
        grid-template-columns: none;    
        grid-template-rows: 1fr 40px;
        height: 100%;
        gap: 0.5rem;
    }
    .orcamento__detail__card .icon__backcolor{
        width: 30px;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
    }
    .hotel__container{
        grid-template-columns: none;
    }
    .hotel__name{
        font-size: var(--mb-1);
    }
    .btn__select__hotel{
       margin-top: var(--mb-0-25);
    }
    .hotel__article{
        max-height: 200px;
        min-height: 200px;
        width: 90%;
        justify-self: center;
    }
    .hotel__data{
        width: 80%;   
    }
    .flip-card-container,
    .flip-card-container-mobile{
        height: 160px;
    }
    .card-back{
        height: auto;
    }
    .icon-back-destino{
        display: block;
    }
    .h3__title,
    .form__title h3{
        font-size: 1.25rem;
    }
    .h3__subtitle{
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    .columns__hotel_4col{
        row-gap: 15px;
    }
    .form__title h3{
        font-size: 1rem;
    }
    .orcamento__section{
        padding: 1rem 0;
    }
    .orcamento__total{
        padding: 1rem 1.5rem;
    }
    .orcamento__left{
        margin-top: 2rem;
    }
    .title__content{
        width: 100%;
        top: 55%;
    }
    .title__content .columns__hotel_4col{
        grid-template-columns: repeat(4, 1fr);
    }
    .choose__tab__content .icon__backcolor{
        margin-top: 3rem;
    }
    .choose_tab__content__sf .icon__backcolor{
        margin-top: 0rem !important;
    }
    .hotel__container a{
        display: flex;
        justify-content: center;
    }
    .product-tile{
        min-width: 100%;
    }
    .hotel__selections_sf{
        margin: 0;
    }
    .headerNew h1{
        font-size: 8vw;
        width: 80%;
        margin-left: 2rem;
    }
    .boarding__pass .card__voo.card__bottom .card__row{
        gap: 1rem;
    }
    .link--arrowed{
        height: auto;
        line-height: 1.5rem;
    }
    .loading-page{
        max-height: 100vh;
    }
    #svg {
        width: 35px;
        height: 35px;
        stroke-width: 8px;
    }
    .logo-name{
        font-size: 15px;
    }
    #resumomobile,
    #btnreservarmobile{
        display: block;
    }
    #resumoweb,
    #btnreservarweb{
        display: none;
    }
}
