/* ============================================================
   RESET E BASE
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

/* ============================================================
   HEADER (VERSÃO INTERMEDIÁRIA — ESCOLHIDA)
============================================================ */
.menu-topo {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 999;
}

.menu-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.menu-desktop nav {
    display: flex;
    gap: 25px;
}

.menu-desktop nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.menu-desktop nav a:hover {
    color: #4f46e5;
}

.menu-mobile-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #4f46e5;
}

/* ============================================================
   MOBILE HEADER
============================================================ */
@media (max-width: 768px) {

    .logo img {
        max-width: 120px;
    }

    .menu-desktop nav {
        display: none;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 20px 0;
        border-top: 1px solid #eee;
        text-align: center;
        gap: 18px;
    }

    .menu-desktop.active nav {
        display: flex;
    }

    .menu-desktop nav a {
        font-size: 18px;
        margin: 12px 0;
    }

    .menu-mobile-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .menu-mobile-btn .menu-icon {
        width: 28px;
        height: 28px;
        display: block;
    }

    .menu-mobile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
    }
}

/* ============================================================
   BANNER 3D TECH AZUL — HOSTGS
============================================================ */
.banner-animado {
    position: relative;
    background: linear-gradient(135deg, #0a0f2d, #1b2a6b);
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    width: 100%;
    height: 650px;
}

.banner-animado .conteudo {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-80px);
}

.titulo-animado {
    font-size: 46px;
    font-weight: 700;
    animation: slideIn 1.2s ease forwards;
}

.sub-animado {
    font-size: 22px;
    margin-top: 10px;
    opacity: 0;
    animation: slideIn 1.6s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .banner-animado .conteudo {
        transform: translateY(-80px);
    }
}

.ia-brilhante {
    color: #00eaff;
    font-weight: 900;
    animation: brilhoIA 1.8s infinite ease-in-out;
}

