*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background-color: rgb(255, 255, 255);
    height: auto;
    align-items: center;
    justify-content: center;
    scroll-behavior: smooth;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    align-items: center;
}

/*---Header Style*/
header{
    width: 100%;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: .5s;
    z-index: 10;
}

header .interface{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img{
    max-width: 120px;
}

/* navbar effect */
header .logo img.logo-color{
    display: none;
}

header.roll{
    background-color: #fff;
    padding: 20px 0;
    height: 70px;
    box-shadow: 0 0 8px #25252569;
}

header.roll .menu-desktop nav ul li a{
    color: #053B49;
}

header.roll .btn-contato button{
    color: #ff914d;
}
header.roll .btn-contato button a{
    color: #ffffff;
}

header.roll .logo .logo-white{
    display: none;
}
header.roll .logo .logo-color{
    display: block;
}
#user{
    font-weight: 500;
}

header .menu-desktop nav ul{
    list-style-type: none;
}

header .menu-desktop nav ul li{
    display: inline;
    margin: 0 15px;
}

header .menu-desktop nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    display: inline-block;
    transition: .2s;
}
header .menu-desktop nav ul li a.active{
    color: #ff914d;
    font-weight: 600;
}

.menu-desktop nav a:hover{
    transform: scale(1.2);
    color: #ff914d;

}

header .btn-contato button{
    width: 180px;
    height: 35px;
    margin-right: 25px;
    margin-bottom: 2px;
}

/* mobile menu style */
header .btn-menu-mob{
    display: none;
    position: relative;
    z-index: 99999999;
}

header .btn-menu-mob div{
    background-color: #fff;
    height: 2px;
    margin: 10px 0;
    transition: .2s;
}

header .btn-menu-mob .line-menumob-1{
    width: 30px;
}
header .btn-menu-mob .line-menumob-2{
    width: 30px;
}
header .btn-menu-mob .line-menumob-3{
    width: 30px;
}

header.roll .btn-menu-mob div{
    background-color: #000;
}

header .btn-menu-mob .line-menumob-1.ativo1{
    transform: rotate(45deg) translate(30%);
    background-color: #fff;
}

header .btn-menu-mob .line-menumob-2.ativo2{
    transform: rotate(-45deg) translate(30%);
    background-color: #fff;
}

header .btn-menu-mob .line-menumob-3.ativo3{
    display: none;
}

/* Additional style */
header .menu-mobile{
    width: 0;
    height: 0;
    background-color: #ff914de7;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: .5s;
}

header .menu-mobile nav{
    width: 100%;
}

header .menu-mobile nav ul{
    list-style-type: none;
}

header .menu-mobile nav a{
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    padding: 20px 0;
    display: block;
    font-weight: 500;
    transition: .5s;
}

header .menu-mobile nav a:hover{
    background-color: #053B49;
}

header .menu-mobile.abrir{
    width: 100%;
    height: 100vh;
}

.dropdownlang {
    position: relative;
    margin-left: 25px;
}

.dropdownlang-menu {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: rgba(180, 180, 180, 0.104);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.412);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 1000;
    min-width: 120px;
}

.dropdownlang-menu li {
    padding: 8px 16px;
}

.dropdownlang-menu li a {
    text-decoration: none;
    display: block;
}

.dropdownlang-menu li a:hover {
    color: #ff914d;
}
  

body.no-overflow{
    overflow: hidden;
}

header .btn-contato button, .hero-site button, .portfolio button{
    font-size: 18px;
    background-color: transparent;
    border: 1px solid #ff914d;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    transition: .5s;
}

header .btn-contato button:hover, .portfolio button:hover{
    background-color: #ff914d;
    color: #fff;
}
/*---/Header Style*/

/*---Hero Section Style*/
section.hero-site{
    height: 100vh;
    background-image: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.715)), url(../images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    scroll-behavior: smooth;
}

