/* RESET */
*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #020617;
    --primary-blue: #3b82f6;
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
}

html {
  scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    font-family: inter, sans-serif;
    margin: 0;
    color: var(--text-white);
}

section {
  scroll-margin-top: 70px; /* altura do seu header */
}


/* TIPOGRAFIA FLUIDA - RC DEV */

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /* font-family: inter, sans-serif; */
}

h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: clamp(1.15rem, 4vw, 0.80rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h4 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    line-height: 1.4;
}

p {
    font-size: clamp(1rem, 2vw, 1rem);
    /* Entre 16px e 18px */
    line-height: 1.3;
    color: #76818f;
    /* Cor cinza suave para leitura */
    margin-bottom: 1rem;
}

span {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    /* Entre 14px e 16px */
}

/* Ajuste global para garantir que nada transborde no mobile */
* {
    max-width: 100%;
    box-sizing: border-box;
}


/* HEADER */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* background: rgba(2, 6, 23, 0.8); */
    backdrop-filter: blur(10px);
    /* Efeito de vidro */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* SESSÕES */
.container-modelo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 9px 20px;
}

/* SESSÕES */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 100px;
}

.logo img {
    width: 100%;
    height: auto;
}

.menu-toggle {
    display: none;
}

.code-icon {
    background: #3b82f6;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}


/* ITEM COM DROPDOWN */
.has-dropdown {
    position: relative;
}

/* CAIXA */
.dropdown {
    position: absolute;
    top: 120%;
    /* left: 50%; */
    /* transform: translateX(-50%) translateY(10px); */
    display: flex;

    min-width: 240px;
    /* 👈 aumenta aqui */
    max-width: 90vw;
    /* 👈 evita quebrar tela */

    padding: 25px;
    border-radius: 12px;

    background: #020617;
    /* border: 1px solid #1e293b; */

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;
    z-index: 999;

    font-size: 16px;
    padding: 12px 15px;
}

/* CONTEÚDO */
.dropdown-content {
    display: flex;
    gap: 20px;
}

/* ITEM */
/* .dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
} */

/* LINKS */
.dropdown-link {
    display: block;
    padding: 12px 15px;
    border-radius: 10px;
    /* background: #020617; */
    /* border: 1px solid #1e293b; */
}

.dropdown-link:hover {
    background: linear-gradient(135deg, #0B3CC1, #1F5BFF);
    color: #fff;
}

.dropdown-item a {
    margin-bottom: 5px;
    color: #3b82f6;
    font-size: 10px;
}

/* HOVER DESKTOP */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}














.btn-budget {
    background: #3b82f6;
    color: white;
    padding: 10px 25px;
    /* Aumentei um pouco o respiro lateral */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    /* Garante que o padding e animação funcionem bem */
    position: relative;
    /* Necessário para o efeito de pulso */
    transition: all 0.3s ease;
    border: none;
    z-index: 1;
}

/* O Efeito de Pulso (Igual ao do WhatsApp) */
.btn-budget::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    /* Mesma curvatura do botão */
    background: #3b82f6;
    z-index: -1;
    /* Fica atrás do botão principal */
    animation: pulse-budget 2s infinite;
    /* Animação infinita */
}

/* Animação que expande e desaparece */
@keyframes pulse-budget {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4, 1.6);
        /* Expande mais nas laterais para botões largos */
        opacity: 0;
    }
}

/* Interação ao passar o mouse */
.btn-budget:hover {
    background: #2563eb;
    /* Escurece um pouco no hover */
    transform: translateY(-2px);
    /* Leve subida */
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-budget:hover::after {
    animation: none;
    /* Para de pulsar quando o usuário interage */
}

/* FIM HEADER */


/* MAIN */
/* .hero {
    padding: 100px 20px 60px;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, rgba(2, 6, 23, 1) 80%),
        linear-gradient(to right, #1e293b 1px, transparent 1px),
        linear-gradient(to bottom, #1e293b 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;

} */

.hero,
.hero-premium {
    padding: 100px 20px 60px;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* Cor de fundo profunda */
    background-color: #020617;

    /* Camada 1: O "Céu" (Nebula azul sutil) */
    background-image: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15), transparent 80%);
}

