/* =======================
   CONFIGURAÇÕES GERAIS
======================= */
 :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --bg: #0f172a;
      --card-bg: #0b1220;
      --text: #e5e7eb;
      --muted: #9ca3af;
      --accent: #22c55e;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    body {
      background: radial-gradient(circle at top, #1e293b 0, #020617 60%);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 16px;
    }
    
    
    /*  modificado teste */

/* =========================
   HEADER LIMPO E CORRETO
========================= */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* header ocupa tela toda */
header .container {
  max-width: none;
  width: 100%;
  padding-left: 96px;  /* margem esquerda */
  padding-right: 96px; /* margem direita */
}

/* nav controla alinhamento */
header .nav {
  display: flex;
  align-items: center;
  height: 72px;
}

/* LOGO ESQUERDA */
header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ESPAÇADOR FLEXÍVEL */
header .header-slogan {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
}

/* BOTÕES DIREITA */
header .nav-cta {
  display: flex;
  gap: 12px;
}



    /* fim modificado teste */ 
    
/* ORIGINAL
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: linear-gradient(to bottom, rgba(15,23,42,0.95), rgba(15,23,42,0.85));
      border-bottom: 1px solid rgba(148,163,184,0.2);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: radial-gradient(circle at top, #38bdf8, #2563eb);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 800;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      font-size: 14px;
    }

    .nav-links a {
      color: var(--muted);
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--text);
      transform: translateY(-1px);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }
*/
    .btn {
      padding: 10px 18px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      box-shadow: 0 10px 30px rgba(37,99,235,0.35);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 35px rgba(37,99,235,0.5);
    }

    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(148,163,184,0.5);
      color: var(--muted);
    }

    .btn-ghost:hover {
      border-color: rgba(148,163,184,0.9);
      color: var(--text);
      transform: translateY(-1px);
    }

    main {
      padding-bottom: 60px;
    }

    /* Hero */
    .hero {
      padding: 60px 0 40px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
    }
/*
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 16px;
      background: rgba(15,23,42,0.6);
    }

    .hero-badge span {
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(34,197,94,0.15);
      color: #4ade80;
      font-weight: 600;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
*/

/* gpt hero  azul */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;

  /* fundo azul bem claro */
  background: linear-gradient(
    180deg,
    rgba(219, 234, 254, 0.95),
    rgba(239, 246, 255, 0.95)
  );

  /* borda azul suave */
  border: 1px solid rgba(147, 197, 253, 0.8);

  font-size: 12px;
  font-weight: 500;

  /* texto mais escuro */
  color: #1e3a8a;

  margin-bottom: 16px;
}

/* selo "NOVO" */
.hero-badge span {
  padding: 4px 10px;
  border-radius: 999px;

  /* verde clean, não chamativo demais */
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;

  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* hero fim azul */ 
    .hero-title {
      font-size: clamp(30px, 4vw, 40px);
      font-weight: 800;
      margin-bottom: 16px;
    }

    .hero-title span {
      background: linear-gradient(135deg, #38bdf8, #22c55e);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 15px;
      color: var(--muted);
      max-width: 480px;
      margin-bottom: 24px;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .hero-note {
      font-size: 12px;
      color: var(--muted);
    }

    .hero-note strong {
      color: #e5e7eb;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 22px;
      font-size: 13px;
      color: var(--muted);
    }

    .hero-metrics span strong {
      display: block;
      font-size: 18px;
      color: var(--text);
    }

    /* Hero mock */
    .hero-card {
      border-radius: 24px;
      padding: 20px 18px;
      background: radial-gradient(circle at top left, rgba(56,189,248,0.25), transparent 60%),
                  radial-gradient(circle at bottom right, rgba(34,197,94,0.2), transparent 55%),
                  var(--card-bg);
      border: 1px solid rgba(148,163,184,0.35);
      box-shadow: 0 18px 45px rgba(15,23,42,0.75);
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
      font-size: 12px;
      color: var(--muted);
    }

    .hero-card-pill {
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(15,23,42,0.7);
      border: 1px solid rgba(148,163,184,0.35);
      font-size: 11px;
    }

    .hero-card-main {
      padding: 12px;
      border-radius: 18px;
      background: rgba(15,23,42,0.85);
      border: 1px solid rgba(148,163,184,0.3);
    }

    .hero-card-main h3 {
      font-size: 14px;
      margin-bottom: 6px;
    }

    .hero-card-main p {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 10px;
    }
/* original
    .hero-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }

    .tag {
      font-size: 10px;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(37,99,235,0.15);
      border: 1px solid rgba(96,165,250,0.5);
    }
*/


.hero-card-tags {
  display: flex;
  justify-content: space-between; /* distribui as 3 tags na largura do card */
  gap: 12px;                      /* espaço entre elas */
  margin-bottom: 16px;
  flex-wrap: nowrap;              /* impede de quebrar pra linha de baixo */
}

.tag {
  flex: 1;                        /* cada tag ocupa a mesma largura */
  text-align: center;             /* texto centralizado dentro da pílula */
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(96,165,250,0.5);
  white-space: nowrap;            /* tenta manter o texto numa linha só */
}
    .hero-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: var(--muted);
      margin-top: 4px;
    }

    .hero-card-footer strong {
      color: #4ade80;
    }

    /* Features */
    .section {
      padding: 40px 0 20px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 26px;
    }

    .section-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .section-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .section-subtitle {
      font-size: 14px;
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 22px;
    }

    .feature-card {
      padding: 18px;
      border-radius: 16px;
      background: rgba(15,23,42,0.85);
      border: 1px solid rgba(148,163,184,0.25);
      font-size: 13px;
    }

    .feature-icon {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      font-size: 16px;
      background: rgba(37,99,235,0.2);
    }

    .feature-title {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .feature-text {
      color: var(--muted);
      font-size: 13px;
    }

    /* Steps */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
      margin-top: 20px;
      font-size: 13px;
    }

    .step-card {
      padding: 16px;
      border-radius: 14px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(148,163,184,0.2);
    }

    .step-number {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .step-title {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .step-text {
      color: var(--muted);
    }

    /* FAQ */
    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 24px;
      margin-top: 24px;
      font-size: 13px;
    }

    .faq-item {
      padding: 14px 0;
      border-bottom: 1px solid rgba(148,163,184,0.25);
    }

    .faq-item h3 {
      font-size: 14px;
      margin-bottom: 4px;
    }

    .faq-item p {
      color: var(--muted);
    }

    .contact-card {
      padding: 18px;
      border-radius: 16px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(148,163,184,0.3);
    }

    .contact-card p {
      color: var(--muted);
      margin-bottom: 10px;
    }

    .contact-item {
      font-size: 13px;
      margin-bottom: 4px;
    }

    .contact-label {
      color: var(--muted);
      font-size: 12px;
    }

    /* Footer */
    footer {
      border-top: 1px solid rgba(148,163,184,0.3);
      padding: 16px 0 22px;
      font-size: 12px;
      color: var(--muted);
      margin-top: 20px;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .badge-store {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.3);
      font-size: 11px;
      margin-top: 6px;
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(34,197,94,0.25);
    }


/* ===== HEADER RESPONSIVO ===== */
@media (max-width: 768px) {
  .header-slogan {
    display: none;
  }
}
    /* Responsivo */
    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-card {
        order: -1;
      }
      .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .faq-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 640px) {
      .nav-links {
        display: none;
      }
      .hero {
        padding-top: 40px;
      }
      .features-grid,
      .steps-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-title {
        font-size: 26px;
      }
    }
    
    /* FORMULARIO */
    
    .contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(15,23,42,0.8);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.35);
}

