@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --cor-primaria: #414141;
    --cor-secundaria: #4D4D4D;
    --cor-box: #5F5F5F;
    --cor-texto: #D64B00;
    --gradient-button: linear-gradient(180deg, rgba(255,89,0,1) 0%, rgba(139,49,0,1) 100%);
}

/* ============================ BASE ============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", serif;
}

.container {
    width: 100%;
    position: relative;
}

body {
    background-color: #883001;
    overflow-x: hidden;
    width: 100%;
}
/* ============================ SMOOTH SCROLL ============================*/

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}


/* ============================ SCROLL BAR DESIGN ============================*/

::-webkit-scrollbar {
    width: 10px;
    border-radius: 25px;
}

::-webkit-scrollbar-track {
    background: #292929;
}

::-webkit-scrollbar-thumb {
    background-color: #D64B00;
    border: 10px;
    border-radius: 10px;
}

/* ============================ GLOBAL BUTTON DESIGN ============================*/

/* .btn {
    font-weight: 500;
    padding: 20px;
    background: var(--gradient-button);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    font-size: 18px;
}

.btn:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.btn>i {
    margin-left: 10px;
} */

.btn, .btn-orcamento {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(to right, #ac4d00, #f06c00);
    color: #fff;
    font-weight: 600;
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    border: none;
    font-size: 16px;
}

.btn::before, .btn-orcamento::before {
    content: "";
    position: absolute;
    content: '';
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    animation: btnAnimate 2s ease-in-out infinite;
    animation-delay: 2s;
}

/* ============================ GLOBAL ICON DESIGN ============================*/

i {
    font-size: 16px;
}

/* ============================ NAVGATION BAR ============================*/


.navbar-container {
    width: 60px;
    height: 60px;
    border: 2px solid #a94921;
    border-radius: 12px;
    background: #242424;
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: expandNavbar 1s ease forwards;
    transition: all .3s ease-in-out;
    box-shadow: 2px 2px 5px #a94921;
}

.logo img {
    width: 60px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: moveLogo 1s ease forwards;
}

.nav-links-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn .3s ease forwards;
    animation-delay: 1.1s;
    opacity: 0;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    opacity: 0;
    filter: blur(4px);
    animation: fadeInBlur .6s ease forwards;
}

.nav-links a:nth-child(1) { animation-delay: 1s;}
.nav-links a:nth-child(2) { animation-delay: 1.3s; }
.nav-links a:nth-child(3) { animation-delay: 1.5s; }
.nav-links a:nth-child(4) { animation-delay: 1.7s; }
.nav-links a:nth-child(5) { animation-delay: 1.9s; }

.btn-orcamento {
    position: absolute;
    right: 20px;
    background: #a94921;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 3px;
    opacity: 0;
    font-size: 15px;
    filter: blur(4px);
    animation: fadeInBlur .6s ease forwards;
    animation-delay: 2.3s;
    cursor: pointer;
}

.hamburger {
    display: none;
    position: absolute;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    display: block;
    transition: all .3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #313131;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 20px;
    gap: 15px;
    z-index: 999;
    border-radius: 8px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.1);
    border: 5px solid rgb(56, 56, 56);
    overflow: hidden;
    /* max-height: 0;
    opacity: 0; */
    transition: max-height .6s ease, opacity .6s ease;
}

.mobile-menu .logo-mobile {
    border: 2px solid #a94921;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.mobile-menu .logo-mobile img {
    width: 30px;
}

.mobile-menu a {
    opacity: 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    filter: blur(4px);
    animation: fadeInBlur .6s ease forwards;
}

.mobile-menu a:nth-child(1) { animation-delay: 1s; }
.mobile-menu a:nth-child(2) { animation-delay: 1.3s; }
.mobile-menu a:nth-child(3) { animation-delay: 1.5s; }
.mobile-menu a:nth-child(4) { animation-delay: 1.7s; }
.mobile-menu a:nth-child(5) { animation-delay: 1.9s; }
.mobile-menu a:nth-child(6) { animation-delay: 2.1s; }