.hero-site .interface{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.hero-site .txt-hero h1{
    font-size: 2.7em;
    line-height: 50px;
    font-weight: 200;
}

#maxpot {
    font-weight: bold;
    background: linear-gradient(90deg, #ff914d, #ffcbab, #ff914d, #ff914d);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine 2s linear infinite;
  }
  
  @keyframes shine {
    to {
      background-position: 200% center;
    }
  }  

.hero-site .txt-hero p strong{
    color: #ff914d;
}

.hero-site .txt-hero p{
    font-size: 16px;
    font-weight: 380;
    margin: 10px 0;
    text-align: left;
}

.hero-site .txt-hero p span{
    display: block;
}

.hero-site button{
    width: 450px;
    height: 60px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    background-color: #ff914d;
    box-shadow: 0 0 20px #ffa46c;
}
.hero-site button:hover{
    background-color: #fff;
    transform: scale(1.08);
    color: #ff914d;
}

/* ---Arrow animation */
#scroll-cta {
    text-align: center;
    cursor: pointer;
    color: #fcfcfc89;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 100;
    margin-top: -120px;
    opacity: 0; 
    transition: opacity 1s ease-in-out;
}

.start-float {
    animation: float 1s ease-in-out infinite;
}

.start-trail {
    animation: trail 1s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes trail {
    0% {
        text-shadow:
        0 0 0 rgba(0,0,0,0.2),
        0 0 0 rgba(0,0,0,0.1),
        0 0 0 rgba(0,0,0,0.05);
        transform: translateY(0px);
    }
    50% {
        text-shadow:
        0 8px 6px rgba(0,0,0,0.2),
        0 16px 12px rgba(0,0,0,0.1),
        0 24px 18px rgba(0,0,0,0.05);
        transform: translateY(5px);
    }
    100% {
        text-shadow:
        0 0 0 rgba(0,0,0,0.2),
        0 0 0 rgba(0,0,0,0.1),
        0 0 0 rgba(0,0,0,0.05);
        transform: translateY(0px);
    }
}
/* ---/Arrow animation */
.video-hero {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}
.video-hero .video-wrapper {
    position: relative;
    height: 310px;
    width: 550px;
    max-width: 100%;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
}
.video-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
}
.video-hero .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}
.video-hero .play-button:hover {
    width: 85px;
    height: 85px;
    color: #ff914d;
    background: #00000071;
}
.video-hero .play-button::before {
    content: '';
    display: block;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
}

.video-heroz {
    margin-top: 2rem;
    display: none;
    justify-content: center;
}
.video-heroz iframe {
    border-radius: 25px;
    max-width: 100%;
    height: 310px;
    width: 700px;
    padding: 10px;
}
/* ---/Hero Section Style */

/* ---About Us Section Style */
.about{
    padding: 5px;
    align-items: center;
    justify-content: center;
    scroll-behavior: smooth;
}
.about h2 {
    font-size: 35px;
    font-weight: 300;
    margin-top: 80px;
    text-align: center;
    color: #053B49;
    scroll-behavior: smooth;
}

.about h2 span{
    color: #ff914d;
    font-weight: 800;
    font-size: 45px;
}

.about p {
    margin: 20px auto;
    font-weight: 300;
    line-height: 24px;
    text-align:justify;
    color:#053B49
}
#mvv{
    margin-bottom: -10px;
}
/* ---/About Us Section Style */

/* ---Team members Section Style */
.team-title h1{
    margin-top: 20px;
    font-size: 35px;
    font-weight: 300;
    text-align: center;
    position: relative;
    color: #053B49;
}
.team-title h1 span{
    color: #ff914d;
    font-weight: 800;
    font-size: 45px;
}

.team-cards{
    width: 1100px;
    display: flex;
    justify-content: center;
    margin: 1px auto;
}
.team-card{
    background-color: transparent;
    border: none;
    margin: 0px 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.6s ease;
    width: calc(33.33% - 20px);
}
.team-card:hover{
    transform: translateY(-12px);
}

#teamboxz{
    width: 825px;
    justify-content: center;
    align-items: center;
    margin: 1px auto;
}

.team-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}
.team-detail h3{
    color: #053B49;
    margin: 15px 0px;
    font-size: 20px;
    font-weight: 700;
    margin-top: -15px;
}
.team-detail p{
    color: #5f5f5f;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    margin-top: -20px;
    line-height: 15px;
}

.team-icons i{
    color: #053B49;
    font-size: 17px;
    cursor: pointer;
    transition: .2s;
    margin-top: -15px;
}
.team-icons i:hover{
    color: #ff914d;
    font-size: 20px;
}
#partner{
    font-size: 10px;
    font-weight: 500;
    width: 80px;
    color: #ff914d;
}
#founder{
    font-size: 10px;
    font-weight: 500;
    width: 80px;
    color: #053B49;
}
/* ---/Team members Section Style */

/* ----What we do Section Style */
section.what-we-do{
    padding: 80px 0;
}

