/* @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'); */
@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&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
:root {
    --cor-primaria: #1b1b1b;
    --cor-secundaria: #383838;
    --cor-box: #3a3a3a;
    --cor-texto: #D64B00;
    --gradient-button: linear-gradient(180deg, rgba(255,89,0,1) 0%, rgba(139,49,0,1) 100%);

    --glow-color: rgba(255,120,0,0.6);
    --text-color: #fff;
    --box-bg: rgba(20,20,20,0.7)
}

/* ============================ BASE ============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", serif;
}

.container {
    width: 100%;
    position: relative;
}

body {
    background-color: #303030;
    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, .btn-orcamento, .btn-card-section,
.btn-about {
    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;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.btn::before, 
.btn-orcamento:before, 
.btn-card-section::before,
.btn-about::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: rgba(42, 46, 54, 0.4);
    backdrop-filter: blur(10px);
    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; */
}

.navbar-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,100,0,0.2) 20%,
        rgba(255,120,0,1) 50%,
        rgba(255,100,0,0.2) 80%,
        transparent 100%
    );
    box-shadow: 0 0 15px rgba(255,110,0,0.6);
    transform: scaleX(0);
    transform-origin: center;
    animation: abrirLinha 1.5 ease-out forwards,
    pulsarBrilho 3s infinite 1.5s;
}

.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;
    transition: all .3s ease;
}

.nav-links a:hover {
    color: #ff8c00;
    text-shadow: 
        0 0 8px rgba(255, 140, 0, 0.8),
        0 0 20px rgba(255, 140, 0, 0.5);
    transform: translateX(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 50%;
    background: #ff8c00;
    box-shadow: 0 0 10px #ff8c00;
    transition: all .3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.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;
    gap: 5px;
    right: 20px;
    background: linear-gradient(to right, #ac4d00, #f06c00);
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 3px;
    opacity: 0;
    font-size: 15px;
    font-weight: 400;
    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: rgba(42, 46, 54, .96);
    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::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,100,0,0.2) 20%,
        rgba(255,120,0,1) 50%,
        rgba(255,100,0,0.2) 80%,
        transparent 100%
    );

    box-shadow: 0 0 15px rgba(255,110,0,0.6);
    animation: pulsarBrilho 3s infinite 1.5s;
}

.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/background-home.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-inline: 10vh;
    position: relative;
    
}


.container-home::before {
    content: '';
    position: absolute;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0)
    );
}

/* ============================ 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: 45px;
    font-weight: 600;
    color: #ffffff;
    margin-block: 20px;
}

.featured-name span {
    font-family: 'Playfair Display', serif;
}

.featured-text-btn .blue-btn {
    animation: pulsar 2s infinite;
}

#typing-text {
    color: #c9c9c9;
    font-size: 18px;
    text-shadow: 1px 1px 5px #000;
}


.featured-text-btn {
    margin-block: 1rem;
    display: flex;
    gap: 1rem;
}

.featured-text-btn .blue-btn {
    transition: all .3s ease;
}

.featured-text-btn .blue-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.featured-text-btn .blue-btn,
.featured-text-btn .blue-btn-2 {
    font-size: 15px;
    padding: 15px;
}

.blue-btn-2 {
    background: transparent;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.blue-btn-2 i {
    font-size: 15px;
}

/* ============================ FEATURED BOX IMAGE ============================*/


.featured-image {
    display: flex;
    align-items: center;
    min-height: 80vh;
    justify-content: flex-end;
    /* width: 50%; */
}

.image {
    position: relative;
    align-self: flex-end;
    max-width: 350px;
}

.image img {
    width: 100%;
    border-radius: 19px;
}

.floating-img {
    position: absolute;
    z-index: 2;
    animation: float-img 3s ease-in-out infinite;
}

.card-img-1 {
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.card-img-2 {
    top: 50%;
    right: -100px;
    animation-delay: 1s;
}

.card-img-3 {
    bottom: 20%;
    left: -80px;
    animation-delay: 1s;
}

.floating-img img {
    width: 200px;
    height: auto;
    display: block;
}


/* ============================ INFINE SLIDE ============================*/

.slider {
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, #a94921 0%, #ff8c00 50%, #a94921 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -10px 25px rgba(0,0,0,0.3);
    color: #fff;
}

.slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine-bar 4s infinite;
}