.mobile-menu a:nth-child(1) { animation-delay: 1s; }
.mobile-menu a:nth-child(2) { animation-delay: 1.3s; }
.mobile-menu a:nth-child(3) { animation-delay: 1.5s; }
.mobile-menu a:nth-child(4) { animation-delay: 1.7s; }
.mobile-menu a:nth-child(5) { animation-delay: 1.9s; }
.mobile-menu a:nth-child(6) { animation-delay: 2.1s; }

/* ============================ WRAPPER DESIGN ============================*/


.container-home {
    background-image: url(../img/software-developer.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-inline: 10vh;
    position: relative;
    
}


.container-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #181818ad;
    /* opacity: 0.3; */
}

/* ============================ FEATURED BOX ============================*/

.featured-box {
    max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-top: 10vh;
  height: auto;
}
/* 
.featured-box{
    display: flex;
    height: 80vh;
    min-height: 700px;
    padding-top: 10vh;
} */

.featured-text,
.featured-image {
  width: 50%;
  min-height: auto;
}

.featured-text {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  gap: 1rem;
  padding-left: 20px;
}


.featured-text-card span {
    font-size: 20px;
    font-weight: 600;
    color: var(--cor-texto);
}

.featured-name {
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
    margin-block: 20px;
}

#typing-text {
    color: #c9c9c9;
    font-size: 18px;
    text-shadow: 1px 1px 5px #000;
}


.featured-text-btn {
    margin-block: 1rem;
}

/* ============================ FEATURED BOX IMAGE ============================*/


.featured-image {
    display: flex;
    justify-content: right;
    align-items: center;
    min-height: 80vh;
    /* width: 50%; */
}

.image {
    position: relative;
    /* margin: auto 0; */
}

.image img {
    width: 320px;
    border-radius: 19px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.image .box-info-img{
    position: absolute;
    background-color: #ffff;
    opacity: 0.5;
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: flutter 5s ease-in-out infinite;
}

.image .box-info-img:nth-child(2) {
    top: 10px;
    left: 10px;
    animation: flutter 7s ease-in-out infinite;
}

.image .box-info-img:nth-child(3) {
    bottom: 10px;
    left: 10px;
    animation: flutter 3s ease-in-out infinite;
}

.image .box-info-img:nth-child(4) {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.image .box-info-img .circle-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cor-texto);
}

.image .box-info-img .desc-img {
    font-size: 16px;
}

/* ============================ SCROLL TOP DESIGN ============================*/

.scroll-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    gap: 5px;
    text-decoration: none;
    color: #ffffff;
    background: var(--cor-secundaria);
    border-radius: 30px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
    margin-bottom: 1.2rem;
}

.scroll-btn i {
    font-size: 20px;
}

/* ============================ INFINE SLIDE ============================*/

.slider {
    width: 100%;
    color: #fff;
    font-weight: 600;
    max-width: 1536px;
    margin-inline: auto;
    position: relative;
    height: 50px;
    overflow: hidden;
    background: var(--gradient-button);
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 1) 20%,
        rgba(0, 0, 0, 1) 80%,
        rgba(0, 0, 0, 0)
    );
}

.slide-item {
    width: 400px;
    height: 100px;
    position: absolute;
    left: max(calc(300px * 3), 100%);
    animation: scrollleft 30s linear infinite;
    top: 30%;
}

.item1 {
    animation-delay: calc(30s / 3 * (3 - 1) * -1);
}

.item2 {
    animation-delay: calc(30s / 3 * (3 - 2) * -1);
}

.item3 {
    animation-delay: calc(30s / 3 * (3 - 3) * -1);
}

/* ============================ PAGE LANDING DESIGN ============================*/

.landingPerfect {
    padding-block: 3rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    gap: 3rem;
    width: 100%;
    margin: auto;
    /* background-color: #4D4D4D; */
    background-image: url(../img/background.webp);
    background-position: center;
    background-size: cover;
    z-index: 2;
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2);
}

.landingPerfect .title,
.container-beneficios > .title {
    font-size: 26px;
    padding-inline: 1rem;
    text-align: center;
    color: #fff;
}

.landingPerfect .container-landing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 23px;
    max-width: 1280px;
    width: 100%;
}

.landingPerfect .container-landing .box-landing {
    width: 262px;
    height: 176px;
    background-color: #303030;
    display: flex;
    margin: 0 auto;
    align-items: center;
    padding-inline: 1rem;
    border-radius: 5px;
    position: relative;
    justify-content: center;
    overflow: hidden;

}

