* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #08090A;
}

header {
    width: 100%;
    height: 64px;
    padding: 16px 0;
    background-color: #08090A;
    border-bottom: 1px solid #1C1D1D;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.header-scrolled {
    max-width: 1216px;
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
    margin: 0 auto;
    top: 16px;
    transform: none;
    padding: 12px 0;
    border-radius: 16px;
    border: 1px solid #1C1D1D;
}

.cabecalho {
    width: 100%;
    max-width: 1216px;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.cabecalho-scrolled {
    padding: 0 12px;
}

.navegation {
    margin: 0 auto;
}

.navegation ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

.navegation a {
    color: #8A8F98;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 1.5rem;
    padding: 8px 12px;
    border-radius: 7px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.navegation a:hover {
    background-color: #1C1D1D;
    color: #fff;
}

.navegation a.active {
    background-color: #1C1D1D;
    color: #fff;
}

.botao-header {
    display: flex;
    gap: 8px;
}

.btnLogin {
    color: #F7F8F8;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 1.25rem;
    background-color: #08090A;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btnLogin:hover {
    background-color: #1C1D1D;
    color: #fff;
}

.btnRegistrar {
    color: #08090A;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 1.25rem;
    background-color: #F7F8F8;
    border-radius: 7px;
    border: none;
    cursor: pointer;
}

.btnRegistrar:hover {
    background: linear-gradient(135deg, #09BAFE 0%, #75FF91 100%);
    color: #000;
}

.menu-mobile-icon {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 7px;
    transition: background-color 0.3s ease-in-out;
    position: relative;
    z-index: 1001;
}

.menu-mobile-icon .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #F7F8F8;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

.bar:nth-child(1) {
    width: 24px;
}

.bar:nth-child(2) {
    width: 20px;
}

.bar:nth-child(3) {
    width: 16px;
}

/* Estilos do Menu Mobile */
body.menu-aberto header {
    border-bottom: none;
}

body.menu-aberto .header-scrolled {
    border-bottom: none;
    border-radius: 16px 16px 0 0;
}

/* Estilos do Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #08090A;
    z-index: 999;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    border-top: none; /* Garantir que não tenha borda superior */
}

/* Menu aberto - ajustar para grudar no header */
body.menu-aberto .mobile-menu {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    top: 72px; /* Grudar exatamente no final do header */
    opacity: 1;
    visibility: visible;
}

body.scrolled.menu-aberto .mobile-menu {
    top: 64px; /* Ajuste para header scrolled */
}

body.menu-aberto header {
    border-bottom: none;
}

body.menu-aberto .header-scrolled {
    border-bottom: none;
    border-radius: 16px 16px 0 0;
}

/* REMOVER qualquer transform ou transição lateral */
.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    width: 100%;
    justify-content: start;
    align-items: start;
    gap: 0;
    /* SEM transformações */
}

.mobile-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px dashed #181818;
    color: #8A8F98;
    text-decoration: none;
    width: 100%;
    /* SEM transições */
}

.mobile-menu nav ul li {
    width: 100%;
}

.mobile-menu li a:hover {
    color: #fff;
}

.mobile-menu li a::after {
    content: '>';
    color: #fff;
    font-size: 1.2rem;
}

.mobile-menu .btnHeader {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 12px;
}

.mobile-menu .btnHeader button {
    width: 100%;
    text-align: center;
}

/* Animação do Hamburger para X */
body.menu-aberto .menu-mobile-icon .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    width: 24px;
}

body.menu-aberto .menu-mobile-icon .bar:nth-child(2) {
    opacity: 0;
}

body.menu-aberto .menu-mobile-icon .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    width: 24px;
}

#inicio {
    display: flex;
    justify-content: center;
}

.background {
    background-image: url(/img/background_desktop.webp);
    background-repeat: no-repeat;
    background-position: center 49px;
    position: relative;
    z-index: 0;
}

.inicio {
    margin-top: 136px;
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 1216px;
}

.texto-inicio h1 {
    font-size: 3.5rem;
    line-height: 4.488rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 24px;
}

.texto-inicio p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #BDBDBD;
    text-align: center;
}