.slide-item {
    width: 400px;
    height: 100px;
    position: absolute;
    left: max(calc(300px * 3), 100%);
    animation: scrollleft 30s linear infinite;
    top: 30%;
    font-family: 'Playfair Display', serif;
}

.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: 5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    gap: 3rem;
    width: 100%;
    margin: auto;
    background: radial-gradient(circle at center, rgba(255,140,0,0.12), transparent 60%), #050505;
    z-index: 2;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.landingPerfect::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right,
        rgba(255,140,0,0) 10%,
        rgba(255,140,0,1) 50%,
        rgba(255,140,0,0) 90%
    );
}

.landingPerfect::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 5px;
    background: linear-gradient(to right, transparent, rgba(255,140,0,0.9), transparent);
    filter: blur(4px);
}

.title-content-landingPerfect {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.title-content-landingPerfect .subtitle {
    color: #949292;
}

.landingPerfect .title,
.container-beneficios > .title {
    font-size: 26px;
    padding-inline: 1rem;
    text-align: center;
    color: #fff;
    position: relative;
}

.landingPerfect .title::after,
.benefits-content .benefit-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    border-radius: 10px;
}

.landingPerfect .container-landing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    justify-items: center;
    gap: 23px;
    max-width: 1280px;
    width: 100%;
    padding-inline: 1rem;
}

.box-landing {
    position: relative;
    width: 262px;
    height: 176px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--box-bg);
    backdrop-filter: blur(6px);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,.6),
                0 0 10px rgba(255,140,0,.15);
    transition: all .3s ease;
}

.box-landing:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,.5),
                0 0 15px rgba(255,140,0,.35);
}

.box-landing::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        transparent,
        transparent,
        #ff8c00
    );
    opacity: 0;
    transition: .4s;
}

.box-landing:hover::before {
    opacity: 1;
    animation: borderRotate 3s linear infinite;
}

.box-landing-desc {
    position: absolute;
    inset: 4px;
    background: var(--cor-primaria);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 20px 10px;
    z-index: 2;
    text-align: center;
}

.box-landing-desc img {
    max-width: 40px;
    width: 100%;
    transition: all .3s ease;
}

.box-landing-desc img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255,140,0,.6));
}


/* ============================ PAGE PROJECTS DESIGN ============================*/

.container-projects {
    width: 100%;
    /* background: #0d0d0d; */
    background: radial-gradient(circle at center, rgba(255,140,0,0.12), transparent 60%), #0c0c0c;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.pageLab-card {
    max-width: 1280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    border-radius: 20px;
    background: linear-gradient(
                90deg,
                #0a0900,
                #312206,
                #ac4f04
    );
    /* box-shadow: 0 15px 40px rgba(0,0,0,.6),
                0 0 10px rgba(255,140,0,.15); */
    box-shadow: 0 15px 40px rgba(0,0,0,.6),
                0 0 10px rgba(255,140,0,.15);
    
}

.pageLab-img {
    position: relative;
}

.pageLab-img img {
    width: 220px;
    animation: float-img-logo 4s ease-in-out infinite;
}

.pageLab-img::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 119, 0, 0.438), transparent);
    filter: blur(40px);
}

.pageLab-desc {
    max-width: 500px;
}

.pageLab-desc .tag {
    border: 1px solid #dd9e17;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 3px;
    color: #f7ae11;
}

.pageLab-desc .benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    color: #d6d6d6;
    letter-spacing: 1px;
    text-align: start;
}

.pageLab-desc .benefits span {
    color: #dd9e17;
}

.pageLab-desc .benefits li {
    position: relative;
    padding: 10px 0;
    transition: .6s;
    cursor: pointer;
}

.pageLab-desc .benefits li:not(:last-child) {
    border-bottom: 1px solid;
    border-image: linear-gradient(
        90deg,
        transparent,
        rgba(255,120,0,0.5),
        transparent
    ) 1;
}

.pageLab-desc .benefits li:hover {
    transform: translateX(5px);
}

.pageLab-desc p {
    color: #d6d6d6;
    line-height: 1.6;
    /* margin-top: 30px;
    margin-bottom: 30px; */
    margin-block: 30px;
}

.pageLab-desc > a {
    display: flex;        
    justify-content: center; 
    width: 100%;           
    text-decoration: none; 
    margin-top: 20px;
}