@keyframes brilhoIA {
    0% { text-shadow: 0 0 6px #00eaff; }
    50% { text-shadow: 0 0 18px #00eaff; }
    100% { text-shadow: 0 0 6px #00eaff; }
}

/* ============================================================
   PERSONAGENS DO BANNER
============================================================ */
.ia-personagem {
    position: absolute;
    left: 20px;
    bottom: 0;
    width: 300px;
    z-index: 5;
    filter: drop-shadow(0px 8px 12px rgba(0,0,0,0.35));
}

.usuario-esquerda {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 260px;
    z-index: 5;
    pointer-events: none;
}

@media (max-width: 600px) {
    .ia-personagem {
        width: 150px;
        left: 10px;
    }
    .usuario-esquerda {
        display: none;
    }
}

/* ============================================================
   MINI-SITE PULANDO
============================================================ */
.site-pulando {
    position: absolute;
    left: 290px;
    bottom: 200px;
    width: 100px;
    animation: pular 1.8s ease-in-out infinite;
}

@keyframes pular {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-25px); }
}

@media (max-width: 600px) {
    .site-pulando {
        display: none !important;
    }
}

/* ============================================================
   CTA DO BANNER
============================================================ */
.cta-area {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.btn-cta-ai {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    background: #22c55e;
    color: #0a0f2d;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.7);
    animation: pulse-cta 1.4s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-ai:hover {
    transform: scale(1.07);
    box-shadow: 0 0 26px rgba(34, 197, 94, 1);
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1); box-shadow: 0 0 18px rgba(34, 197, 94, 0.7); }
    50% { transform: scale(1.08); box-shadow: 0 0 32px rgba(34, 197, 94, 1); }
}

@media (max-width: 600px) {
    .btn-cta-ai {
        padding: 8px 16px;
        font-size: 12px;
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
        animation: pulse-cta-mobile 1.4s ease-in-out infinite;
    }
}

@keyframes pulse-cta-mobile {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(34, 197, 94, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 0 18px rgba(34, 197, 94, 0.9); }
}
/* ============================================================
   SEÇÃO SITEJET
============================================================ */
.destaque-sitejet {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    padding: 70px 0;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.destaque-sitejet h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.sub-sitejet {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.lista-sitejet {
    list-style: none;
    max-width: 600px;
    margin: auto;
    text-align: left;
}

.lista-sitejet li {
    font-size: 17px;
    margin: 12px 0;
    display: flex;
    align-items: center;
}

.lista-sitejet li i {
    margin-right: 10px;
    font-size: 20px;
    color: #fff;
}

.destaque-sitejet .btn-principal {
    background: #fff;
    color: #4f46e5;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin-top: 25px;
    transition: 0.3s;
}

.destaque-sitejet .btn-principal:hover {
    background: #e0e0ff;
}

/* ============================================================
   SEÇÃO IA
============================================================ */
.destaque-ia {
    background: #fff;
    padding: 70px 0;
    text-align: center;
}

.destaque-ia h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #4f46e5;
}

.sub-ia {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.lista-ia {
    list-style: none;
    max-width: 600px;
    margin: auto;
    text-align: left;
}

.lista-ia li {
    font-size: 17px;
    margin: 12px 0;
    display: flex;
    align-items: center;
}

.lista-ia li i {
    margin-right: 10px;
    color: #4f46e5;
    font-size: 20px;
}

.btn-principal {
    display: inline-block;
    margin-top: 25px;
    background: #4f46e5;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-principal:hover {
    background: #3d3acb;
}

/* ============================================================
   PLANOS MODERNOS
============================================================ */
.planos-modern {
    padding: 70px 0;
    text-align: center;
}

.planos-modern h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.planos-modern .sub {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.grid-planos-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.plano-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.plano-card:hover {
    transform: translateY(-5px);
}

.plano-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.plano-card .preco {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4f46e5;
}

.plano-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.plano-card ul li {
    margin: 8px 0;
    font-size: 16px;
}

.btn-plano {
    display: block;
    background: #4f46e5;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-plano:hover {
    background: #3d3acb;
}

.destaque {
    border: 2px solid #4f46e5;
    position: relative;
}

.selo-popular {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #4f46e5;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

/* ============================================================
   DIFERENCIAIS
============================================================ */
.diferenciais {
    background: #fff;
    padding: 70px 0;
}

.grid-diferenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.dif-item i {
    font-size: 40px;
    color: #4f46e5;
    margin-bottom: 10px;
}

.dif-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

/* ============================================================
   SEÇÃO TÉCNICA
============================================================ */
.tecnica {
    background: #f0f0ff;
    padding: 70px 0;
    text-align: center;
}

.lista-tecnica {
    list-style: none;
    max-width: 600px;
    margin: auto;
}

.lista-tecnica li {
    font-size: 18px;
    margin: 12px 0;
}

.lista-tecnica li i {
    margin-right: 10px;
    color: #4f46e5;
}

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final {
    background: #4f46e5;
    color: #fff;
    text-align: center;
    padding: 70px 0;
}

.cta-final h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-final .btn-principal {
    background: #fff;
    color: #4f46e5;
}

.cta-final .btn-principal:hover {
    background: #e0e0ff;
}
/* ============================================================
   RECURSOS AVANÇADOS
============================================================ */
.recursos-avancados {
    background: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.recursos-avancados h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #4f46e5;
}

.recursos-avancados .sub {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.grid-recursos-avancados {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.recurso-item {
    background: #f8f8ff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.recurso-item:hover {
    transform: translateY(-5px);
}

.recurso-item i {
    font-size: 40px;
    color: #4f46e5;
    margin-bottom: 10px;
}

.recurso-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.recurso-item p {
    font-size: 15px;
    color: #555;
}

/* ============================================================
   RODAPÉ
============================================================ */
.footer {
    background: #111;
    color: #ddd;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 15px;
    margin: 6px 0;
    color: #ccc;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 10px;
}

.footer-ssl {
    max-width: 140px;
    margin: 10px 0;
}

.pagamentos span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    font-size: 15px;
}

.pagamentos i {
    font-size: 20px;
    color: #4f46e5;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #4f46e5;
}

.footer-links i {
    margin-right: 6px;
    color: #4f46e5;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.footer-link:hover {
    color: #00c8ff;
}

.footer-copy {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #aaa;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    .pagamentos span {
        justify-content: center;
    }
    .footer-logo,
    .footer-ssl {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================================
   WHATSAPP FLUTUANTE
============================================================ */
.whatsapp-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.whatsapp-float {
    width: 65px;
    height: 65px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    animation: pulse 1.4s infinite ease-in-out;
    transition: 0.3s;
    text-decoration: none !important;
    position: relative;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background-color: #1ebe5d;
}

.whatsapp-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff0000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    animation: badgePulse 1.5s infinite ease-in-out;
}

.whatsapp-msg {
    position: absolute;
    right: 80px;
    bottom: 15px;
    background: #ffffff;
    color: #333;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: fadeIn 0.8s ease forwards, msgPulse 2s infinite ease-in-out;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid #eee;
}

.whatsapp-msg:hover {
    background: #f3f3f3;
}

/* ============================================================
   ANIMAÇÕES WHATSAPP
============================================================ */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes msgPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}




/* ============================================================
   BARRA DE VELOCIDADE — DESIGN PREMIUM E ELEGANTE
============================================================ */
/* ============================= */
/*  BOX PRINCIPAL */
/* ============================= */
.warp-banner{
  position:relative;
  width:100%;
  background:#000;
  overflow:hidden;
  padding:40px 0;
}

/* ============================= */
/*  FUNDO ESTRELAS LOOP INFINITO */
/* ============================= */
.warp-stars{
  position:absolute;
  inset:0;

  background:url("/img/estrelas-warp-bw.webp") repeat-x;
  background-size:auto 100%;

  animation: warpMove 0.2s linear infinite;
  opacity:1;
  z-index:0;
}

/* ============================= */
/*  OVERLAY ESCURO */
/* ============================= */
.warp-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.60); /* ajuste 0.50 – 0.75 */
  z-index:1;
}

/* ============================= */
/*  TEXTO */
/* ============================= */
.warp-text{
  position:relative;
  z-index:2;

  text-align:center;

  font-family:'Orbitron', sans-serif;
  font-weight:700;
  letter-spacing:4px;
  font-size:20px;

  color:#ffffff;


  animation: shake 0.12s linear infinite;
}
/* ============================= */
/*  MOVIMENTO HORIZONTAL */
/*  IMPORTANTE: AJUSTAR -1200px  */
/*  PARA A LARGURA REAL DA IMG  */
/* ============================= */
@keyframes warpMove{
  from { background-position: 0 0; }
  to   { background-position: -1200px 0; }
}

/* ============================= */
/*  TREMEDEIRA SUAVE */
/* ============================= */
@keyframes shake{
  0%   { transform: translate(0,0); }
  25%  { transform: translate(1px,-1px); }
  50%  { transform: translate(-1px,1px); }
  75%  { transform: translate(1px,0); }
  100% { transform: translate(0,0); }
}

/* ============================= */
/*  RESPONSIVO */
/* ============================= */
@media (max-width:768px){
  .warp-text{
    font-size:26px;
  }

  .warp-banner{
    padding:20px 0;
  }
}
.warp-banner{
  position:relative;
  width:100%;
  background:#000;
  overflow:hidden;
  padding:40px 0;

  border:3px solid #ffd400; /* amarelo vibrante */
  box-shadow:0 0 12px #ffd400; /* brilho opcional */
}
/* ================================ */
/* FUNDO ESCURECIDO DO POPUP        */
/* ================================ */
.popup-exit{
    position: fixed;          /* Fica fixo na tela */
    inset: 0;                 /* Ocupa a tela inteira */
    background: rgba(0,0,0,0.65); /* Fundo escuro */
    
    display: flex;            /* Centraliza o conteúdo */
    justify-content: center;
    align-items: center;

    z-index: 9999;            /* Fica acima de tudo */

    opacity: 0;               /* Começa invisível */
    pointer-events: none;     /* Não clica enquanto invisível */
    transition: opacity .3s ease; /* Fade suave */
}

/* ================================ */
/* QUANDO O POPUP ESTÁ ATIVO        */
/* ================================ */
.popup-exit.ativo{
    opacity: 1;               /* Fica visível */
    pointer-events: auto;     /* Agora pode clicar */
}

/* ================================ */
/* CAIXA BRANCA DO POPUP            */
/* ================================ */
.popup-content{
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 420px;
    position: relative;
    text-align: center;
}

/* ================================ */
/* BOTÃO DE FECHAR (X)              */
/* ================================ */
.popup-close{
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}
.popup-exit{
    opacity:0;
    pointer-events:none;
    transition: .3s ease;
}

.popup-exit.ativo{
    opacity:1;
    pointer-events:auto;
    display:flex; /* se quiser garantir */
}