.landingPerfect .container-landing .box-landing::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background-image: conic-gradient(
        transparent,
        transparent,
        transparent,
        #d45500
    );
    animation: border-animate 4s linear infinite;
    animation-delay: 2s;
}

.landingPerfect .container-landing .box-landing::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background-image: conic-gradient(
        transparent,
        transparent,
        transparent,
        #ffbb00
    );
    animation: border-animate 4s linear infinite;
}

.landingPerfect .container-landing .box-landing .box-landing-desc {
    position: absolute;
    inset: 5px;
    border-radius: 16px;
    background-color: var(--cor-primaria);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
}


.landingPerfect .container-landing .box-landing i {
    font-size: 70px;
    color: #D64B00;
}

.landingPerfect .container-landing .box-landing .infoLanding {
    text-align: center;
    font-size: 18px;
}

/* ============================ PAGELAB DESIGN ============================*/


/* ============================ PAGE PROJECTS DESIGN ============================*/

.container-projects {
    width: 100%;
    min-height: 700px;
    background-color: #414141;
    color: #fff;
    /* line-height: 700px; */
    /* text-align: center; */
    /* position: relative; */
    z-index: 1;
    padding-block: 3rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.container-projects .pageLab-boxContent {
    display: flex;
    max-width: 1280px;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-inline: 2rem;
}

.container-projects .pageLab-boxContent .pageLab-desc {
    width: 50%;
}

.container-projects .pageLab-boxContent .pageLab-desc .title {
    text-align: center;
    margin-block: 2rem;
    font-size: 26px;
}

.container-projects .pageLab-boxContent .pageLab-desc > p {
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-style: italic;
}

.container-projects .pageLab-boxContent .pageLab-img {
    position: relative;
    z-index: 100;
}

.desf-logo {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--cor-texto);
    filter: blur(100px);
    width: 100%;
    height: 100%;
    z-index: -1;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 150%;
}


/* ============================ BENEFICIOS DESIGN ============================*/

.container-beneficios {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 3rem;
    gap: 3rem;
    background: var(--cor-secundaria);
    box-shadow: 0 -2px 50px rgba(0, 0, 0, 0.8);
    z-index: 3;
}

.container-beneficios .content-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    width: 80%;
    max-width: 1280px;
}

.container-beneficios .content-box .box-beneficio {
    position: relative;
    max-width: 400px;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    gap: 30px;
    background: var(--cor-box);
    border-radius: 8px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    position: relative;
}

.container-beneficios .content-box .box-beneficio .img {
    width: 100%;
    height: 150px;
    /* background: red; */
    background-image: url(../img/Empreendedor.webp);
    background-size: cover;
    background-position: center;
    border-radius: 30px 0 30px 0;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.container-beneficios .content-box .box-beneficio:nth-child(2) .img {
    background-image: url(../img/Infoprodutor.webp);
}

.container-beneficios .content-box .box-beneficio:nth-child(3) .img {
    background-image: url(../img/Autonomo.webp);
}

.container-beneficios .content-box .box-beneficio > img {
    width: 100px;
    position: absolute;
    top: 60%;
    z-index: 1;
    opacity: 0.2;
}

.container-beneficios .content-box .box-beneficio > .title {
    font-size: 25px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-weight: 600;
    color: var(--cor-texto);
    z-index: 2;
    text-align: center;
}

.container-beneficios .content-box .box-beneficio p {
    font-size: 18px;
    width: 90%;
    color: #fff;
    z-index: 2;
}

/* ============================ PROJETOS ============================*/

.projects {
    background: var(--cor-primaria);
    width: 100vw;
}

.projects .title {
    text-align: center;
    padding-block: 3rem;
    font-size: 34px;
    font-weight: 600;
    color: #8a8a8a;
    text-shadow: 2px 2px 5px rgba(124, 124, 124, .4);
}

.projects .projects-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.projects .projects-container .project-box {
    /* width: 500px; */
    width: calc(33.33% - 1rem);
    width: 400px;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 3px 3px 5px rgba(32, 32, 32, 0.5);
}

.projects .projects-container .project-box img {
    width: 100%;
    overflow: auto;
    transition: transform 6s ease;
}

.projects .projects-container .project-box:hover img {
    transform: translateY(-61%);
}

/* ============================ CONTAINER SOBRE ============================*/

.sobre-content {
    background: var(--cor-primaria);
    height: 100vh;
    display: flex;

}

.content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--cor-secundaria);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    max-width: 1280px;
    margin: auto;
    min-height: 600px;
    height: 650px;
    border-radius: 8px;
}