/* Estilização do botão em si */
.btn-card-section {
    padding: 12px 25px;
    /* background-color: #ac4f04; Ou a cor que preferir */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
    width: 100%;
}

.btn-card-section:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 2px 20px rgba(255,120,0,0.5);
                
}

/* ============================ BENEFICIOS DESIGN ============================*/

.benefits-content {
    padding: 0 1.5rem;
    padding-top: 4rem;
    background: radial-gradient(circle at center, rgba(255,140,0,0.12), transparent 60%), #050505;
}

.benefits-content .benefit-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    font-size: 24px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.benefit-card {
    position: relative;
    background: var(--box-bg);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transform: preserve-3d;
    will-change: transform;
    transition: .1s ease;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.4),
        inset 0 0 10px rgba(255,255,255,0.02);
    color: #fff;
}

.benefit-card h3, .benefit-card p, .card-img {
    transform: translateZ(30px);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7),
                0 0 20px rgba(255,120,0,0.15);
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at top, rgba(255,120,0,0.15), transparent);
    opacity: 0;
    transition: .3s;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(
        circle at var(--x) var(--y),
        rgba(255,120,0,0.25),
        transparent 60%
    );
    opacity: 0;
    transition: opacity .3s;
}

.benefit-card:hover::after {
    opacity: 1;
}

.card-img {
    height: 140px;
    border-radius: 140px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
    transition: .3s;
}

.benefit-card:hover .card-img {
    filter: brightness(1.1);
}

.empreendedor {
    background-image: url('../img/Empreendedor.webp');
}

.infoprodutor {
    background-image: url('../img/Infoprodutor.webp');
}

.autonomo {
    background-image: url('../img/Autonomo.webp');
}

.benefit-card h3 {
    font-size: 20px;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
}

.benefit-card p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.5;
    margin-block: 20px;
}

.transition-section {
    padding: 80px 20px;
    text-align: center;
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.transition-text {
    font-size: 1.5rem;
    color: #c7c7c7;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.transition-text span {
    color: #ffffff;
    font-weight: 500;
    display: block;
    margin-top: 10px;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid #ffb347;
    border-radius: 20px;
    margin: 40px auto 0;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #ffb347;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollMouse 1.6s infinite;
}


/* ============================ PROJETOS ============================*/

.projects {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(135deg, #d0e8f8 0%, #E9ECEF 100%);
}

.projects-container {
    max-width: 1280px;
    margin: auto;
    color: #000;
}

.projects-title {
    font-size: 26px;
    margin-bottom: 10px;
}

.projects-title span {
    color: #D64B00;
}

.projects-subtitle {
    margin-bottom: 60px;
}

.projects-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 40px;
    background: #12141d;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    color: #cbd5f5;
    transition: all .3s ease;
}

.projects-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.7);
}

.projects-card::before {
    content: '';
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(160,137,7,0.644), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
}

.projects-card:hover::before {
    opacity: .25;
}


.project-image {
    border-radius: 12px;
    padding: 20px;
    box-shadow: 
        inset 0 10px 20px rgba(0, 0, 0, 0.11),
        0 4px 10px rgba(0, 0, 0, 0.342);
}

.project-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

.project-info {
    text-align: left;
    max-width: 450px;
}

.project-info h3 {
    font-size: 26px;
    margin: 10px 0;
}

.client {
    margin-bottom: 20px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.features span {
    color: #D64B00;
}

.features li {
    margin-bottom: 8px;
}

.btn-project {
    position: relative;
    display: inline-block;
    transition: all .3s ease;
}

.btn-project:hover {
    transform: translateY(-2px);
}

.projects-footer {
    margin-top: 60px;
}

.projects-footer span {
    display: block;
    margin-top: 10px;
}

/* ============================ CONTAINER SOBRE ============================*/

.about {
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(255,140,0,0.12), transparent 60%), #050505;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right,
        rgba(255,140,0,0) 10%,
        rgba(255,140,0,1) 50%,
        rgba(255,140,0,0) 90%
    );
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right,
        rgba(255,140,0,0) 10%,
        rgba(255,140,0,1) 50%,
        rgba(255,140,0,0) 90%
    );
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.img-wrapper {
    position: relative;
    width: 350px;
}

.img-wrapper img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    filter: grayscale(100%) brightness(0.8) contrast(1.1);
}

