/* GERAL */

body {
    background-color: #020238;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding: 0 40px;
}

.dark {
    background-color: #020238;
    color:white;
}

.white {
    background-color: white;
    color: #020238;
}

.bg {
    background-image: url('../img/boost-your-business-or-marketing-strategy-concept.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.opacity-bg {
    background-color: rgba(2, 2, 56, 0.4);
    margin-left: -40px;
    margin-right: -40px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: white;
}

.button {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 12px;
    background-color: #e46429;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button:hover {
    opacity: 0.9;
}

.whatsapp-float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
  
  .whatsapp-float svg {
    width: 55px;
    height: 55px;
}
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }
  

/* AJUSTES GERAIS */
*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

section {
    scroll-margin-top: 80px;
  }  

html, body {
    width: 100%;
    overflow-x: hidden;
}
  
[data-aos] {
    will-change: transform;
    transform-origin: center center;
}
  
body > * {
    position: relative;
    overflow-x: clip;
    max-width: 100vw;
}
  
@supports not (overflow-x: clip) {
    body > * {
      overflow-x: hidden;
    }
}






/* HEADER */

header {
    position: fixed;
    z-index: 1000;
    top:0;
    width: 100%;
}

header .menu-area {
    display:flex;
    justify-content: space-between;
    align-items: center;
}

header #logo {
    width: 150px;
    height: auto;
    margin: 10px 0;
}

header .menus {
    display:flex;
}

header #menu-web {
    display:flex;
    color:white;
}

header #menu-web a {
    font-size: 25px;
    display:flex;
    color:white;
    font-weight: bold;
    margin-left: 20px;
}

header #menu-web a:hover {
    color:#b78d26;
}

header #menu-web .active {
    color: #b78d26;
    font-weight: bold;
}

#menu-mobile {
    display: none;
    width: 36px;
    height: 36px;
    position: relative;
    cursor: pointer;
}

#menu-web.show {
    display: flex !important;
}

#menu-mobile div {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); 
    width: 24px;                 
    height: 3px;                 
    background-color: #fff;     
    border-radius: 2px;
    transition: transform 0.32s ease, opacity 0.24s ease;
    transform-origin: center;
}
  
#menu-mobile div:nth-child(1) { top: 8px; }                 
#menu-mobile div:nth-child(2) { top: calc(50% - 1.5px); }   
#menu-mobile div:nth-child(3) { top: 24px; }                
  
 
#menu-mobile.active div:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: calc(50% - 1.5px);
}
#menu-mobile.active div:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.8);
}
#menu-mobile.active div:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: calc(50% - 1.5px);
}
  
  
header #menu-mobile:hover div{
    background-color: #b78d26;
}




/* HOME */
.home-area {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
}

.home-area .button-area svg {
    grid-column: 1 / span 1;
    margin-right: 5px;
    width: 20px !important;
    height: auto !important;
}

.home-area .button-area:hover {
    opacity: 0.9;
}

.home-left {
    grid-column: 1 / span 1;
    grid-row: 1 / span 5;
}

.home-left h1 {
    overflow-y: hidden;
    font-size: 40px;
    line-height: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.home-left p {
    margin-top: 20px;
    margin-right: 10px;
    font-size: 20px;
}

.home-left p span {
    color: #b78d26;
}

.home-right {
    grid-column: 2 / span 2;
    grid-row: 1 / span 5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.home-right img{
    width: 100% !important;
    height: auto !important;
}






/* HOME COMPLEMENT */
.home-complement {
    display:flex;
    flex-direction: column;
    margin-left: 30px;
    position: relative;
}

.home-complement h1 {
    color: #b78d26;
    margin-bottom: 20px;
    margin-top: 40px;
    font-size: 30px;
    line-height: 40px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.home-complement h2 {
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
}

.home-complement h3 {
    color: #b78d26;
    margin-top: 20px;
    margin-bottom: 60px !important;
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.home-complement--item {
    display: flex;
    align-items: center;
}

.home-complement--item svg {
    width: 35px !important;
    height: 35px !important;
    margin-left: 0;
    flex-shrink: 0;
    margin-right: 5px;
    fill:transparent;
    stroke: #b78d26;
}

.home-complement img {
    display: block;
    width: 100px !important;
    height: auto !important;
    position: absolute;
    bottom: 80px;
    left: -130px;
    rotate: 10deg;
}





/* SERVICES */
.services {
    display: grid;
    gap:20px;
    grid-template-columns: 1, 1fr;
    margin-bottom: 80px;
}

.service-title {
    grid-column: 1 / span 1;
    margin-bottom: 20px;
    font-size: 20px;
}

.services .area1 {
    display: flex;
    gap:20px;
}

.service-box {
    display: block;
    background-color: #b78d26;
    border: none;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
}

.service-box--image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: 20px;
    background-color: white;
    width: 75px !important;
    height: 75px !important;
}

.service-box--image-box svg {
    stroke: #020238;
    fill: #020238;
    width: 35px !important;
    height: auto !important;
}

.service-box--title {
    margin: 20px;
}

.service-box--title h1 {
    font-size: 25px;
}

.service-box--text {
    margin: 20px;
}

.service-box--text p {
    font-size: 20px;
    
}

.services .area2 {
    display: flex;
    gap:20px;
}

.service-box2 {
    display: block;
    background-color: white;
    border: none;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color:#020238;
}

.service-box3 {
    display: block;
    background-color: white;
    border: none;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color:#020238;
}

.service-box4 {
    display: block;
    background-color: white;
    border: none;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #020238;
}

.service-box2--image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: 20px;
    background-color:#b78d26;
    width: 75px;
    height: 75px;
}

.service-box--image-box img {
    width: 35px !important;
    height: auto !important;
}







/* PROJECTS */

.projects {
    display: flex;
    flex-direction: column;
    gap:20px;
}

.projects h1 {
    margin-top: 20px;
    font-size: 30px;
    margin-bottom: 20px;
}

.project-box {
    display: flex;
    background-color: #b78d26;
    border: none;
    border-radius: 15px;
    align-items: center;
}

.project-box:last-child {
    margin-bottom: 50px;
}

.project-box--image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: 20px;
    background-color: white;
    width: 75px;
    height: 75px;
    overflow: hidden;
    flex-shrink: 0;
}

.project-box--image-box img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
}