/* Camada 2: As Estrelas (Geradas por CSS puro, sem arquivo de imagem) */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Geramos pontos minúsculos que parecem estrelas distantes */
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 150px 40px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(3px 3px at 250px 100px, rgba(255, 255, 255, 0.713), rgba(0, 0, 0, 0));

    /* O segredo: Repetimos esses pontos em tamanhos diferentes para parecer aleatório */
    background-size: 250px 250px;
    opacity: 0.5;
    pointer-events: none;
}


.container {
    max-width: 1000px;
    position: relative;
    top: 55px;
}

.badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 20px;
}

/* .main-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin: 30px 0 20px;
    line-height: 1.1;
} */

.gradient-text {
    background: linear-gradient(90deg, #3b82f6, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.subtitulo {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
}

.btn-segundo {
    border: 1px solid #334155;
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

/* FIM MAIN */

/* FAIXA */
.faixa-1,
.faixa-2 {
    width: 120%;
    height: 40px;
    right: 5px;
    background-color: #333;
    color: white;
    overflow: hidden;
    position: relative;
    /* margin-top: 100px; */
    display: flex;
    align-items: center;

}

.faixa-1 {
    background: linear-gradient(to right,
            #020617 0%,
            rgba(12, 33, 126, 0.8) 40%,
            rgba(2, 6, 23, 0.4) 70%,
            rgba(41, 69, 193, 0.1) 100%);
    /* transform: rotate(-4deg); */
    font-size: 10px;
}

/* 
.faixa-2 {
    margin-top: -60px;
    transform: rotate(4deg);
    font-size: 10px;

    background: linear-gradient(
  to left,
  #020617 0%,
  rgba(12, 33, 126, 0.8) 40%,
  rgba(2, 6, 23, 0.4) 70%,
  rgba(41, 69, 193, 0.1) 100%
);
    
    font-size: 10px;
} */

.texto {
    display: flex;
    gap: 0;
    /* Remove qualquer espaçamento entre os textos */
    white-space: nowrap;
    animation: mover 25s linear infinite;
}

.texto span {
    font-size: 11px;
}

.texto::after {
    content: '';
    flex: 0 0 auto;
}

.texto span {
    padding-right: 20px;
    /* Pequeno espaçamento entre palavras */
}

/* Animação contínua do texto */
@keyframes mover {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Movimenta exatamente metade da largura */
    }
}

/* FIM FAIXA */


/* NOSSOS SERVIÇO */
.nossos-servicos-container {
    text-align: center;
    padding: 60px 20px;
}

.servicos-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.servicos-item {
    background: rgba(30, 41, 59, 0.296);
    border: 1px solid rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    padding: 20px;
    width: 500px;
    transition: transform 0.3s, box-shadow 0.3s;

    display: flex;
}

.item-img {
    width: 60px;
    /* Aumentamos um pouco para dar respiro à imagem de 40px */
    height: 60px;
    /* Mesma medida da largura para ser um quadrado perfeito */
    background: rgba(59, 131, 246, 0.165);
    border-radius: 12px;
    /* Um arredondado mais moderno que os 20% */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Impede que o fundo "esmague" em telas menores */
    margin-right: 20px;
}

.item-img img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    /* Garante que a imagem não distorça */
}

/* FIM NOSSOS SERVIÇO */

/* PORQUE A RC DEV */
.rc-dev {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
}

.rc-dev-container {
    display: flex;
    flex-wrap: wrap;
}

.rc-dev-box,
.rc-dev-grafico {
    flex: 1 1 300px;
}