.card-bg {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a1a, #111);
    border: 1px solid rgba(255,215,0,.2);
    z-index: 1;
}

.text-card {
    flex: 1;
    background: linear-gradient(135deg, #111, #0d0d0d);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,215,0,.15);
    position: relative;
    transition: all .3s ease;
    box-shadow: 0 0 40px rgba(255,165,0,.08);
}

.text-card:hover {
    box-shadow: 0 0 30px rgba(212,175,55,.15);
}

.text-card::after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255,215,0,.2);
    border-radius: 50%;
    opacity: .3;
}

.text-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 4px;
    height: 80%;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    border-radius: 20px 0 0 20px;
}

.text-card .subtitle {
    font-style: italic;
    color: #c9a64b;
}

.text-card h2 {
    font-size: 36px;
    margin: 10px 0 20px;
    /* color: #d4af37; */
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
}

.text-card p {
    line-height: 1.6;
    color: #cfcfcf;
    margin-bottom: 15px;
}

.btn-about {
    display: inline-block;
    position: relative;
}


/* ============================ FAQ / PERGUNTAS FREQUENTES ============================*/

.faq {
    background: radial-gradient(circle at center, rgba(255,140,0,0.12), transparent 60%), #050505;
    color: #ffffff;
    margin: 0;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.faq-section {
    width: 100%;
    max-width: 1280px;
}

.faq-pre-header {
    text-align: center;
    /* color: #4df0d0; */
    font-size: .85rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 500;
}

.faq-header {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    margin-top: 0;
}

.faq-item {
    border: 2px solid #353535;
    border-radius: 6px;
    margin-bottom: 16px;
    /* background: transparent; */
    background: radial-gradient(circle at center, rgba(255,140,0,.08), transparent 70%);
    transition: all .3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.faq-question {
    list-style: none;
    width: 100%;
    padding: 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: rgba(255,140,0,.05);
    transform: translateX(4px);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: all .3s ease;
}

.faq-answer {
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    margin: 0;
    color: #a0b2b8;
    font-size: .95rem;
    line-height: 1.6;
}

details[open] {
    background: radial-gradient(circle at top, rgba(255,140,0,.12), transparent 70%);
}

details[open] .faq-icon {
    transform: rotate(45deg) scale(1.1);
    color: #ff8c00;
}

details[open] .faq-answer {
    animation: fadeInDown .4s ease-in-out;
}

/* ============================ 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;
} */

footer {
    background: radial-gradient(circle at top, rgba(255,140,0,.08), transparent 70%), #050505;
    padding: 50px 20px;
    border-top: 1px solid rgba(255,140,0,.15);
}


.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 100px;
    opacity: .9;
    transition: .3s ease;
}

.footer-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footerRedeCopy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-content {
    display: flex;
    gap: 20px;
}

.social-content a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111;
    border: 1px solid rgba(255,140,0,.2);
    transition: all .3s ease;
}

.social-content svg {
    width: 20px;
    height: 20px;
    color: #fff;
    transition: .3s;
}

.social-content a:hover {
    background: rgba(255,140,0,.1);
    border-color: #ff8c00;
    box-shadow: 0 0 15px rgba(255,140,0,.3);
    transform: translateY(-3px);
}

.social-content a:hover svg {
    color: #ff8c00;
}

.footerRedeCopy p {
    font-size: .85rem;
    color: #888;
    text-align: center;
}

@media only screen and (max-width: 1300px) {
    .featured-name {
        font-size: 30px;
    }

    .featured-image img {
        max-width: 280px;
    }

    .featured-text h1 {
        font-size: 2rem;
    }

    .floating-img img {
        width: 160px!important;
        height: auto;
        display: block;
    }

}

/* ============================ MEDIA QUARY 1024PX ============================*/

@media only screen and (max-width: 1024px) {
    .container-home {
        padding-inline: 2vh;
        }
    .featured-text {
        padding: 0;
    }

    .featured-text-btn .blue-btn-2  {
        display: none;
    }
    /* .floating-img img {
        width: 160px!important;
        height: auto;
        display: block;
    } */

    .card-img-2 {
    top: 50%;
    right: -40px;
    animation-delay: 1s;
}
    .image, .image img { 
        width: 320px;
    }

    .faq-content img {
        width: 600px;
    }
}

