*{
    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%; /* logo abaixo do ícone */
    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 Style*/
section.hero-site{
    height: 100vh;
    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;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.666);
}

#maxpot {
    font-weight: 800;
    background: linear-gradient(90deg, #ff914d, #eccc00, #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 h2{
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
    text-align: left center;
}

.hero-site .txt-hero h2 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;
}

.video-hero {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}
.video-hero iframe {
    border-radius: 25px;
    max-width: 100%;
    height: 300px;
    width: 900px;
    margin-top: -250px;
    padding: 10px;
}
.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;
}

/* Call-to-Action button */
.scroll-cta {
    text-align: center;
    cursor: pointer;
    color: #fcfcfc;
    animation: float 2s ease-in-out infinite;
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
}

.scroll-cta p {
    margin: 0;
    display: none;
    font-size: 1.5rem;
    text-align: center;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.arrow {
    font-size: 2rem;
    margin-top: 5px;
    animation: trail 1.5s 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);
    }
}
/* /Hero Style */

/*About us style*/
.about{
    padding: 5px;
    align-items: left;
    justify-content: center;
    scroll-behavior: smooth;
    height: 100vh;
}
.about h1 {
    font-size: 45px;
    font-weight: 320;
    margin-top: 80px;
    margin-bottom: 25px;
    text-align: center;
    color: #053B49;
    scroll-behavior: smooth;
}
.about h2 {
    font-size: 25px;
    font-weight: 300;
    margin-top: 80px;
    text-align: center;
    color: #053B49;
    scroll-behavior: smooth;
}

.about h2 span{
    color: #ff914d;
    font-weight: 800;
    font-size: 30px;
}

.about p {
    margin: 20px auto;
    font-weight: 300;
    line-height: 25px;
    text-align:justify;
    color:#053B49;
    font-size: 20px;
}

#btn-contato{
    font-size: 18px;
    font-weight: 500;
    background-color: transparent;
    padding: 15px;
    border: 2px solid #ff914d;
    border-radius: 10px;
    color: #ff914d;
    cursor: pointer;
    transition: .5s;
    margin-bottom: 100px;
}
#btn-contato:hover{
    background-color: #ff914d;
    color: #fff;
    box-shadow: 0 0 10px #ffa46c;
}


/* ----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: #053B49;
}
.contato .icons-contato{
    margin-bottom: 50px;
}

#btn-contato{
    display: flex;
    width: 40%;
    height: 45px;
    border-radius: 15px;
    border:none;
    margin: 5px auto 20px 55px;
    padding: 0 60px;
    font-size: 20px;
    font-weight: 600;
    background-color: #ff914d;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.4s;
    margin-bottom: 150px;
    color: #fff;
}

#btn-contato:hover{
    width: 45%;
    border: none;
    font-size: 25px;
}

#btn-contato p{
    color: #fff;
    align-items: left;
    font-size: 18px;
    font-weight: 500;
}

#btn-contato 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 #ff914d;
    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: #ff914d;
    font-size: 15px;
}

.contato .form-group input:focus {
    border: 2px solid #053B49;
    box-shadow: 0 0 20px #053B49;
    color: #ff914d;
}

.contato .form-group input::placeholder {
    color: #ff914d;
}

.contato .form-group i.icon {
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #ff914d;
}
#formMessage{
    margin-top: -180px;
    margin-left: 550px;
}


/*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: #5f5f5f;
    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 */