.whatstep {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.wstep {
    background: transparent;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid #ff914d;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}


.wstep:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.wstep h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 20px 0;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: justify;
}

.features p {
    color: #053B49;
}

.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.basic {
    border-top: 5px solid #ff914d;
}

.highlight {
    position: absolute;
    top: 0;
    left: 0;
    background: #ff914d;
    color: #053B49;
    font-size: 1rem;
    font-weight: 700;
    padding: 5px 50px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
    z-index: 1;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
}

.what-we-do h1{
    font-size: 35px;
    font-weight: 300;
    margin-top: 30px;
    text-align: center;
    position: relative;
    color: #053B49;
}
.what-we-do h1 span{
    color: #ff914d;
    font-weight: 800;
    font-size: 45px;
}
.what-we-do h2{
    font-size: 20px;
    font-weight: 400;
    margin-top: 30px;
    text-align: center;
    position: relative;
    color: #053B49;
    margin-bottom: 25px;
}
.what-we-do h2 span{
    color: #ff914d;
    font-weight: 800;
    font-size: 25px;
}

.what-we-do .itens-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1%;
    margin-top: 1px;
    margin-bottom: 60px;
}

.what-we-do .itens-container .img-itens img{
    max-width: 180px;
}

.what-we-do .itens-container .txt-itens h3{
    font-size: 2.5em;
    line-height: 50px;
    margin-bottom: 10px;
    color: #053B49;
    text-align: justify;
}
.what-we-do .itens-container .txt-itens p{
    color: #053B49;
    text-align: justify;
}
.what-we-do .itens-container .txt-itens button{
    width: 180px;
    height: 35px;
    border: 1px solid #ff914d;
    background-color: transparent;
    border-radius: 25px;
    margin-right: 25px;
    margin-top: 5px;
    color: #ff914d;
    cursor: pointer;
    transition: .3s;
}
.what-we-do .itens-container .txt-itens button:hover{
    background-color: #ff914d;
    color: #fff;
    font-weight: 650;
}

.what-we-do .itens-container .txt-itens h3 span{
    font-weight: 300;
}
/* ----/What we do Section Style */

/* ----How we do Section Style */
section.como{
    padding: 60px 0;
    padding-top: 100px;
}

.txt-como, .instrucoes{
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: top;

}

.como .txt-como{
    position: sticky;
    top: 50%;
    padding-bottom: 25px;
}

.como .txt-como h3{
    font-size: 5em;
    line-height: 70px;
    font-weight: 350;
    color: #053B49;
}

.como .txt-como h3 span{
    display: block;
    font-weight: 800;
    color: #ff914d;
}

.instrucoes .instru-box{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.instrucoes .instru-box img{
    max-width: 200px;
}

.instrucoes .instru-box h4{
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 10px;
    color: #053B49;
    line-height: 27px;
}

.instrucoes .instru-box h4 span{
    font-weight: 300;
    gap:10%;
}

.instrucoes .instru-box p{
    font-size: 15px;
    line-height: 18px;
    color: #053B49;
    text-align: justify;
    font-weight: 385;
}

.instrucoes{
    color: #053B49;
    font-size: 14px;
}
/* ----/How we do Section Style */

/* ----/Portfolio Section Style */
section.portfolio{
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.991), rgba(0, 0, 0, 0.776)), url(../images/hotel-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-align: center;
}

.portfolio > .interface{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    z-index: 2;
    position: relative;
}

.portfolio h3{
    padding-right: 130px;
    padding-top: 50px;
    padding-left: 130px;
    font-size: 1.2em;
    font-weight: 200;
    margin: 2px;
    line-height: 30px;
    text-align: justify;
}

.portfolio h3 span{
    display: block;
    font-weight: 700;
}

.portfolio p{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}
.portfolio h2{
    margin-top: 20px;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 25px;
}
.portfolio img{
    margin-top: 25px;
    width: 120px;
}
.portfolio p strong, b{
    color:#ff914d
}

.portfolio button{
    width: 350px;
    height: 50px;
    border-radius: 25px;
    margin-top: 10px;
    margin-bottom: 50px;
}
#plusicon{
    font-size: 40px;
    color: #ff914d;
}
#reportimg{
    width: 130px;
    animation: pulse 1s infinite;
}

@-webkit-keyframes pulse {
    0% {
      -webkit-transform: scale(1);
      -webkit-filter: brightness(100%);
    }
    100% {
      -webkit-transform: scale(1.1);
      -webkit-filter: brightness(100%);
    }
}
  