/* ================== Content Bars ==================*/

.content .bars-content {
    position: absolute;
    top: 40px;
    width: 90%;
    height: 30px;
    display: flex;  
    align-items: center;
    gap: 1rem;
    /* padding: 2rem; */
}

.content .bars-content .bolls-content {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.content .bars-content .bolls {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ad0000;
}

.content .bars-content .bolls:nth-child(2) {
    background: #e0ca00;
}

.content .bars-content .bolls:nth-child(3) {
    background: #00e00b;
}

.content .bars-content .barHttp {
    width: 80%;
    display: flex;
    gap: 1rem;
    background: #9E9E9E;
    border-radius: 30px;
    padding: 8px;
}

.content .bars-content .barHttp svg {
    max-width: 20px;
}

/* ================== Content Quem Eu Sou ==================*/

.content .quemSou {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-block: 2rem;
}


.sobre-content .text-sobre {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2rem;
    /* align-items: center; */
    flex-direction: column;
    min-height: 80vh;
    width: 40%;
    padding-left: 20px;
    color: #fff;
}

.sobre-content .text-sobre .title {
    font-size: 24px;
    font-weight: 600;
}

.sobre-content .text-sobre .sobre-desc{
    font-size: 18px;
}

.sobre-content .text-sobre button {
    margin-bottom: 2rem;
}

.sobre-content .img-sobre {
    display: flex;
    justify-content: end;
    align-items: center;
    min-height: 80vh;
    width: 50%;
    /* margin: auto 0; */
}

.sobre-content .img-sobre img {
    width: 400px;
    opacity: 0.8;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

/* ============================ FAQ / PERGUNTAS FREQUENTES ============================*/

.faq {
    width: 100%;
    /* height: 100vh; */
    background-color: var(--cor-secundaria);
}

/* .faq .title {
    text-align: center;
    padding-top: 5rem;
} */

.faq-content {
    display: flex;
    padding-block: 10rem;
    background: var(--cor-secundaria);
    /* flex-direction: column; */
    /* margin: 0 auto;
    justify-content: center;
    align-items: center; */
    gap: 2rem;
}

.faq-content .img-program {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    flex-direction: column;
    gap: 3rem;
}

.faq-content .img-program .title {
    font-size: 28px;
    font-weight: 600;
    color: var(--cor-texto);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.faq-content img {
    max-width: 900px;
    /* width: 100%; */
    filter: drop-shadow(5px 5px 10px #000);
}

.faq-content .accordion {
    width: 100%;
}

.faq-content .accordion li {
    list-style: none;
    width: 80%;
    margin-block: 20px;
    /* padding: 10px; */
    border-radius: 8px;
    background: var(--cor-primaria);
    color: #fff;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.281);
}

.faq-content .accordion li label {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.faq-content .accordion li label::before {
    content: '+';
    margin-right: 10px;
    font-size: 24px;
    font-weight: 600;
}

input[type="checkbox"] {
    display: none;
}

.faq-content .accordion .content-accordion {
    color: #c7c7c7;
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.faq-content .accordion input[type="checkbox"]:checked + label + .content-accordion {
    max-height: 400px;
    padding: 10px 10px 20px;
}

.faq-content .accordion input[type="checkbox"]:checked + label::before {
    content: '-';
}

/* ============================ FOOTER ============================*/

footer {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 2rem;
    background: #292929;
    gap: 2rem;
    color: #fff;
}

footer .footer-logo img {
    width: 100px;
}


.footerRedeCopy .social-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footerRedeCopy .social-content svg {
    width: 23px;
    color: var(--cor-box);
}

.footerRedeCopy p {
    color: #949292;
    font-size: 14px;
    text-align: center;
}

/* ============================ MEDIA QUARY 1024PX ============================*/

@media only screen and (max-width: 1024px) {
    .featured-text {
        padding: 0;
    }
    
    .image, .image img,
    .sobre-content .img-sobre img {
        width: 320px;
        /* height: 320px; */
    }

    .faq-content img {
        width: 600px;
    }
}

/* ============================ MEDIA QUARY 900PX ============================*/

@media only screen and (max-width: 900px) {


    /* ============= MEDIA QUARY PAGINA HOME =============*/

    .container-home {
        padding-inline: 4vh;
    }

    .featured-box {
        flex-direction: column;
        justify-content: center;
        /* height: 100vh; */
        padding-top: 5vh;
    }

    .featured-text,
    .featured-image {
        width: 100%;
        padding: 10px;
        text-align: center;
  }

    .featured-text {
        padding-left: 0;
        align-items: center;
    }

    .featured-image {
        justify-content: center;
        min-height: 150px;
        max-width: 100%;
    }

    .image, .image img {
        width: 300px;
    }

    /* .image .box-info-img {
        position: static;
    margin-top: 10px;
    justify-content: center;
    opacity: 1;
    backdrop-filter: none
    } */

    /* ============= MEDIA QUARY PAGINA BENEFICIOS =============*/

    .container-beneficios .content-box {
        flex-direction: column;
        gap: 25px;
    }

    /* ============= MEDIA QUARY LANDING PAGE =============*/

    .container-projects .pageLab-boxContent {
        flex-direction: column;
        padding-block: 2rem;
        gap: 2rem;
    }

    .container-projects .pageLab-boxContent .pageLab-desc {
        width: 100%;
    }

    .container-projects .pageLab-boxContent .pageLab-img img {
        width: 100px;
    }

    /* ============= MEDIA QUARY PAGINA SOBRE =============*/

    .sobre-content {
        height: 100vh;
    }
    .content {
        height: 90vh;
    }
    .content .bars-content .bolls-content {
        margin-left: 0.6rem;
    }
    .sobre-content {
        width: 100%;
        flex-direction: column;
        height: none;
    } 
    .sobre-content .text-sobre {
        width: 90%;
        align-items: center;
        min-height: 40vh;
        padding-top: 4rem;
    }
    .sobre-content .img-sobre {
        min-height: 0;
        justify-content: center;
    }
    .sobre-content .img-sobre img {
        width: 250px;
    }


    .faq-content {
        flex-direction: column;
        align-items: center;
    }

    .faq-content .accordion {
        width: 90%;
    }

    .faq-content .accordion li {
        width: 100%;
    }
}


@media screen and (max-width: 770px) {
    .nav-links-wrapper,
    .btn-orcamento {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu.show {
        display: flex;
        max-height: 500px;
        opacity: 1;
        animation: expandMenu .6s ease forwards;
    }
}

/* ============================ MEDIA QUARY 550PX ============================*/

@media screen and (max-width: 550px) {
    .featured-name {
        font-size: 25px;
    }

    .featured-image {
        max-width: 100%;
    }

    .featured-image img {
        width: 100%;
    }

    .featured-image .image .box-info-img {
        display: none;
    }

    .sobre-content .img-sobre img {
        width: 230px;
    }
    .sobre-content {
        height: 150vh;
    }
    .content {
        height: 130vh;
    }

}

/* ============================ MEDIA QUARY 340PX ============================*/

@media screen and (max-width: 340px) {
    .btn {
        padding: 8px;
    }
    .sobre-content {
        height: 200vh;
    }
    .content {
        height: 190vh;
    }


}


/* ============================ KEYFRAMES ============================*/

@keyframes expandNavbar {
    0% {
        width: 60px;
    }
    100% {
        width: 90%;
        max-width: 1000px;
    }
}

@keyframes moveLogo {
    0% {
        left: 50%;
        transform: translateX(-50%);
    }
    100% {
        left: 20px;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInBlur {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes expandMenu {
    0% {
        transform: scaleY(0.7);
        opacity: 0;
    }
    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes btnAnimate {
    0% {
        left: -75%;
    }
    60% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes flutter {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}


@keyframes scrollleft {
    to {
        left: -200px;
    }
}

@keyframes border-animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