.texto-gradient {
    background: linear-gradient(135deg, #09BAFE 0%, #75FF91 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.btnInicio {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.btnProjeto {
    padding: 12px 24px;
    background-color: #fff;
    text-decoration: none;
    color: #000;
    border-radius: 40px;
    font-size: 1rem;
    line-height: 1.5rem;
}

.btnProjeto:hover {
    background: linear-gradient(135deg, #09BAFE 0%, #75FF91 100%);
    color: #08090A;
}

.btnPortfolio:hover {
    background-color: #FFFFFF;
    color: #08090A;
}

.btnPortfolio {
    padding: 12px 24px;
    background-color: #08090A;
    text-decoration: none;
    color: #fff;
    border: 1px solid #181818;
    border-radius: 40px;
    font-size: 1rem;
    line-height: 1.5rem;
}

.img-notebook-mobile {
    display: none;
}

.img-notebook {
    position: relative;
}

.notebook-img {
    width: 100%;
}

.floating-window-left {
    width: 200px;
    height: 92px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(40, 42, 54, 0.80);
    backdrop-filter: blur(1px);
    position: absolute;
    top: 20%;
    left: 1%;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-window-right {
    width: 200px;
    height: 143px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(40, 42, 54, 0.80);
    backdrop-filter: blur(1px);
    position: absolute;
    top: 55%;
    left: 80%;
    /* left: calc(50% + 20vw); */
    z-index: 3;
    animation: float 4s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}


@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        /* Posição inicial: sem translação e sem rotação */
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
        /* Move um pouco para cima e gira levemente */
    }

    100% {
        transform: translateY(0px) rotate(0deg);
        /* Volta para a posição inicial */
    }
}

.floating-window-left img,
.floating-window-right img {
    width: 100%;
}


.blur-direita,
.blur-esquerda {
    width: 298px;
    height: 298px;
    flex-shrink: 0;
    border-radius: 298px;
    background: linear-gradient(150deg, #09BAFE 12.49%, #75FF91 88.72%);
    filter: blur(150px);
}

.blur-esquerda,
.blur-direita {
    position: absolute;
    border-radius: 298px;
    z-index: -1;
    filter: blur(150px);
}

.blur-esquerda {
    background-color: #00FFC0;
    width: 298px;
    height: 298px;
    top: 30%;
    left: -2%;
    transform: translateY(-50%);
}

.blur-direita {
    background-color: #FF00C0;
    /* Cor magenta/avermelhada */
    width: 298px;
    height: 298px;
    bottom: 0;
    top: 40%;
    left: 70%;
}

#servicos {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 200px auto 254px auto;
    width: 100%;
    max-width: 1216px;
}

.titulo-servicos {
    display: flex;
    /* gap: clamp(30px, 15vw, 242px); */
    width: 100%;
    justify-content: space-between;
}

.texto-servicos h2 {
    font-size: clamp(2.5rem, calc(2.5rem + 1vw), 3.5rem);
    font-weight: 600;
    /* line-height: 4rem; */
    color: #fff;
}

.linha-secao {
    display: flex;
    flex-direction: column;
    align-items: end;
    row-gap: 38px;
}

.nome-secao-servicos span,
.nome-secao-planos span,
.nome-secao-faq span {
    font-size: 0.75rem;
    line-height: 1.25rem;
    color: red;
    padding: 4px 8px;
    background-color: #08090A;
    border: 1px solid #181818;
    border-radius: 100px;
    background: linear-gradient(135deg, #09BAFE 0%, #75FF91 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}



/* .linha-servico {
    width: clamp(316px, 35vw, 504px);
    height: 1px;
    background-color: #8A8F98;
    opacity: 20%;
    padding-left: 208px;
} */

.secao-servicos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 52px;
}

.interfaces,
.web,
.ciberseguranca,
.embreve {
    width: 400px;
    height: 400px;
    background-color: #0B0C0D;
    border: 1px solid #181818;
    border-radius: 32px;
    padding: 24px 24px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.embreve {
    display: none;
}

.img-interfaces,
.img-web,
.img-ciberseguranca,
.img-embreve {
    margin: 0 auto;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.img-interfaces:hover,
.img-web:hover,
.img-ciberseguranca:hover,
.img-embreve:hover {
    opacity: 1;
}

.texto-nossos-servicos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.texto-nossos-servicos h3 {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 600;
    color: #F7F8F8;
}

.texto-nossos-servicos span {
    background: linear-gradient(135deg, #09BAFE 0%, #75FF91 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.seta {
    width: 40px;
    height: 40px;
    background-color: #0B0C0D;
    border-radius: 999px;
    border: 1px solid #181818;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F7F8F8;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.seta p {
    font-size: 1.25rem;
    margin: 0;
    transition: transform 0.3s ease;
}

.seta:hover p {
    animation: moveSeta 0.3s ease-in-out;
}

@keyframes moveSeta {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    40% {
        transform: translateX(60px);
        /* Menor distância */
        opacity: 0;
    }

    41% {
        transform: translateX(-60px);
        /* Menor distância */
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 80px;
}

.interface-figma,
.interface-vscode {
    display: flex;
    gap: 32px;
    max-width: 1216px;
}

.titulo-interface-figma,
.titulo-interface-vscode {
    margin-bottom: 64px;
}

.titulo-interface-figma h2,
.titulo-interface-vscode h2 {
    font-size: 3.5rem;
    line-height: 4rem;
    font-weight: 600;
}

.interface-figma img,
.interface-vscode img {
    width: 696px;
    height: 495px;
}


.frase-item {
    position: relative;
    color: #777;
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 15px;
    padding-left: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 400;
}


.frase-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background-color: #263238;
    transition: background-color 0.3s ease;
    border-radius: 100px;
    font-weight: 400;
}

.frase-item:hover {
    color: #fff;
}

.frase-item:hover::before {
    background-color: #fff;
}

.frase-item.ativo {
    color: #fff;
}

.frase-item.ativo::before {
    background-color: #455A64;
    border-radius: 100px;
}

.frases-interface-figma .frase-item,
.frases-interface-vscode .frase-item {
    animation: animarFrases 15s infinite;
}

/* Ajuste dos tempos para transição contínua */
.frases-interface-figma .frase-item:nth-child(1),
.frases-interface-vscode.frase-item:nth-child(1) {
    animation-delay: 0s;
}

.frases-interface-figma .frase-item:nth-child(2),
.frases-interface-vscode .frase-item:nth-child(2) {
    animation-delay: 5s;
}

.frases-interface-figma .frase-item:nth-child(3),
.frases-interface-vscode .frase-item:nth-child(3) {
    animation-delay: 10s;
}

/* Keyframes - transição suave e contínua */
@keyframes animarFrases {
    0% {
        color: #7B7C83;
        opacity: 0.3;
    }

    5% {
        color: #fff;
        opacity: 1;
    }

    30% {
        color: #fff;
        opacity: 1;
    }

    35% {
        color: #7B7C83;
        opacity: 0.3;
    }

    100% {
        color: #7B7C83;
        opacity: 0.3;
    }
}

.frases-interface-figma .frase-item::before,
.frases-interface-vscode .frase-item::before {
    animation: animarBarra 15s infinite;
}

.frases-interface-figma .frase-item:nth-child(1)::before .frases-interface-vscode .frase-item:nth-child(1)::before {
    animation-delay: 0s;
}

.frases-interface-figma .frase-item:nth-child(2)::before,
.frases-interface-vscode .frase-item:nth-child(2)::before {
    animation-delay: 5s;
}

.frases-interface-figma .frase-item:nth-child(3)::before,
.frases-interface-vscode .frase-item:nth-child(3)::before {
    animation-delay: 10s;
}

@keyframes animarBarra {
    0% {
        background-color: #263238;
    }

    5% {
        background-color: #455A64;
    }

    30% {
        background-color: #455A64;
    }

    35% {
        background-color: #263238;
    }

    100% {
        background-color: #263238;
    }
}

#planos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 156px;
    flex-direction: column;
    width: 100%;
    max-width: 1216px;
    margin: 156px auto;
}

.titulo-planos {
    display: flex;
    text-align: center;
    /* gap: 140px; */
    margin-bottom: 56px;
    flex-direction: column;
}

.nome-secao-planos {
    /* text-align: start; */
    margin-bottom: 8px;
}

.texto-planos h2 {
    color: #F7F8F8;
    font-family: Inter;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: 3rem;
    margin-bottom: 16px;
}

.texto-planos p {
    color: #878C99;
    font-family: Geist;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.75rem;
}

.nossos-planos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.design,
.desenvolvimento {
    width: 400px;
    height: 622px;
    padding: 24px 24px;
    background-color: #08090A;
    border: 1px solid #181818;
}

.titulo-design h4,
.titulo-design-desenvolvimento h4,
.titulo-desenvolvimento h4 {
    color: #878C99;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5625rem;
    letter-spacing: -0.02rem;
    margin-bottom: 8px;
}

.preco {
    color: #F7F8F8;
    font-family: Geist;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.5rem;
}

.linha-planos {
    width: 100%;
    height: 1px;
    background: #181818;
    margin: 24px 0;
}

.btnPlanos,
.btnPlanos-gradient {
    width: 100%;
}

.btnPlanos button {
    display: flex;
    width: 100%;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background-color: #181818;
    border: none;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #fff;
    cursor: pointer;
    margin-bottom: 24px;
}

.btnPlanos button:hover {
    background-color: #121212;
}

.design-desenvolvimento {
    width: 400px;
    height: 622px;
    padding: 24px 24px;
    background-color: #08090A;
    border: 1px solid #09BAFE;
}

.btnPlanos-gradient button {
    width: 100%;
    height: 40px;
    color: #040E15;
    font-family: 'Inter';
    font-size: 1rem;
    font-weight: 500;
    line-height: 24px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(135deg, #09BAFE, #75FF91, #09BAFE);
    background-size: 300% 300%;
    animation: moveGradient 5s ease infinite;
    transition: color 0.3s ease;
    cursor: pointer;
    margin-bottom: 24px;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.servicos-disponibilizados .servicos-disponibilizados>ul {
    list-style: none;
}

.servicos-disponibilizados>ul>li {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #fff;
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

/* #duvidas {
    width: 100%;
    max-width: 1216px;
    margin: 0 auto;
}

.titulo-duvidas {
    display: flex;
    justify-content: space-between;
}

.texto-duvidas h2 {
    font-size: 3rem;
    line-height: 3.5rem;
    color: #fff;
    font-weight: 600;
    width: 400px;
}

.btnDuvidas {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 312px;
}

.btnDuvidas button {
    width: fit-content;
    padding: 10px 16px;
    background-color: #000203;
    border: 1px solid #181818;
}

.btnDuvidas button:active {
    background-color: #0B0C0D;
    transform: translateY(1px);
}

.btnDuvidas button.selecionado {
    background-color: #0B0C0D;
    transform: translateY(1px);
}
 */

#duvidas {
    width: 100%;
    max-width: 1216px;
    margin: 0 auto 156px;
}

.titulo-duvidas {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.texto-duvidas h2 {
    font-size: 3rem;
    line-height: 3.5rem;
    color: #fff;
    font-weight: 600;
    width: 400px;
}

/* .linha-secao-faq {
    flex: 1;
    height: 1px;
    background-color: #333;
    margin: 0 20px;
    align-self: center;
} */

.nome-secao-faq span {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.conteudo-faq {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.btnDuvidas {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 312px;
    gap: 8px;
}

#mobile-faq {
    display: none;
}

.botao-faq {
    width: fit-content;
    padding: 12px 0;
    background-color: transparent;
    border: none;
    color: #7B7B83;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 1rem;
    line-height: 1.5rem;
    opacity: 0.7;
}

.botao-faq:hover {
    color: #fff;
    /* transform: translateY(-2px); */
}

/* .botao-faq:active {
    transform: translateY(0px);
} */

.botao-faq.selecionado {

    transform: translateY(0px);
    color: #fff;
    opacity: 1;
}

.conteudo-perguntas {
    flex: 1;
    min-height: 400px;
}

.faq-categoria {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.faq-categoria.ativo {
    display: block;
}

.pergunta-item {
    background-color: #08090A;
    border: 1px solid #181818;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.pergunta-item:hover {
    background-color: #0B0C0D;
    /* transform: translateX(5px); */
}

.pergunta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.resposta {
    /* margin-top: 12px; */
    padding-top: 12px;
    /* border-top: 1px solid #333; */
    color: #B3B3B3;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 300;
    display: none;
}

.resposta.ativa {
    display: block;
    animation: slideDown 0.3s ease;
}

.icone {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.icone.virado {
    transform: rotate(180deg);
}

.icone img {
    width: 16px;
    height: 16px;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 200px;
    }
}

.contato {
    width: 100%;
    max-width: 1216px;
    height: 466.52px;
    margin: 0 auto 156px;
    border: 1px solid #181818;
    background-color: #08090A;
    border-radius: 50px;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
}

.texto-contato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    /* position: relative;
    z-index: 1;*/
}

.img-contato {
    width: 64px;
    height: 64px;
    border: 1px solid #181818;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-container {
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
}

.second-line {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.text-rotator {
    position: relative;
    height: 1.2em;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    margin-left: 0.5rem;
}

.word-list {
    position: relative;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}

.word-list div {
    height: 1.2em;
    display: flex;
    align-items: center;
    font-weight: bold;
    white-space: nowrap;
    font-size: 3rem;
    background: linear-gradient(135deg, #09BAFE 0%, #75FF91 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-container p {
    color: #8A8F98;
    font-size: 1rem;
    line-height: 1.5rem;
    width: 460px;
    margin-top: 16px;
}

.img-detalhe-contato img {
    width: 466.48px;
    height: 467px;
}

@keyframes infiniteLoop {
    0% {
        transform: translateY(0);
    }

    /* Inovação */
    0%,
    16.66% {
        transform: translateY(0);
    }

    /* Transição para Design */
    22.22% {
        transform: translateY(-1.2em);
    }

    /* Design */
    22.22%,
    38.88% {
        transform: translateY(-1.2em);
    }

    /* Transição para Crescimento */
    44.44% {
        transform: translateY(-2.4em);
    }

    /* Crescimento */
    44.44%,
    61.11% {
        transform: translateY(-2.4em);
    }

    /* Transição para Inovação (loop) */
    66.66% {
        transform: translateY(-3.6em);
    }

    /* Inovação (duplicada - invisível) */
    66.66%,
    83.33% {
        transform: translateY(-3.6em);
    }

    /* Transição suave para o início (invisível) */
    88.88% {
        transform: translateY(-4.8em);
    }

    /* Reset invisível */
    88.88%,
    100% {
        transform: translateY(-4.8em);
    }
}

.rede-social {
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.rede-social img:hover {
    transform: scale(1.1);
}

.footer {
    width: 100%;
    height: 64px;
    border-top: 1px solid #181818;
    padding: 24px 0;
}

.texto-footer {
    width: 1216px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.direitos-reservados {
    color: #8A8F98;
    font-family: Inter;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
}

.termos-footer {
    display: flex;
    gap: 12px;
}

.texto-footer a {
    text-decoration: none;
    color: #8A8F98;
    font-family: Inter;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
}

.texto-footer a:hover {
    color: #63636b;
}


@media screen and (max-width: 1230px) {
    .titulo-servicos {
        padding: 0 24px;
    }

    .embreve {
        display: flex;
    }

    .embreve>.texto-nossos-servicos>.seta {
        display: none;
    }

    .embreve>.texto-nossos-servicos {
        justify-content: center;
    }

    .branding {
        padding: 0 24px;
    }

    #planos {
        padding: 0 24px;
        display: block;
    }

    .nossos-planos {
        flex-direction: column;
    }

    .design,
    .desenvolvimento,
    .design-desenvolvimento {
        width: 100%;
        height: 622px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    #duvidas {
        padding: 0 24px;
    }

    #contato {
        padding: 0 24px;
    }

    .footer {
        padding: 24px 24px;
    }

    .texto-footer {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 1216px) {
    .cabecalho {
        padding: 0 24px;
    }
}

@media screen and (max-width: 1112px) {
    .contato {
        justify-content: center;
        align-items: center;
    }

    .texto-contato {
        position: absolute;
        z-index: 1;
    }

    .img-detalhe-contato {
        position: relative;
        z-index: 0;
    }
}

@media (max-width: 1024px) {

    .interface-figma,
    .interface-vscode {
        flex-direction: column;
        gap: 40px;
    }

    .interface-vscode {
        flex-direction: column-reverse;
    }

    .titulo-interface-figma h2,
    .titulo-interface-vscode h2 {
        font-size: 2.8rem;
        line-height: 3.2rem;
    }

    .titulo-interface-figma,
    .titulo-interface-vscode {
        margin-bottom: 40px;
    }

    .img-interface-figma img,
    .img-interface-vscode img {
        max-width: 90%;
    }
}

@media screen and (max-width: 1016px) {
    .floating-window-right {
        left: calc(50% + 20vw);
    }
}

@media screen and (max-width: 1006px) {

    .blur-direita,
    .blur-esquerda {
        width: 250px;
        height: 250px;
        filter: blur(125px);
    }
}

@media screen and (max-width: 857px) {
    .texto-inicio h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    #servicos {
        padding: 0 24px;
    }

    .titulo-servicos {
        gap: 48px;
    }

    .texto-servicos h2 {
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .linha-servico {
        width: 316px;
    }

    .interfaces,
    .web,
    .ciberseguranca,
    .embreve {
        width: 300px;
        height: 300px;
        padding: 16px 16px;
    }

    .web>.texto-nossos-servicos>h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .web>.texto-nossos-servicos>.seta {
        width: 32px;
        height: 32px;
    }

    .img-interfaces img,
    .img-web img,
    .img-ciberseguranca img,
    .img-embreve img {
        width: 166px;
        height: 166px;
    }
}

@media screen and (max-width: 950px) {
    .conteudo-faq {
        gap: 0;
    }
}

@media screen and (max-width: 830px) {
    .background {
        background-image: url(/img/background-tablet.webp);
    }

    .navegation,
    .botao-header {
        display: none;
    }

    .menu-mobile-icon {
        display: flex;
    }

    body.scrolled header {
        max-width: calc(100% - 48px);
    }

    body.menu-aberto .mobile-menu {
        max-width: calc(100% - 48px);
        margin: 0 24px;
        border-radius: 0 0 16px 16px;
        border-left: 1px solid #181818;
        border-right: 1px solid #181818;
        border-bottom: 1px solid #181818;
    }

    body.scrolled.menu-aberto .mobile-menu {
        top: 76px;
    }

    .cabecalho {
        justify-content: space-between;
        gap: 0;
        padding: 0 16px;
    }

    .menu-mobile-icon {
        display: flex;
        /* Mostra o ícone em telas pequenas */
    }

    .texto-inicio h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .inicio {
        margin-top: 120px;
        padding: 0 24px;
    }

    .texto-inicio p {
        font-size: 0.875rem;
    }

    .btnProjeto,
    .btnPortfolio {
        padding: 8px 20px;
        font-size: 0.875rem;
        line-height: 1.375rem;
    }

    .floating-window-left {
        width: 138px;
        height: 62px;
    }

    .floating-window-right {
        width: 138px;
        height: 98px;
    }

    .blur-direita,
    .blur-esquerda {
        width: 200px;
        height: 200px;
        filter: blur(100px);
    }

    .interfaces,
    .web,
    .ciberseguranca,
    .embreve {
        /* width: 250px;
        height: 250px; */
        padding: 16px 16px;
    }

    .img-interfaces img,
    .img-web img,
    .img-ciberseguranca img,
    .img-embreve img {
        width: 154px;
        height: 154px;
    }

    #servicos {
        padding: 0 24px;
        margin: 104px auto 156px;
    }

    .texto-nossos-servicos h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .linha-servico {
        display: none;
    }

    .web>.texto-nossos-servicos h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .seta {
        width: 32px;
        height: 32px;
    }

    .seta p {
        font-size: 1rem;
    }

    .titulo-interface-figma h2,
    .titulo-interface-vscode h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}

/* Ajustes para o cabeçalho fixo */
.cabecalho-scrolled {
    gap: 0;
    justify-content: space-between;
    padding: 0 12px;
}

@media screen and (max-width: 813px) {
    .embreve {
        display: flex;
    }

    .titulo-servicos {
        gap: 0;
    }
}

@media (max-width: 768px) {
    .branding {
        padding: 40px 20px;
        gap: 60px;
    }

    .titulo-interface-figma h2,
    .titulo-interface-vscode h2 {
        font-size: 2.2rem;
        line-height: 2.6rem;
    }

    .frase-item {
        font-size: 1.1rem;
        line-height: 1.4rem;
    }

    .interface-figma img,
    .interface-vscode img {
        width: 100%;
        height: auto;
    }

    .conteudo-faq {
        flex-direction: column;
        gap: 20px;
    }

    .btnDuvidas {
        max-width: 100%;
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        border: 1px solid #181818;
        background-color: #000203;
        border-radius: 8px;
        gap: 0;
        justify-content: space-between;
    }

    .btnDuvidas::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .botao-faq {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 10px 16px;
        background-color: #000203;
        color: #7B7B83;
        font-size: 0.9rem;
        border-radius: 0;
        transition: all 0.3s ease;
        min-width: fit-content;
    }

    .botao-faq:hover {
        background-color: #0B0C0D;
        color: #7B7B83;
    }

    .botao-faq.selecionado {
        background-color: #0B0C0D;
        color: #FFFFFF;
    }

    .titulo-duvidas {
        align-items: start;
        gap: 20px;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .texto-duvidas h2 {
        font-size: 3rem;
        width: 423.85px;
        line-height: 3.5rem;
    }

    .linha-secao-faq {
        width: 100%;
        margin: 10px 0;
    }

    .conteudo-perguntas {
        min-height: 300px;
    }

    .pergunta-item {
        padding: 16px;
        margin-bottom: 10px;
    }

    .pergunta {
        font-size: 1rem;
    }

    .resposta {
        font-size: 0.9rem;
        line-height: 1.4rem;
    }

    /* #desktop-faq {
        display: none;
    }

    #mobile-faq {
        display: flex;
    } */

    .contato {
        max-width: 100%;
        margin: 0 auto 64px;
        border: 1px solid #181818;
        padding: 24px 24px;
        border-radius: 32px;
        justify-content: start;
    }

    .text-container {
        font-size: 2.5rem;
    }

    .word-list div {
        font-size: 2rem;
        height: 1.6em;
        line-height: 2.5;
    }
}

@media screen and (max-width: 670px) {
    #desktop-faq {
        display: none;
    }

    #mobile-faq {
        display: flex;
    }

    .btnDuvidas {
        -webkit-overflow-scrolling: touch;
    }

    .botao-faq {
        user-select: none;
        /* Evita seleção de texto ao arrastar */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
}

@media screen and (max-width: 655px) {

    .interfaces,
    .web,
    .ciberseguranca,
    .embreve {
        width: 400px;
        height: 400px;
    }

    .img-interfaces img,
    .img-web img,
    .img-ciberseguranca img,
    .img-embreve img {
        width: 264px;
        height: 264px;
    }

    .embreve {
        display: none;
    }

    .web>.texto-nossos-servicos>h3,
    .texto-nossos-servicos h3 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .web>.texto-nossos-servicos>.seta,
    .seta {
        width: 40px;
        height: 40px;
    }

    .web>.texto-nossos-servicos>.seta p,
    .seta p {
        font-size: 1.125rem;
    }

    .footer {
        padding: 10px 24px;
    }

    .texto-footer {
        justify-content: center;
        gap: 4px;
    }
}

@media screen and (max-width: 649px) {
    .texto-inicio h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .blur-direita,
    .blur-esquerda {
        width: 150px;
        height: 150px;
        filter: blur(75px);
    }

    .texto-servicos h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}

@media (max-width: 576px) {
    .branding {
        padding: 30px 20px;
        gap: 32px;
    }

    .interface-figma,
    .interface-vscode {
        gap: 30px;
    }

    .titulo-interface-figma h2,
    .titulo-interface-vscode h2 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }

    .titulo-interface-figma,
    .titulo-interface-vscode {
        margin-bottom: 30px;
    }

    .frase-item {
        font-size: 1rem;
        line-height: 1.3rem;
        margin-bottom: 12px;
        padding-left: 12px;
    }

    .frase-item::before {
        width: 2px;
    }
}

@media screen and (max-width: 564px) {
    .text-container {
        font-size: 2rem;
    }

    .word-list div {
        font-size: 2rem;
        height: 1.3em;
        line-height: 2.5;
    }

    .text-container p {
        width: 440px;
    }

    .img-detalhe-contato img {
        width: 400px;
        height: 400px;
    }

    /* .text-container p {
        font-size: 0.875rem;
        line-height: 1.25rem;
    } */
}

@media screen and (max-width: 529px) {
    .texto-inicio h1 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media screen and (max-width: 510px) {
    .titulo-servicos {
        flex-direction: column-reverse;
        align-items: start;
        gap: 8px;
    }
}

@media screen and (max-width: 498px) {
    .contato {
        padding: 24px 24px;
        justify-content: center;
    }

    .text-container {
        font-size: 2rem;
    }

    .word-list div {
        font-size: 2rem;
        height: 1.2em;
        line-height: 2.5;
    }

    .text-container p {
        width: 360px;
        font-size: 0.875rem;
        line-height: 1.375rem;
    }

    .img-detalhe-contato img {
        width: 366px;
        height: 366px;
    }
}

@media screen and (max-width: 431px) {
    .cabecalho {
        padding: 0 20px;
    }

    .inicio {
        margin-top: 112px;
        padding: 0 20px;
    }

    .texto-inicio h1 {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 32px;
    }

    .texto-inicio p {
        display: none;
    }

    .btnInicio {
        margin-top: 0;
        flex-direction: column;
    }

    .notebook-img,
    .floating-window-left,
    .floating-window-right {
        display: none;

    }

    .img-notebook-mobile {
        display: block;
        margin-top: 24px;
    }

    .blur-direita,
    .blur-esquerda {
        width: 100px;
        height: 100px;
        filter: blur(60px);
    }

    #servicos {
        padding: 0 20px;
        margin: 80px auto;
    }

    .titulo-servicos {
        padding: 0 0;
    }

    .texto-servicos h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .secao-servicos {
        margin-top: 16px;
    }

    .interfaces, .web,
    .ciberseguranca,
    .embreve {
        width: 390px;
        height: 390px;
    }

    .titulo-interface-figma h2,
    .titulo-interface-vscode h2 {
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .interface-vscode {
        flex-direction: column-reverse;
    }

    .img-interface-figma img,
    .img-interface-vscode img {
        width: 390px;
        height: 276.64px;
    }

    .design,
    .desenvolvimento,
    .design-desenvolvimento {
        align-items: start;
    }

    #planos {
        margin: 80px auto;
    }

    .titulo-planos {
        margin-bottom: 32px;
    }

    .texto-planos p {
        display: none;
    }

    .texto-duvidas h2 {
        width: 390px;
        font-size: 2.5rem;
        line-height: 3rem;
    }

    #duvidas {
        margin-bottom: 80px;
    }

    #contato {
        padding: 0 20px
    }

    .contato {
        padding: 0 16px;
    }

    .text-container {
        font-size: 1.5rem;
        width: 100%;
        justify-content: center;
    }

    .word-list div {
        font-size: 1.5rem;
        height: 1em;
        line-height: 1.75;
    }

    .text-container p {
        width: 320px;
        font-size: 0.875rem;
        line-height: 1.375rem;
    }

    .termos-footer {
        display: none;
    }
    
    .img-detalhe-contato {
        display: none;
    }

    .texto-contato {
        position: static;
    }

    .footer {
        padding: 24px 24px;
    }
}

@media (max-width: 390px) {
    .texto-inicio h1 {
        font-size: 1.375rem;
        line-height: 1.875rem;
        margin-bottom: 32px;
    }

    .interfaces, .web,
    .ciberseguranca,
    .embreve{
        width: 340px;
        height: 340px;
    }

    .img-interfaces img,
    .img-web img,
    .img-ciberseguranca img,
    .img-embreve img {
        width: 216px;
        height: 216px;
    }

    .web > .texto-nossos-servicos>h3, .texto-nossos-servicos h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .texto-servicos h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .texto-planos h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .img-notebook img {
        width: 100%;
    }

    .texto-duvidas h2 {
        width: 358px;
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .contato {
        border: none;
    }

    .texto-contato {
        margin: 0 auto;
    }

    .titulo-interface-figma h2,
    .titulo-interface-vscode h2 {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    .frase-item {
        font-size: 0.9rem;
    }

}

@media screen and (max-width: 360px) {
    .texto-inicio h1 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}