@keyframes pulse {
    0% {
      transform: scale(1);
      filter: brightness(100%);
    }
    100% {
      transform: scale(1.1);
      filter: brightness(100%);
    }
}
/* ----/Portfolio Section Style */


/* ----Contato Section Style */
section.contato{
    background-color: #ff914d;
    padding: 80px 0;
    margin-bottom: 100px;
    width: auto;
    height: 100vh;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.txt-contato, .icons-contato{
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: middle;
}

.contato .txt-contato h3 strong{
    font-size: 2em;
    line-height: 60px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #053B49;
}

.contato .txt-contato h3{
    font-size: 2.5em;
    line-height: 40px;
    font-weight: 350;
    margin-bottom: 20px;
    color: #053B49;
}

.contato .txt-contato h3 span{
    display: block;
    font-weight: 800;
}

.contato .txt-contato p{
    font-size: 16px;
    font-weight: 450;
    margin-bottom: 20px;
    color: #053B49;
    text-align: justify;
}

.contato .icons-contato a{
    text-decoration: none;
    color: #fff;
}

.contato .icons-contato button{
    display: flex;
    width: 40%;
    height: 45px;
    border-radius: 35px;
    border:none;
    margin: 5px auto 20px 55px;
    padding: 0 60px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background-color: #053B49;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.8s;
}

.contato .icons-contato button:hover{
    width: 42%;
    box-shadow:0 0 10px #053B49;
    border: none;
}

.contato .icons-contato button p{
    color: #fff;
    align-items: left;
    font-size: 18px;
    font-weight: 500;
}

.contato .icons-contato button i{
    font-size: 25px;
    color: #fff;
}

.contato .form-group {
    position: relative;
    width: 100%;
}

.contato .form-group input {
    display: flex;
    width: 80%;
    height: 45px;
    border-radius: 15px;
    border: 2px solid #fff;
    margin: 0 auto 20px auto;
    padding-left: 50px; /* Espaço para o ícone */
    background-color: #ffffff00;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.8s;
    color: #fff;
    font-size: 15px;
}

.contato .form-group input:focus {
    border: 2px solid #053B49;
    box-shadow: 0 0 20px #053B49;
    color: #fff;
}

.contato .form-group input::placeholder {
    color: #fff;
}

.contato .form-group i.icon {
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #ffffff;
}
#formMessage{
    margin-top: 10px;
    margin-left: 600px;
}
/* ---/Contato Section Style */

/*---Footer style*/
#footer {
    background-color:#053B49;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    color: white;
    text-align: center;
    line-height: 25px;
    padding: 5px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

#footer .top-footer button{
    width: 60px;
    height: 60px;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 20px;
    margin-top: -12px;
    transition: 0.4s;
    cursor: pointer;
}
#footer .top-footer button:hover{
    color: #ff914d;
}

#footer .middle-footer h1{
    font-weight: 400;
    font-size: 14px;
    padding-bottom: 8px;
}

#footer .middle-footer{
    align-items: center;
}

#footer .middle-footer h2{
    font-weight: 280;
    font-size: 12px;
    margin-top: -10px;
}
#footer .middle-footer .terms{
    font-weight: 280;
    font-size: 10px;
    color: #ffffff97;
    text-decoration:none;
    display: inline-block;
    justify-content: center;
    text-align: center;
    transition: .2s;
    cursor: pointer;
    padding-top: 20px;
    padding: 2px;
}
#footer .middle-footer .terms:hover{
    color: #ff914d;
}

#rodape {
    text-align: center;
    padding: 10px;
    background-color: transparent;
    color: #7a7a7a;
    position:fixed;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}

::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-thumb{
    width: 10px;
    background-color: #ff914d;
}
/* ---/Footer style*/


/* ---Sorry page */
.sorry{
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sorry h1{
    color: #053B49;
    font-size: 70px;
    font-weight: 900;
}
.sorry h3{
    color: #fff;
    font-size: 25px;
    font-weight: 500;
}
.sorry p{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}
/* ---/Sorry page */

/* ---WhatsApp icon */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: 0.3s;
  }

  .whatsapp-icon:hover {
    width: 50px;
    height: 50px;
    background-color: #1EBE54;
    font-size: 30px;
    cursor: pointer;
  }
/* ---/WhatsApp icon */