/* ============================ MEDIA QUARY 900PX ============================*/

@media only screen and (max-width: 900px) {


    /* ============= MEDIA QUARY PAGINA HOME =============*/

    .container-home {
        padding-inline: 1vh;
        padding-top: 100px;
    }

    .featured-box {
        flex-direction: column;
        justify-content: center;
        /* height: 100vh; */
        padding-top: 5vh;
        gap: 6rem;
    }

    .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%;
    }

    .featured-image img {
        max-width: 180px;
    }

    .floating-img img {
    width: 100px;
    height: auto;
    display: block;
    }
    .image, .image img {
        width: 300px;
    }

    .projects-card {
        flex-direction: column;
        text-align: center;
    }
    .project-info {
        text-align: center;
    }

    /* ============= MEDIA QUARY PAGINA BENEFICIOS =============*/

    .container-beneficios .content-box {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    /* ============= MEDIA QUARY LANDING PAGE =============*/

    .container-projects .pageLab-boxContent {
        flex-direction: column;
        padding-block: 2rem;
        gap: 2rem;
    }

    .container-projects .pageLab-boxContent .pageLab-desc {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center ;
    }

    .container-projects .pageLab-boxContent .pageLab-img img {
        width: 120px;
    }

    /* ============= SOBRE A PAGELAB =============*/

    .container-projects {
        padding: 100px 7px;
    }

    .pageLab-card {
        flex-direction: column;
        gap: 2rem;
        padding: 30px;
    }

    .pageLab-desc {
        text-align: center;
    }

    .pageLab-img img {
        max-width: 140px;
    }

    .pageLab-desc p  {
        margin-block: 45px;
    }

    .pageLab-desc .tag {
    font-size: 12px;
    letter-spacing: 0;
    /* word-break: break-all; */
}   

    .title-content-landingPerfect .subtitle {
        text-align: center;
        padding-inline: 8px;
    }


    /* ============= MEDIA QUARY PAGINA SOBRE =============*/

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .img-wrapper {
        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: 850px) {
    .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;
    }

    .sobre-content {
        flex-direction: column;
        padding-block: 2rem;
    }

    .sobre-content .text-sobre,
    .sobre-content .img-sobre {
        width: 100%;
        min-height: auto;
        padding: 1rem;
        text-align: center;
        align-items: center;
    }

    .sobre-content .text-sobre {
        gap: 1rem;
    }

    .sobre-content .img-sobre {
        justify-content: center;
    }

    .sobre-content .img-sobre img {
        width: 100%;
        max-width: 400px;
    }

    .content {
        height: auto;
        min-height: auto;
    }

    .content .quemSou {
        flex-direction: column;
    }
}

/* ============================ MEDIA QUARY 550PX ============================*/

@media screen and (max-width: 550px) {
    .featured-name {
        font-size: 25px;
    }

    .featured-image {
        max-width: 100%;
    }

    .featured-image img {
        width: 100%;
    }

    .floating-img img {
        width: 100px !important;
        height: auto;
        display: block;
    } 

    .card-img-1 {
        top: 10%;
        left: -20px;
        animation-delay: 0s;
    }

    .card-img-2 {
        top: 50%;
        right: -0px;
        animation-delay: 1s;
    }

    .card-img-3 {
        bottom: 20%;
        left: -0px;
        animation-delay: 1s;
    }

    .content {
        height: 130vh;
    }

}

/* ============================ MEDIA QUARY 340PX ============================*/

@media screen and (max-width: 340px) {
    .btn {
        padding: 8px;
    }

}


/* ============================ KEYFRAMES ============================*/

/* ======== Navbar ========*/

@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 abrirLinha {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes pulsarBrilho {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.7;
        filter: brightness(1.5);
    }
}

/* ======== Floating Img Home ========*/

@keyframes float-img {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ======== Button ========*/

@keyframes btnAnimate {
    0% {
        left: -75%;
    }
    60% {
        left: 130%;
    }
    100% {
        left: 130%;
    }
}

@keyframes pulsar {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 108, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(240, 108, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(240, 108, 0, 0);
    }
}

/* ======== Slide ========*/

@keyframes scrollleft {
    to {
        left: -380px;
    }
}

@keyframes shine-bar {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* ======== Section Landind Page Perfeito ========*/

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float-img-logo {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        top: 5px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}