*{
    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: 110px;
}

/* navbar effect */
header .logo img.logo-color{
    display: none;
}

header.roll{
    background-color: #fff;
    padding: 10px 0;
    height: 70px;
    box-shadow: 0 0 8px #25252569;
}

header.roll .menu-desktop nav ul li a{
    color: #002050;
}

header.roll .btn-contato button{
    color: #c0d000;
}
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: #c0d000;
    font-weight: 600;
}

.menu-desktop nav a:hover{
    transform: scale(1.2);
    color: #c0d000;

}

header .btn-contato button{
    width: 180px;
    height: 35px;
    margin-right: 25px;
    margin-bottom: 2px;
}

header .btn-contato{
    padding-right: 10px;
}

/* 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: #c0d000e7;
    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: #002050;
}

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: #c0d000;
}
  
header .menu-desktop nav ul li.lang-switcher {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0 10px;
    position: relative;
}

header .menu-desktop .lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #c0d000;
    background-color: rgba(0, 0, 0, 0.15);
    color: #fff;
    cursor: pointer;
    transition: .2s;
}

header .menu-desktop .lang-toggle:hover {
    background-color: rgba(192, 208, 0, 0.2);
}

header .menu-desktop .lang-toggle:focus-visible {
    outline: 2px solid #c0d000;
    outline-offset: 2px;
}

header .menu-desktop .lang-toggle i {
    font-size: 14px;
}

header .menu-desktop .lang-toggle .bi-chevron-down {
    transition: .2s;
}

header .menu-desktop .lang-switcher.is-open .lang-toggle {
    background-color: #c0d000;
    color: #002050;
}

header .menu-desktop .lang-switcher.is-open .lang-toggle .bi-chevron-down {
    transform: rotate(180deg);
}

header .menu-desktop .lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 170px;
    padding: 6px;
    list-style: none;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: .2s;
    z-index: 20;
}

header .menu-desktop .lang-switcher.is-open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header .menu-desktop .lang-dropdown li {
    margin: 0;
    display: block;
}

header .menu-desktop .lang-option {
    width: 100%;
    text-align: left;
    border: none;
    background-color: transparent;
    padding: 8px 12px;
    border-radius: 8px;
    color: #002050;
    font-size: 13px;
    cursor: pointer;
    transition: .2s;
}

header .menu-desktop .lang-option:hover {
    background-color: rgba(0, 32, 80, 0.08);
}

header .menu-desktop .lang-option.is-active {
    background-color: rgba(192, 208, 0, 0.25);
    font-weight: 600;
}

header.roll .menu-desktop .lang-toggle {
    color: #002050;
    border-color: #002050;
    background-color: #fff;
}

header.roll .menu-desktop .lang-toggle:hover {
    background-color: rgba(0, 32, 80, 0.08);
}

header.roll .menu-desktop .lang-switcher.is-open .lang-toggle {
    background-color: #c0d000;
    border-color: #c0d000;
    color: #002050;
}

header .menu-mobile .lang-switcher {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

header .menu-mobile .lang-switcher .lang-btn {
    font-size: 16px;
    padding: 8px 14px;
    border-color: #fff;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 999px;
    cursor: pointer;
    transition: .2s;
}

header .menu-mobile .lang-switcher .lang-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

header .menu-mobile .lang-switcher .lang-btn.is-active {
    background-color: #002050;
    border-color: #002050;
    color: #fff;
}


body.no-overflow{
    overflow: hidden;
}

header .btn-contato button, .hero-site button, .portfolio button{
    font-size: 18px;
    background-color: transparent;
    border: 1px solid #c0d000;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    transition: .5s;
}

header .btn-contato button:hover, .portfolio button:hover{
    background-color: #c0d000;
    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(../img/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, #c0d000, #e6f2a6, #c0d000, #c0d000);
    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: #c0d000;
}

.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: #c0d000;
    box-shadow: 0 0 20px #d0e000;
}
.hero-site button:hover{
    background-color: #fff;
    transform: scale(1.08);
    color: #c0d000;
}

/* ---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: #c0d000;
    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{
    height: 100vh;
    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: #002050;
    scroll-behavior: smooth;
}

.about h2 span{
    color: #c0d000;
    font-weight: 800;
    font-size: 45px;
}

.about p {
    margin: 20px auto;
    font-weight: 300;
    line-height: 24px;
    text-align:justify;
    color:#002050
}
.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: #002050;
}
.team-title h1 span{
    color: #c0d000;
    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);
}

.team-intro{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    margin: 10px auto 0 auto;
    flex-wrap: wrap;
}

.team-intro .team-card{
    width: 320px;
    margin: 0;
    flex-shrink: 0;
}

.team-bubble{
    width: 100%;
    max-width: 700px;
    flex: 1;
    margin-top: 75px;
    background-color: #fff;
    border: 1px solid #c0d000;
    border-radius: 20px;
    padding: 24px 28px;
    color: #002050;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    text-align: justify;
    position: relative;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.team-bubble::before{
    content: '';
    position: absolute;
    top: 28px;
    left: -13px;
    border-width: 12px 14px 12px 0;
    border-style: solid;
    border-color: transparent #c0d000 transparent transparent;
}

.team-bubble::after{
    content: '';
    position: absolute;
    top: 29px;
    left: -10px;
    border-width: 10px 12px 10px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

#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: #002050;
    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: #002050;
    font-size: 17px;
    cursor: pointer;
    transition: .2s;
    margin-top: -15px;
}
.team-icons i:hover{
    color: #c0d000;
    font-size: 20px;
}
.partner{
    font-size: 10px;
    font-weight: 500;
    width: 80px;
    color: #c0d000;
}
#founder{
    font-size: 10px;
    font-weight: 500;
    width: 80px;
    color: #002050;
}

.profile-actions{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    gap: 18px;
    margin: 28px auto 0;
    width: 100%;
    justify-content: center;
}

.profile-action{
    border: 1px solid rgba(0, 32, 80, 0.12);
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    cursor: pointer;
    color: #002050;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.profile-action:hover{
    transform: translateY(-4px);
    border-color: rgba(192, 208, 0, 0.7);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.action-icon{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #c0d000;
    background: rgba(192, 208, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #002050;
    flex-shrink: 0;
}

.action-label{
    font-size: 15px;
    font-weight: 600;
}

.modal{
    position: fixed;
    inset: 0;
    background: rgba(0, 32, 80, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 9999;
    padding: 24px;
}

.modal.is-open{
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay{
    position: absolute;
    inset: 0;
}

.modal-card{
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(192, 208, 0, 0.25);
    color: #002050;
    transform: translateY(18px);
    transition: transform 0.25s ease;
    max-height: 80vh;
    overflow-y: auto;
}

.modal.is-open .modal-card{
    transform: translateY(0);
}

.modal-close{
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 32, 80, 0.08);
    color: #002050;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover{
    background: rgba(0, 32, 80, 0.16);
    transform: scale(1.05);
}

.modal-title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.modal-desc{
    font-size: 14px;
    color: #5f5f5f;
    margin-bottom: 22px;
}

.ventures-list{
    display: grid;
    gap: 16px;
}

.venture-card{
    border: 1px solid rgba(0, 32, 80, 0.12);
    border-radius: 18px;
    padding: 18px;
    background: rgba(192, 208, 0, 0.08);
}

.venture-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.venture-name{
    font-weight: 700;
    font-size: 16px;
}

.venture-role{
    font-size: 12px;
    font-weight: 600;
    color: #002050;
}

.venture-link{
    font-size: 12px;
    font-weight: 600;
    color: #002050;
    text-decoration: none;
}

.venture-link:hover{
    color: #c0d000;
}

.portfolio-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.portfolio-item{
    border: 1px solid rgba(0, 32, 80, 0.12);
    border-radius: 18px;
    padding: 12px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.portfolio-item:hover{
    transform: translateY(-4px);
    border-color: rgba(192, 208, 0, 0.7);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.portfolio-item img{
    width: 100%;
    max-width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(192, 208, 0, 0.08);
    padding: 10px;
}

.portfolio-label{
    font-size: 13px;
    font-weight: 600;
    color: #002050;
}

.recommendations-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.recommendations-swiper{
    --swiper-navigation-color: #002050;
    --swiper-pagination-color: #c0d000;
    --swiper-pagination-bullet-inactive-color: rgba(0, 32, 80, 0.2);
    --swiper-pagination-bullet-inactive-opacity: 1;
    position: relative;
    padding: 6px 36px 34px;
}

.recommendations-swiper .swiper-wrapper{
    align-items: stretch;
}

.recommendations-swiper .swiper-slide{
    height: auto;
    display: flex;
}

.recommendations-swiper .recommendation-card{
    width: 100%;
}

.recommendations-swiper .swiper-button-prev,
.recommendations-swiper .swiper-button-next{
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(0, 32, 80, 0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.recommendations-swiper .swiper-button-prev:hover,
.recommendations-swiper .swiper-button-next:hover{
    transform: scale(1.05);
    background: rgba(192, 208, 0, 0.25);
}

.recommendations-swiper .swiper-button-prev:after,
.recommendations-swiper .swiper-button-next:after{
    font-size: 14px;
    font-weight: 700;
}

.recommendations-swiper .swiper-pagination{
    bottom: 8px;
}

.recommendation-card{
    border: 1px solid rgba(0, 32, 80, 0.12);
    border-radius: 18px;
    padding: 16px;
    background: #ffffff;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.recommendation-avatar{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c0d000;
}

.recommendation-text{
    font-size: 13px;
    color: #5f5f5f;
    line-height: 1.5;
}

.recommendation-name{
    font-weight: 700;
    margin-top: 10px;
    font-size: 14px;
}

.recommendation-role{
    font-size: 12px;
    color: #5f5f5f;
}

.community-form{
    display: grid;
    gap: 14px;
}

.community-field{
    display: grid;
    gap: 6px;
}

.community-field label{
    font-size: 13px;
    font-weight: 600;
    color: #002050;
}

.community-field input{
    border: 1px solid rgba(0, 32, 80, 0.15);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    color: #002050;
}

.community-field input:focus{
    outline: none;
    border-color: rgba(192, 208, 0, 0.8);
    box-shadow: 0 0 0 3px rgba(192, 208, 0, 0.2);
}

.modal-btn{
    background: #c0d000;
    color: #002050;
    border: none;
    padding: 12px 18px;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.community-note{
    font-size: 12px;
    color: #5f5f5f;
    margin-top: 6px;
}

body.modal-open{
    overflow: hidden;
}

.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* ---/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 #c0d000;
    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: #002050;
}

.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.basic {
    border-top: 5px solid #c0d000;
}

.highlight {
    position: absolute;
    top: 0;
    left: 0;
    background: #c0d000;
    color: #002050;
    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: #002050;
}
.what-we-do h1 span{
    color: #c0d000;
    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: #002050;
    margin-bottom: 25px;
}
.what-we-do h2 span{
    color: #c0d000;
    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: #002050;
    text-align: justify;
}
.what-we-do .itens-container .txt-itens p{
    color: #002050;
    text-align: justify;
}
.what-we-do .itens-container .txt-itens button{
    width: 180px;
    height: 35px;
    border: 1px solid #c0d000;
    background-color: transparent;
    border-radius: 25px;
    margin-right: 25px;
    margin-top: 5px;
    color: #c0d000;
    cursor: pointer;
    transition: .3s;
}
.what-we-do .itens-container .txt-itens button:hover{
    background-color: #c0d000;
    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: #002050;
}

.como .txt-como h3 span{
    display: block;
    font-weight: 800;
    color: #c0d000;
}

.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: #002050;
    line-height: 27px;
}

.instrucoes .instru-box h4 span{
    font-weight: 300;
    gap:10%;
}

.instrucoes .instru-box p{
    font-size: 15px;
    line-height: 18px;
    color: #002050;
    text-align: justify;
    font-weight: 385;
}

.instrucoes{
    color: #002050;
    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(../img/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: 100vh;
    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:#c0d000
}

.portfolio button{
    width: 350px;
    height: 50px;
    border-radius: 25px;
    margin-top: 10px;
    margin-bottom: 50px;
}
.plusicon{
    font-size: 40px;
    color: #c0d000;
}
#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: #c0d000;
    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: 1.5em;
    line-height: 60px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #002050;
}

.contato .txt-contato h3{
    font-size: 2.5em;
    line-height: 40px;
    font-weight: 350;
    margin-bottom: 20px;
    color: #002050;
}

.contato .txt-contato h3 span{
    display: block;
    font-weight: 800;
}

.contato .txt-contato p{
    font-size: 16px;
    font-weight: 450;
    margin-bottom: 20px;
    color: #002050;
    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: #002050;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.8s;
}

.contato .icons-contato button:hover{
    width: 42%;
    box-shadow:0 0 10px #002050;
    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 #002050;
    box-shadow: 0 0 20px #002050;
    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:#002050;
    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: #c0d000;
}

#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: #c0d000;
}

#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: #c0d000;
}
/* ---/Footer style*/


/* ---Sorry page */
.sorry{
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sorry h1{
    color: #002050;
    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);
    overflow: visible;
    z-index: 1000;
    transition: 0.3s;
  }

  .whatsapp-icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: whatsapp-pulse 2.2s ease-out infinite;
    pointer-events: none;
  }

  .whatsapp-icon:hover {
    width: 50px;
    height: 50px;
    background-color: #1EBE54;
    font-size: 30px;
    cursor: pointer;
  }

  @keyframes whatsapp-pulse {
    0% {
      transform: scale(1);
      opacity: 0.7;
    }
    70% {
      transform: scale(1.6);
      opacity: 0;
    }
    100% {
      transform: scale(1.6);
      opacity: 0;
    }
  }
/* ---/WhatsApp icon */