.contact-form button {
  margin-top: 8px;
  align-self: flex-start;
}

/* modal light box */ 
/* ========== MODAL / LIGHTBOX ========== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 380px;
  padding: 22px 20px;
  border-radius: 18px;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.9);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.modal-header h3 {
  font-size: 16px;
}

.modal-close {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal-text {
  font-size: 14px;
  color: var(--muted);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.modal-btn {
  justify-content: center;
  width: 100%;
}

.modal-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

/* BOTÕES DO MODAL (começam cinza) */
.modal-btn {
  display: flex;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  width: 100%;
  background: rgba(30, 41, 59, 0.6); /* cinza escuro */
  border: 1px solid rgba(148,163,184,0.35);
  color: var(--text);
}

/* HOVER → fica azul */
.modal-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-color: transparent;
}

/* Remover interferência do btn-primary ou btn-ghost */
.modal-card .btn,
.modal-card .btn-primary,
.modal-card .btn-ghost {
  all: unset;
}

/* icones botão*/
/* Ícones dos botões */
.modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* espaço entre ícone e texto */
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  text-decoration: none;
  width: 100%;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148,163,184,0.35);
  color: var(--text);
}

.modal-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-color: transparent;
  transform: translateY(-1px);
}

/* Ícones brancos */
.modal-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);  /* deixa branco */
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.modal-btn:hover .modal-icon {
Êxito!
  opacity: 1;
}

/* Evita interferência dos botões gerais */
.modal-card .btn,
.modal-card .btn-primary,
.modal-card .btn-ghost {
  all: unset;
}


/* fim modal light box */     
    /* FIM FORMAULARIO */
    
    
    /* ===== FIX HEADER CTA ===== */
header .nav {
  width: 100%;
}

header .nav-cta {
  margin-left: auto;
  justify-self: end;
}


/* gpt HERO TESTE maluco blocos horizontais layout*/

.full-slide-vertical {
  width: 100vw;
  display: grid;
  grid-template-rows: auto auto auto;
}

/* BASE */
.slide-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* BANNER */
/**.slide-banner {
  min-height: 120vh;              /** altura do bloco /
  width: 100%;
  background-image: url("../img/home.png"); /* SUA IMAGEM /
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
   /** border: 3px solid red; /* DEBUG /
}*/

.slide-banner {
  height: clamp(620px, 45vh, 300px);
  background-image: url("../img/home.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


.slide-banner img {
  max-height: 100%;
  max-width: 90%;
}

/* CONTEÚDO */
.slide-content {
  background: #f8fbff;
  flex-direction: column;
  text-align: center;
}

.slide-content h1 span {
  color: #2563eb;
}

.slide-content p {
  max-width: 640px;
  color: #475569;
}

/* FORM */
.slide-form {
  background: #ffffff;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.06);
}

.contact-form {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


/* gpt maluco */

/* botão */ 
/* BOTÕES DO HEADER */
.nav-cta .btn {
  font-size: 20px;        /* aumenta a letra */
  padding: 12px 20px;    /* aumenta o botão */
  border-radius: 999px;  /* pill style */
  min-height: 44px;      /* acessibilidade */
  font-weight: 600;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 960px;
  width: calc(100% - 32px);
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  font-size: 14px;
}

.cookie-banner p {
  margin: 0;
  color: #334155;
}

.cookie-banner a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}