.rc-dev-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.rc-dev-box ul {
    list-style: none;
    /* Removemos o padrão */
    padding: 0;
    color: #f8fafc;
    /* Cor do texto (Branco) */
}

.rc-dev-box ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Espaço automático entre ícone e texto */
    margin-bottom: 12px;
    font-size: 0.90rem;
}

/* Criamos o Círculo + o Ícone de Check com um único elemento */
.rc-dev-box ul li::before {
    content: '\2713';
    /* Código Unicode para o Checkmark (✓) */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Estilo do Círculo (Fundo) */
    width: 20px;
    height: 20px;
    border: 2px solid #00c997;
    /* Verde-água da imagem */
    border-radius: 50%;

    /* Estilo do Ícone (Texto interno) */
    color: #00c997;
    font-size: 0.70rem;
    font-weight: 700;
}

.rc-dev-grafico {
    position: relative;
    display: flex;
    /* Mudamos para Flex */
    flex-wrap: wrap;
    /* Permite que os itens quebrem linha */
    justify-content: center;
    /* Centraliza os itens no eixo horizontal */
    gap: 15px;
    /* Espaço entre os cards */
    padding: 40px;
    background-color: #020617;
    border-radius: 24px;
    overflow: hidden;
    /* Garante que a luz não escape do card */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Efeito de Luz Superior Direita */
.rc-dev-grafico::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Efeito de Luz Inferior Esquerda */
.rc-dev-grafico::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 201, 151, 0.15) 0%, rgba(0, 201, 151, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Estilo dos Cards Internos */
.card-item {
    position: relative;
    z-index: 1;
    /* Fica acima da luz */

    /* O SEGREDO DO FLEXBOX 2x2: */
    /* Tiramos o gap (15px) da conta para caberem 2 por linha */
    flex: 1 1 calc(50% - 15px);
    min-width: 150px;
    /* Garante que não fiquem finos demais no mobile */

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.card-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* FIM PORQUE A RC DEV */




.estatisticas {
    padding: 60px;0
}

.grade-estatisticas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 20px;
    margin-top: 0px;
    padding-top: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.item-estatistica {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3b82f6;
    text-align: center;
    /* Azul RC Dev */
}

.numero-animado {
    animation: countUp 2s ease-out forwards;
    font-size: 3rem;
}

.legenda-estatistica {
    font-size: 0.9rem;
    font-weight: 400;
    color: #94a3b8;
    margin-top: 10px;
    display: block;
    /* Garante que a legenda fique embaixo */
}





/* PORTFÓLIO */
.portfolio-projetos {
    padding-bottom: 80px;
    text-align: center;
}

.portfolio-projetos .btn {
    margin-top: 60px;
}


.portfolio {
    padding: 60px 20px;
    text-align: center;
}

.portfolio-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 20px;
}

.portfolio-box-acesso {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: start;
}

.portfolio-box-acesso,
.acesso-grafico {
    flex: 1 1 300px;
}

.portfolio-box-acesso span {
    font-size: 0.80rem;
    color: #94a3b8;
}

.portfolio-box-acesso h3 {
    font-size: 2rem;
    color: var(--text-white);
}

.acesso {
    display: flex;
    align-items: center;
    gap: 30px;
}

.antes,
.depois {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.antes span:nth-child(1),
.depois span:nth-child(1) {
    font-size: 1.8rem;
    font-weight: bold;
    color: #94a3b8;
    padding: 5px;
}

.seta {
    width: 30px;
}

.seta img {
    width: 100%;
    height: auto;
}

.acesso-grafico {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.acesso-grafico img {
    width: 15%;
    height: auto;
    border-radius: 12px;
}

.grafico {
    display: flex;
    flex-direction: column;
}

.grafico span:nth-child(1) {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #3b82f6, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* PROJETOS */
/* O CARD DO PROJETO */
.projeto-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.projeto {
    position: relative;
    /* width: 100%; */
    max-width: 350px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    /* Importante para esconder o resto do print */
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.projeto-container a {
    text-decoration: none;
    color: white;
}

/* CONTAINER DA IMAGEM */
.projeto-banner {
    width: 100%;
    height: 100%;
    /* cursor: pointer; */
    overflow: hidden;
}

.projeto-banner img {
    width: 100%;
    height: auto;
    /* Deixa a imagem com o tamanho real do print */
    display: block;
    transition: transform 10s ease-in-out;
    /* Tempo da "rolagem" - 3 segundos */
    transform: translateY(0);
    /* Começa no topo */
}

/* --- MÁGICA DO HOVER --- */

/* Quando passa o mouse, a imagem sobe até o final dela */
.projeto:hover .projeto-banner img {
    /* Calcula a subida: 100% da altura da imagem MENOS os 450px do card */
    transform: translateY(calc(-100% + 450px));
}

/* Ajuste na Info para não tampar tudo */
.projeto-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, #0f172a 90%, transparent);
    z-index: 2;
    pointer-events: none;
    /* Garante que o mouse chegue na imagem */
}

.projeto-info h2 {
    font-size: 1.5rem;
}

.detalhes-ocultos p {
    font-size: 0.80rem;
}

/* PROJETOS */

/* FIM PORTFÓLIO */

/* DEPOIMENTOS */


/* .depoimentos {
    padding: 60px 20px;
    text-align: center;
    background-color: #0B111C;
}
 */


.depoimento-clientes {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.depoimento-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.depoimento-info img {
    width: 100px;
    height: auto;
}

.depoimento-info h2 {
    position: relative;
    top: 40px;
    font-size: 1.2rem;
    color: var(--text-white);
}

.depoimento {
    background-color: #01080e;
    text-align: center;
    padding: 30px 0;
}

.depoimento a {
    /* margin: 0 auto; */
}

/* FIM DEPOIMENTOS */

/* VALORES */
/* CONTAINER GERAL */
.valores {
    background-color: #020617;
    padding: 100px 20px;
    text-align: center;
}

.valores-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* Permite que os 5 cards se organizem conforme a tela */
    gap: 25px;
    margin-top: 50px;
}

/* O CARD INDIVIDUAL */
.valores-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px 30px;
    width: 320px;
    /* Largura ideal para caberem vários em linha */
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

/* HOVER GERAL */
.valores-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
}

/* ESTILO DESTAQUE (CARD CENTRAL) */
.valores-item.destaque {
    border: 2px solid #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    transform: scale(1.05);
    /* Um pouco maior que os outros */
}

.tag-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* TIPOGRAFIA */
.valores-item h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.sub-titulo {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 25px;
    min-height: 40px;
    /* Mantém o alinhamento mesmo com textos diferentes */
}

/* PREÇOS */
.preco-box {
    margin-bottom: 30px;
    color: #fff;
}

.valor {
    font-size: 2.8rem;
    font-weight: 800;
}

.moeda,
.periodo {
    font-size: 1rem;
    color: #ffffff;
}


.recorrencia {
    background-color: var(--primary-blue);
    padding: 15px;
    border-radius: 10px;
    color: #ffffff;
    /* Substitua pelo código da cor que desejar */
    font-weight: bold;
    /* Opcional: para dar mais destaque */
}

.recorrencia span {
    color: var(--text-white);
    font-size: 0.90rem;
}

/* LISTA DE RECURSOS */
.valores-item ul {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
    /* Garante que o botão fique sempre no rodapé */
}

.valores-item ul li {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon::before {
    content: 'L';
    /* Ícone de check simples estilizado */
    transform: rotate(45deg) scaleX(-1);
    display: inline-block;
    color: #10b981;
    font-weight: bold;
}

/* Estilos base mantidos, com adição da classe de recorrência */

.recorrencia {
    display: block;
    color: #10b981;
    /* Verde para destacar o valor mensal */
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 5px;
}

.valores-item.destaque .recorrencia {
    color: #60a5fa;
    /* Azul claro para o card de destaque */
}

/* Ajuste para 4 cards no Desktop */
.valores-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1300px;
    margin: 50px auto 0;
    gap: 20px;
    padding: 0 20px;
}

/* BOTÕES */
.btn-plano {
    text-decoration: none;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.btn-plano.btn-destaque {
    background: #3b82f6;
    border: none;
}

.btn-plano:hover {
    background: #fff;
    color: #020617;
}

.btn-plano.btn-destaque:hover {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* FIM VALORES */


/* FAQ */
.faq {
    background-color: #020617;
    padding: 80px 20px;
    color: #fff;
}

.faq-container {
    text-align: center;
}

.faq-grid {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Estilo do Acordeão */
details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    /* Remove a setinha padrão */
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Adicionando uma setinha customizada */
summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #3b82f6;
    transition: 0.3s;
}

details[open] summary::after {
    transform: rotate(45deg);
    color: #ef4444;
}

details p {
    padding: 0 20px 20px;
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Efeito de Hover */
details:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #3b82f6;
}
/* FIM FAQ */



/* RODAPÉ */
.footer {
    background-color: #0b111c;
    color: #cbd5e1;
    padding: 60px 0 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* FLEX CORRETO */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* CONTROLE REAL DAS COLUNAS */
.footer-col {
    flex: 1 1 220px;
    max-width: 25%;
}

/* PRIMEIRA COLUNA (TEXTO MAIOR) */
.footer-col:first-child {
    flex: 1.5 1 300px;
    max-width: 30%;
}

/* MAPA (MAIOR) */
.footer-col:last-child {
    flex: 1.5 1 300px;
    max-width: 30%;
}

/* LOGO */
.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* TITULOS */
.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* TEXTO */
.footer-col p {
    line-height: 1.6;
    margin-bottom: 10px;
}

/* MENU */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

/* LINKS */
.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #3b82f6;
}

/* MAPA */
.footer-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
    background-color: #0b111c;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container-modelo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
}

/* =========================
   RESPONSIVO
========================= */

/* Tablet */
@media (max-width: 1024px) {
    .footer-col {
        max-width: 45%;
        flex: 1 1 45%;
    }

    .footer-col:first-child,
    .footer-col:last-child {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-col {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .footer-bottom .container-modelo {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
/* FIM RODAPÉ */

/* WHATSAPP */
/* Container Principal */
.whatsapp-fixo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Container da Logo */
.zap-container {
    width: 100%;
    height: 100%;
    background-color: #010b0b;
    /* Cor do seu rodapé para contraste */
    border: 2px solid var(--primary-blue);
    /* Verde do zap na borda */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.zap-container img {
    width: 75%;
    /* Ajuste para sua logo não encostar na borda */
    height: auto;
    object-fit: contain;
}

/* Badge de Notificação (O pontinho verde que pulsa) */
.zap-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    /* background-color: #25d366; */
    border-radius: 50%;
    border: 2px solid #010b0b;
}

/* Efeito de Pulso para Conversão */
.whatsapp-fixo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--text-gray);
    animation: zap-pulse 2s infinite;
    z-index: -1;
}

@keyframes zap-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Hover */
.whatsapp-fixo:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Responsivo para não atrapalhar no celular */
@media (max-width: 768px) {
    .whatsapp-fixo {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* FIM WHATSAPP */



/* ==========================
            PÁGINAS
    ========================== */
.gradient-text-pagina {
    background: linear-gradient(90deg, #3b82f6, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: clamp(2.5rem, 8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.paginas {
    height: 400px;
    /* border-radius: 0 0 400px 0; */
}

.portfolio-projetos span {
    margin-top: 50px;
}


/* PÁGINA CRIAÇÃO E SITES */
.criacao-sites,
.seo-section-premium,
.vantagens-sites,
.vantagens-seo-premium,
.contratar-empresa,
.contratar-seo-premium,
.atrair-clientes,
.atrair-clientes-seo-premium {
    padding: 40px 20px;
}

.porque-criar-site,
.porque-seo-premium
.fale {
    background: rgba(255, 255, 255, 0.03);;
    padding: 40px 20px;
}

.fale {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #01080E;
    padding: 60px 0;
}

.fale .btn-plano {
    display: inline-block;
    width: 300px;
    margin: 0 auto;
}

.criacao-sites h2 {
    padding: 30px 0;
}

/* O segredo está em definir o display: flex no container pai */
.criacao-sites-sobre,
.vantagens-sites-container,
.vantagens-seo-container,
.contratar-empresa-container,
.atrair-clientes-container,
.atrair-clientes-seo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Agora as divs filhas vão dividir o espaço igualmente */
.criacao-sites-texto,
.criacao-sites-img,
.vantagens-sites-img,
.vantagens-seo-img,
.vantagens-sites-texto,
.vantagens-seo-texto,
.vantagens-sites-img,
.contratar-empresa-texto,
.contratar-empresa-img,
.atrair-clientes-img,
.atrair-clientes-seo-img,
.atrair-clientes-texto,
.atrair-clientes-seo-texto
 {
    flex: 1;
    min-width: 300px;
}

.criacao-sites-img img {
    /* max-width: 100%;
    height: auto !important;
    display: block; */
    max-width: 100%;
    height: auto !important; /* Isso impede que o 768 do HTML amasse a imagem */
    aspect-ratio: attr(width) / attr(height); /* Ajuda navegadores modernos a reservarem o espaço */
}

.criacao-sites-texto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.porque-criar-site-container,
.porque-seo-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin: 20px auto;
}

.porque-criar-site-container .btn-plano,
.porque-seo-container .btn-plano {
    width: 300px;
    margin: 0 auto;
}

.h2-pagina {
    text-align: center;
}
/* FIM PÁGINA CRIAÇÃO E SITES */


/* VANTAGENS */
/* .vantagens-sites-container {
    display: flex;
} */
/* FIM VANTAGENS */












































/* POLÍTICA DE PRIVACIDADE E TERMOS DE CONDIÇÕES */
/* =========================
   BASE PÁGINAS LEGAIS
========================= */
.pagina-legal {
    padding: 80px 20px;
    background: #020617;
    color: #e5e7eb;
}

.pagina-legal .container {
    max-width: 900px;
    margin: 0 auto;
}

/* =========================
   TIPOGRAFIA
========================= */
.pagina-legal h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #ffffff;
}

.pagina-legal h2 {
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #c084fc; /* roxo padrão */
}

.pagina-legal p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #d1d5db;
}

.pagina-legal ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.pagina-legal ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* =========================
   DESTAQUES
========================= */
.pagina-legal strong {
    color: #ffffff;
}

/* =========================
   LINKS
========================= */
.pagina-legal a {
    color: #c084fc;
    text-decoration: none;
}

.pagina-legal a:hover {
    text-decoration: underline;
}

/* =========================
   ESPAÇAMENTO ENTRE BLOCOS
========================= */
.pagina-legal h2 + p {
    margin-top: 5px;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {

    .pagina-legal {
        padding: 60px 15px;
    }

    .pagina-legal h1 {
        font-size: 1.8rem;
    }

    .pagina-legal h2 {
        font-size: 1.2rem;
    }

    .pagina-legal p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {

    .pagina-legal {
        padding: 50px 12px;
    }

    .pagina-legal h1 {
        font-size: 1.6rem;
    }

    .pagina-legal h2 {
        font-size: 1.1rem;
    }

    .pagina-legal p {
        font-size: 0.9rem;
    }
}
/* FIM POLÍTICA DE PRIVACIDADE E TERMOS DE CONDIÇÕES */

/* ==========================
            FIM PÁGINAS
    ========================== */