.project-box--text {
    align-items: center;
    margin: 20px;
}

.project-box--text h2 {
    font-size: 25px;
}

.project-box--text p {
    margin-top: 10px;
    font-size: 20px;
    color: white;
}






/* WHO WE ARE */
.who-we-are--title h1 {
    color: #b78d26;
    margin-top: 40px;
    font-size: 30px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.who-we-are--area {
    display:flex;
    align-items: center;
    justify-content: center;
}

.who-we-are--text p {
    margin-top: 20px;
    line-height: 25px;
}

.who-we-are--text span {
    color: #b78d26;
}

.who-we-are--img img {
    width: 100% !important;
    height: auto !important;
}





/* WHY CHOOSE */
.why-choose h1 {
    color: #b78d26;
    margin-bottom: 20px;
    margin-top: 40px;
    font-size: 30px;
    line-height: 40px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.why-choose h2 {
    font-size: 20px;
    line-height: 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.why-choose h3 {
    color: #b78d26;
    margin-top: 20px;
    margin-bottom: 40px !important;
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.why-choose .why-choose--area {
    width: 50%;
}

.why-choose-box {
    display: flex;
    align-items: center;
    gap: 10px;
}





/* CLIENTES */
#clients {
    width: 90%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.clients {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.clients h1 {
    color:#b78d26;
    font-weight: 900;
    font-size: 30px;
    font-family: 'Nunito', sans-serif;
    margin-top: 20px;
    margin-bottom: 20px;
}

.carousel-wrapper {
    position: relative;
    width: 95%;
    display: flex;
    align-items: center;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    width: 97%;
    gap: 15px;
    transition: transform 0.4s ease;
}

.slide {
    flex: 0 0 calc(100% / 3);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slide img {
    width: 100%;
    height: auto;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 32px;
    z-index: 50;
}

.arrow.left {
    left: -40px;
}

.arrow.right {
    right: -40px;
}







/* BANNER */
.banner-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    width: 100%;
    padding: 200px 20px;

}

.banner-area h1 {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 40px;
}

.banner-area p {
    font-size: 25px;
    font-weight: 300;
}

.banner-area .button-area .button {
    margin-bottom: 0;
}

.banner-area .button-area svg {
    margin-right: 5px;
    width: 20px;
    height: auto;
}





/* FOOTER */
.footer-area {
    display: flex;
    justify-content: center;
    padding: 50px;
}

.footer-text {
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-text p {
    font-size: 20px;
    font-weight: 200;
}

.footer-text img {
    width: 300px !important;
    height: auto !important;
}

.footer-contact {
    margin-left: 100px;
    flex:1;
    display: flex;
    padding-left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-contact p {
    font-size: 25px;
    font-weight: bold;
}

.footer-contact .footer-contact--area {
    display: flex;
    align-items: center;
    margin:5px
}

.footer-contact .footer-contact--area #email-svg {
    margin-left: -5px;
    margin-right: -5px;
    display: flex;
    align-items: center;
    width: 45px !important;
    height: 45px !important;
    flex-shrink: 0;
}

.footer-contact .footer-contact--area a {
    display: flex;
    align-items: center;
}

.footer-contact .footer-contact--area #instagram-svg {
    width: 35px !important;
    height: 35px !important;
    flex-shrink: 0;
    fill: #b78d26 !important;
    stroke: #b78d26 !important;
}

.footer-contact .footer-contact--area p{
    font-size: 20px;
    font-weight: 200;
    margin-left: 10px;   
}

.footer-credits {
    margin-left: 30px;
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-credits span {
    color: #D8DAD7;
}






/* RESPONSIVIDADE */

/* TELAS MENORES */
@media (max-width: 1024px) {
    .whatsapp-float {
        width: 70px;
        height: 70px;
    }
      
    .whatsapp-float svg {
        width: 45px !important;
        height: 45px !important;
    }

    header #menu-web a {
        font-size: 20px;
    }

    .home-left p {
        font-size: 16px;
    }

    .home-complement h3 {
        font-size: 16;
    }

    .service-box--title h1 {
        font-size: 20px;
    }

    .service-box--title p {
        font-size: 15px;
    }    

    .banner-area {
        padding: 130px 20px;
    }

    .footer-text p {
        font-size: 15px;
    }
    
    .footer-text img {
        width: 200px !important;
    }

    .footer-contact {
        padding-left: 0;
        margin-left: 30px;
    }
    
    .footer-contact p {
        font-size: 25px;
    }

    .footer-contact .footer-contact--area p{
        font-size: 20px;
        font-weight: 200;   
    }

    .carousel-track {
        gap:10px;
    }

    .slide {
        flex: 0 0 calc(100% / 3);
    }
}





/* TABLET */
@media (max-width: 820px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
    }
      
    .whatsapp-float svg {
        width: 35px !important;
        height: 35px !important;
    }
    
    header #menu-web a {
        justify-content: center;
    }

    .opacity-bg {
        margin-left: -20px;
        margin-right: -20px;
    }

    .container {
        padding: 0 20px;
    }

    header #menu-mobile {
        display: flex;
    }

    header #menu-web {
        display: none;
        flex-direction: column;
        gap:10px;
        padding-bottom: 10px;
        position: absolute;
        z-index: 99;
        background-color: rgba(2, 2, 56, 0.9);
        width: 100% !important;
        top: 66px;
        left: 0;
    }

    .home-left h1 {
        margin-top: 80px;
    }

    .home-complement h3 {
        font-size: 15px;
    }

    .service-title h1 {
        text-align: center;
    }

    .service-box--title h1 {
        font-size: 20px;
    }

    .service-box--text p {
        font-size: 15px;
    }    

    .projects h1 {
        text-align: center;
    }

    .project-box--text h2 {
        font-size: 20px;
    }

    .project-box--text p {
        font-size: 15px;
    }

    .why-choose .why-choose--area {
        width: 100%;
    }
    
    .why-choose h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .why-choose h3 {
        font-size: 17px;
    }

    .clients h1 {
        font-size: 30px;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .carousel-container {
        width: 500px;
    }

    .slide {
        flex: 0 0 calc(100% / 2);
    }

    .arrow.left {
        left: -10;
    }

    .arrow.right {
        right: -10;
    }

    .banner-area {
        padding: 60px 20px;
    }

    .banner-area h1 {
        font-size: 25px;
    }

    .banner-area p {
        font-size: 15px;
    }

    .footer-text p {
        font-size: 12px;
    }
    
    .footer-text img {
        width: 200px !important;
    }

    .footer-contact {
        padding-left: 0;
    }
    
    .footer-contact p {
        font-size: 20px;
    }

    .footer-contact .footer-contact--area #email-svg {
        margin-left: -5px;
        margin-right: -5px;
        display: flex;
        align-items: center;
        width: 33px !important;
        height: 33px !important;
        flex-shrink: 0;
    }
    
    .footer-contact .footer-contact--area #instagram-svg {
        width: 25px !important;
        height: 25px !important;
        flex-shrink: 0;
        fill: #b78d26 !important;
        stroke: #b78d26 !important;
    }

    .footer-contact .footer-contact--area p{
        font-size: 16px;
        font-weight: 200;   
    }

    .footer-credits {
        font-size: 12px;
    }

    .footer-credits span {
        font-size: 10px;
    }
}






