:root {
  --bg: #f5f9ff;
  --surface: #ffffff;
  --surface-alt: #eef5ff;
  --text: #0f172a;
  --muted: #5b6b7a;
  --primary: #0f4c81;
  --primary-dark: #0b355f;
  --accent: #18c37d;
  --accent-dark: #0f9d63;
  --accent-strong: #127b56;
  --border: rgba(15, 76, 129, 0.12);
  --shadow: 0 20px 45px rgba(15, 76, 129, 0.12);
  --radius: 1.25rem;
  --radius-sm: 0.9rem;
  --font: "Inter", sans-serif;
  --container: min(1120px, calc(100% - 2rem));
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-nav a,
.site-footer a {
  transition: color 0.3s ease, transform 0.3s ease, text-decoration-color 0.3s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--primary);
  transform: translateY(-1px);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.2rem;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* ==========================================
   HEADER CLEAN - ESTILOS BASE & DESKTOP
   ========================================== */
.site-header-clean {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-container-clean {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.logo-clean {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.logo-badge {
  background-color: #2563eb;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

/* ============================================================
   RESET COMPLETO DO MENU - APENAS O CLICADO FICA VERDE
   ============================================================ */

.nav-menu-clean {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* 1. Todos os links do menu iniciam idênticos e limpos */
header nav a,
.nav-menu a,
.nav-link {
  background: transparent !important;
  background-color: transparent !important;
  color: #475569 !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
}

/* 2. Hover suave ao passar o mouse */
header nav a:hover,
.nav-menu a:hover {
  color: #10b981 !important;
  background-color: #f1f5f9 !important;
}

/* 3. SOMENTE o link que tiver a classe .active fica VERDE */
header nav a.active,
.nav-menu a.active {
  background-color: #10b981 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* 4. Mantém apenas o botão da "Área do Cliente" com borda e destaque à direita */
header nav a[href*="cliente"],
.btn-cliente {
  border: 1px solid #cbd5e1 !important;
  background-color: #ffffff !important;
  color: #0f4c81 !important;
}

/* Botão Área do Cliente */
.nav-menu-clean .btn-cliente-clean {
  background-color: #f1f5f9;
  color: #1e293b;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid #cbd5e1;
}

.nav-menu-clean .btn-cliente-clean:hover {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* Botão Hambúrguer (Escondido em telas grandes) */
.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==========================================
   MENU MOBILE CLEAN (Telas até 768px)
   ========================================== */
@media (max-width: 768px) {
  .mobile-toggle-btn {
    display: flex;
  }

  .nav-menu-clean {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 16px 20px 24px 20px;
    gap: 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  /* Classe ativada via JavaScript */
  .nav-menu-clean.open {
    display: flex;
  }

  .nav-menu-clean a {
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
    font-size: 16px;
    color: #ffffff;
  }

  .nav-menu-clean .btn-cliente-clean {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-dark));
  color: white;
  box-shadow: 0 15px 30px rgba(18, 123, 86, 0.25);
  letter-spacing: 0.01em;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #0f6b49, #0a5b3b);
  box-shadow: 0 16px 34px rgba(18, 123, 86, 0.34);
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border: 1px solid var(--border);
}

.btn-outline {
  color: var(--primary);
  border: 1px solid rgba(15, 76, 129, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.1);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
}

.hero-text {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 650px;
}

.domain-search {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.domain-search input {
  flex: 1 1 220px;
  min-height: 40px;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  background: var(--surface);
  box-shadow: inset 0 1px 2px rgba(15, 76, 129, 0.05);
  line-height: 1.2;
}

.domain-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.2;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-actions .btn {
  width: 100%;
  border-radius: 12px;
}

.hero-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(145deg, var(--surface), var(--surface-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(15, 76, 129, 0.08), 0 8px 24px rgba(15, 76, 129, 0.05);
}

.stat-pill {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
}

.stat-pill strong {
  display: block;
}

.stat-pill p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.features-section,
.pricing-section,
.infrastructure-section {
  padding: 2rem 0 4rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.features-grid,
.pricing-grid {
  display: grid;
  gap: 1.2rem;
}

.feature-card,
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 76, 129, 0.16);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.9rem;
  background: rgba(24, 195, 125, 0.14);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.feature-card h3,
.pricing-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.feature-card p,
.pricing-description,
.pricing-card ul,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.billing-hint {
  text-align: center;
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.billing-text {
  font-weight: 600;
  color: var(--primary);
}

.toggle-switch {
  position: relative;
  width: 3.2rem;
  height: 1.8rem;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  cursor: pointer;
  padding: 0.2rem;
  transition: background 0.2s ease;
}

.toggle-switch.active {
  background: var(--accent);
}

.toggle-knob {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: white;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.toggle-switch.active .toggle-knob {
  transform: translateX(1.4rem);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  position: relative;
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(15, 76, 129, 0.2);
}

.badge {
  position: absolute;
  top: 1.05rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(18, 123, 86, 0.2);
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0.8rem 0 0.25rem;
}

.price-note {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.price-trimestral {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(24, 195, 125, 0.12);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.period {
  color: var(--muted);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.pricing-card li {
  padding: 0.4rem 0;
}

.infrastructure-card {
  background: linear-gradient(135deg, var(--surface), var(--surface-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.infrastructure-intro p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.infrastructure-grid {
  display: grid;
  gap: 1rem;
}

.infrastructure-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infrastructure-grid li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(15, 76, 129, 0.08);
  color: var(--text);
}

.infrastructure-grid li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.55rem;
}

.infrastructure-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 76, 129, 0.08);
  color: var(--primary);
  font-weight: 600;
}

.social-proof-section,
.faq-section {
  padding: 2rem 0 4rem;
}

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 0 0 1.3rem;
}

.partner-strip span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.social-proof-grid {
  display: grid;
  gap: 1.2rem;
}

.social-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.stats-card {
  display: grid;
  gap: 0.9rem;
}

.social-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 76, 129, 0.05);
}

.social-stat strong {
  font-size: 1.3rem;
  color: var(--primary);
}

.social-stat span {
  color: var(--muted);
}

.testimonial-card {
  display: grid;
  gap: 1rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--primary);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

/* Container do formulário */
.domain-search {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  margin: 20px auto;
}

.domain-search input {
  flex: none;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border, #cbd5e1);
  border-radius: 10px;
  outline: none;
  background: var(--surface, #ffffff);
  box-shadow: inset 0 1px 2px rgba(15, 76, 129, 0.05);
  font-size: 15px;
  box-sizing: border-box;
}

.domain-search button {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  background-color: #0f4c81;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .domain-search {
    flex-direction: row;
    align-items: center;
    background: #ffffff;
    padding: 4px;
    border: 1px solid var(--border, #cbd5e1);
    border-radius: 12px;
  }

  .domain-search input {
    border: none;
    height: 44px;
  }

  .domain-search button {
    width: auto;
    padding: 0 24px;
    height: 44px;
    border-radius: 8px;
  }
}

/* Esconde a barra verde horizontal que ocupa a largura total */
footer a[href*="whatsapp"],
.whatsapp-bar {
  display: none !important;
}

/* Deixa APENAS o ícone circular bonito e suspenso no canto inferior direito */
a[href*="wa.me"],
a[href*="whatsapp"].chat-float,
.whatsapp-icon-only,
.floating-whatsapp {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: fixed !important;
  bottom: 16px !important;
  right: 16px !important;
  width: 56px !important;
  height: 56px !important;
  background-color: #25d366 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
  z-index: 9999 !important;
  text-decoration: none !important;
}

/* ============================================================
   CORREÇÃO DE PADDING E FLUTUANTE MOBILE - HOST16
   ============================================================ */

@media (max-width: 768px) {
  /* 1. Dá respiro lateral para a página e cards */
  body, 
  section, 
  main {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  /* 2. Deixa o card de infraestrutura e recursos elegante e espaçoso */
  .infraestrutura-card,
  .features-card,
  [class*="card"] {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 24px 20px !important;
    margin: 16px 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #e2e8f0 !important;
  }

  /* 3. Posiciona o botão do WhatsApp fora da área útil de leitura */
  a[href*="wa.me"],
  a[href*="whatsapp"],
  [class*="chat"],
  [class*="whatsapp"] {
    position: fixed !important;
    bottom: 24px !important;
    right: 20px !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
    z-index: 99999 !important;
  }
}

/* ============================================================
   CORREÇÃO DEFINITIVA DESKTOP (Somente telas grandes >= 1024px)
   ============================================================ */

@media (min-width: 1024px) {
  /* 1. Container Principal com Respiro e Largura Máxima */
  .hero,
  main,
  section {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 60px 24px !important;
    box-sizing: border-box !important;
  }

  /* 2. Grid de 2 Colunas Bem Espaçadas (Texto Esquerda / Cards Direita) */
  .hero-container,
  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr 400px !important;
    gap: 48px !important;
    align-items: center !important;
  }

  /* 3. Título Visível sem Cortes */
  .hero h1,
  h1 {
    font-size: 44px !important;
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
    text-align: left !important;
  }

  /* 4. Campo de Busca de Domínio em Linha Única */
  .domain-search,
  .domain-search-box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    max-width: 480px !important;
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 12px !important;
    padding: 4px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
  }

  .domain-search input,
  .domain-input {
    flex: 1 !important;
    height: 46px !important;
    border: none !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    outline: none !important;
  }

  .domain-search button {
    width: auto !important;
    height: 46px !important;
    padding: 0 24px !important;
    border-radius: 8px !important;
    background-color: #0f4c81 !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
  }

  /* 5. Botões de Ação (Ver Planos e Área do Cliente Lado a Lado) */
  .hero-buttons,
  .cta-group,
  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    align-items: center !important;
  }

  .hero-actions .btn-primary,
  .hero-actions a[href*="planos"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    padding: 0 28px !important;
    background-color: #10b981 !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    width: auto !important;
  }

  .hero-actions .btn-secondary,
  .hero-actions a[href*="cliente"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    padding: 0 24px !important;
    background-color: #f1f5f9 !important;
    color: #0f4c81 !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    width: auto !important;
    white-space: nowrap !important;
  }

  /* 6. Coluna da Direita (Cards Flutuantes Alinhados) */
  .hero-features,
  .hero-cards-wrapper {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }
}

.footer-whatsapp {
  margin-top: 0.85rem;
  width: fit-content;
  padding: 0.8rem 1rem;
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-dark));
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 16px 30px rgba(18, 123, 86, 0.3);
  z-index: 1100;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
}

.client-page {
  background: linear-gradient(180deg, #edf5ff 0%, #f7fbff 100%);
}

.client-header {
  background: rgba(255, 255, 255, 0.95);
}

.client-main {
  padding-bottom: 3rem;
}

.client-hero {
  padding: 3rem 0 2rem;
}

.client-hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.client-login-card,
.client-card,
.support-box,
.infrastructure-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.client-login-card {
  padding: 1.5rem;
}

.login-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.login-header h2 {
  margin: 0;
}

.status-pill,
.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(24, 195, 125, 0.14);
  color: var(--accent-dark);
}

.card-badge.warning {
  background: rgba(255, 171, 0, 0.16);
  color: #a06a00;
}

.card-badge.success {
  background: rgba(24, 195, 125, 0.16);
  color: var(--accent-dark);
}

.client-login-card form {
  display: grid;
  gap: 0.9rem;
}

.client-login-card label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--text);
}

.client-login-card input {
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font: inherit;
}

.full-width {
  width: 100%;
}

.login-footnote {
  margin-top: 0.9rem;
  text-align: center;
  color: var(--muted);
}

.login-footnote a {
  color: var(--primary);
  font-weight: 700;
}

.client-section {
  padding: 1rem 0 2rem;
}

.alt-section {
  padding-top: 0.2rem;
}

.dashboard-grid {
  display: grid;
  gap: 1rem;
}

.client-card {
  padding: 1.2rem;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.client-card h3 {
  margin: 0;
}

.client-card p,
.client-card strong {
  margin: 0;
}

.panel-layout {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.panel-sidebar,
.panel-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.panel-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.panel-sidebar a {
  color: var(--primary);
  font-weight: 600;
}

.activity-item {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(15, 76, 129, 0.08);
}

.activity-item:last-child {
  border-bottom: 0;
}

.activity-item p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.client-features-grid {
  margin-top: 1rem;
}

.support-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem;
  align-items: flex-start;
}

.client-footer {
  padding-top: 2rem;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  margin-top: 1.5rem;
  background: linear-gradient(180deg, #f0f6ff 0%, #e8f1ff 100%);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.site-footer h3 {
  margin-bottom: 0.7rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 76, 129, 0.1);
  text-align: center;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 76, 129, 0.1);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 600;
}

@media (min-width: 720px) {
  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .social-proof-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .infrastructure-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .panel-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }

  .client-hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .support-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}



}

@media (max-width: 768px) {
  .mobile-toggle-btn {
    display: flex;
  }

  .nav-menu-clean {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0f172a;
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    border-bottom: 1px solid #1e293b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }

  .nav-menu-clean.active {
    display: flex;
  }

  .nav-menu-clean a {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
  }

  .btn-cliente-clean {
    margin: 16px 24px 0 24px;
    width: calc(100% - 48px);
    text-align: center;
  }

  .pricing-card.featured {
    transform: none;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
  }


}

/* ==========================================================================
   Estilização do Suporte / Atendimento no Rodapé
   ========================================================================== */

.footer-support {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-support h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.footer-support p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Botão de E-mail de Suporte */
.btn-support-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap:8px;
  padding:10px 20px;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2563eb;
  background-color: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 9999px; /* Borda arredondada / Pill style */
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  width: fit-content;
}

/* Efeito ao passar o mouse */
.btn-support-email:hover {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
}

/* Ícone dentro do botão */
.btn-support-email span {
  font-size: 1.1rem;
  line-height: 1;
}


/* ==========================================================================
   Botão Voltar ao Topo
   ========================================================================== */
/* Botão Voltar ao Topo */
.back-to-top {
  position: fixed;
  bottom: 90px; /* Posicionado acima do ícone do WhatsApp */
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}

/* Exibe o botão quando a classe 'show' for ativada */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #1d4ed8;
  transform: translateY(-3px);
}


/* ==========================================================================
   Formulário de Busca de Domínio
   ========================================================================== */

.domain-search-form {
  max-width: 580px;
  width: 100%;
  margin: 1.5rem 0;
}

.domain-input-wrapper {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  padding: 6px 8px 6px 18px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Efeito ao focar no campo */
.domain-input-wrapper:focus-within {
  border-color: #2563eb;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.2);
}

.domain-icon {
  font-size: 1.1rem;
  margin-right: 10px;
  opacity: 0.6;
}

.domain-input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #0f172a;
  background: transparent;
}

.domain-input-wrapper input::placeholder {
  color: #94a3b8;
}

.btn-domain-search {
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  padding: 12px 26px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-domain-search:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Adaptabilidade para Dispositivos Móveis */
@media (max-width: 576px) {
  .domain-input-wrapper {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
    gap: 10px;
  }

  .domain-icon {
    display: none;
  }

  .domain-input-wrapper input {
    width: 100%;
    text-align: center;
  }

  .btn-domain-search {
    width: 100%;
    border-radius: 12px;
  }
}


/* Força a cor branca em todos os links e textos do menu mobile */
.nav-links a,
.mobile-menu a,
nav ul li a {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Garante que continuem brancos ao passar o mouse ou focar */
.nav-links a:hover,
.mobile-menu a:hover,
.nav-links a:focus {
  color: #ffffff !important;
}

/* Força o fundo ser branco ou claro, independente do modo escuro */
.menu-mobile,
nav,
.nav-menu {
  background-color: #ffffff !important;
  color-scheme: light !important; /* Força o navegador a entender que o elemento é do tema claro */
}

/* Cor dos links em fundo claro */
.menu-mobile a,
nav a {
  color: #1e293b !important;
}

.logo-clean img,
.footer-logo img {
  height: 64px !important;
  width: auto !important;
  max-height: 64px;
  object-fit: contain;
}
.logo-clean {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .logo-clean img,
  .footer-logo img {
    height: 48px;
  }
}