/* MOBILE L */
@media (max-width: 425px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
    }
      
    .whatsapp-float svg {
        width: 35px !important;
        height: 35px !important;
    }

    .container {
        padding: 0 20px;
    }
    
    header #menu-mobile {
        display: flex;
    }

    header #menu-web {
        display:none;
        flex-direction: column;
    }

    .home-area {
        display:block;
    }

    .home-right {
        margin-top: 0;
        padding-top: 20px;
    }

    .home-left h1 {
        font-size: 35px;
        line-height: 35px;
    }

    .button {
        font-size: 12px;
    }

    .home-complement h1 {
        font-size: 30px;
        line-height: 0px;
    }

    .home-complement--item svg {
        width: 40px !important;
        height: 40px !important;
        margin-left: 0;
        flex-shrink: 0;
        margin-right: 5px;
        fill:transparent;
        stroke: #b78d26;
    }

    .home-complement h3 {
        margin-bottom: 0;
        padding-bottom: 0px;
    }

    .home-complement img {
        position: static;
        left: auto;
        margin-left: 0;
        display: none;
    }
      
    
    .home-complement--item {
        margin-top: 25px;
    }

    .services {
        margin-bottom: 50px;
    }

    .service-title h1 {
        font-size: 20px;
    }

    .services .area1 {
        flex-direction: column;
    }

    .services .area2 {
        flex-direction: column;
    }

    .service-box--title h1 {
        font-size: 15px;
    }

    .service-box--text p {
        font-size: 12px;
    }

    .service-box2--image-box {
        width: 60px;
        height: 60px;
    }
    
    .service-box--image-box img {
        width: 10px !important;
    }

    .service-box--image-box {
        width: 60px;
        height: 60px;
    }
    
    .service-box--image-box svg {
        width: 30px !important;
    }

    .projects {
        gap:10px;
    }

    .projects h1 {
        text-align: center;
        font-size: 20px;
    }

    .project-box {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
    }

    .project-box--text {
        grid-column: 2 / span 5;
        margin: 10px;
    }

    .project-box--text h2 {
        font-size: 16px;
    }
    
    .project-box--text p {
        font-size: 12px;
    }

    .project-box--image-box {
        grid-column: 1 / span 1;
        margin: 10px;
        width: 60px;
        height: 60px;
    }

    .who-we-are--title {
        text-align: center;
    }

    .who-we-are--title h1 {
        margin-bottom: 10px;
        line-height: 30px;
        font-size: 20px;
    }

    .who-we-are--text {
        text-align: center;
    }

    .who-we-are--text p {
        margin-top: 10px;
        line-height: 20px;
        font-size: 15px;
    }

    .who-we-are--area {
        flex-direction: column;
    }

    .who-we-are--img {
        margin-top: 20px;
    }

    .why-choose h1 {
        margin-top: 20px;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
    }

    .why-choose .why-choose--area {
        width: 100%;
    }

    
    .why-choose h2 {
        font-size: 16px;
        line-height: 20px;
    }
    
    .why-choose h3 {
        margin-bottom: 100px;
        font-size: 12px;
        text-align: center;
    }

    .clients h1 {
        font-size: 20px;
    } 

    .carousel-container {
        width: 100%;
        max-width: 320px;
    }

    .carousel-track {
        width: 100%;
        gap:2px;
    }

    .slide {
        flex: 0 0 100%;
    }

    .arrow {
        font-size: 28px;
        padding: 6px;
    }

    .banner-area {
        padding: 20 20px;
    }

    .banner-area h1 {
        font-size: 20px;
    }

    .banner-area p {
        font-size: 12px;
    }

    .banner-area .button-area .button {
        margin-bottom: 0;
    }

    .footer-area {
        flex-direction: column;
    }

    .footer-text {
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }

    .footer-contact {
        margin-left: 0;
        width: 100%;
        align-items: center;
        padding-left: 0;
    }

    .footer-contact p {
        font-size: 20px;
    }

    .footer-credits {
        margin-left: 0;
        margin-top: 50px;
        font-size: 15px;
        padding-bottom: 10px;
    }
}







/* MOBILE M */
@media (max-width: 375px) {
    .carousel-wrapper {
        width: 80%;
    }

    .arrow.left {
        left: -1;
    }

    .arrow.right {
        right: -1;
    }
}







/* MOBILE S */
@media (max-width: 320px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
      
    .whatsapp-float svg {
        width: 25px !important;
        height: 25px !important;
    }
    
    .container {
        padding: 0 20px;
    }

    .home-left h1 {
        font-size: 30px;
        line-height: 30px;
    }

    .button {
        margin-bottom: 0px;
    }

    .home-complement {
        margin-left: 8px;
    }

    .home-complement img {
        display: none;
    }

    .home-complement h1 {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .home-complement h2 {
        font-size: 15px;
    }

    .home-complement h3 {
        margin-top: 20px;
    }

    .home-complement--item {
        margin-top: 10px;
    }

    .carousel-wrapper {
        width: 70%;
    }

    .slide {
        flex: 0 0 100%;
    }

    .arrow {
        font-size: 24px;
        padding: 4px;
    }

    .footer-credits {
        font-size: 12px;
        padding-bottom: 10px;
    }
} 