:root {
  --primary: #2563eb;
  --primary-light: #60a5fa;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --bg-main: #e8eef8;        /* antes #f9fbfd — agora mais visível */
  --bg-alt: #dde6f3;         /* contraste levemente mais forte */
  --border: #d0d8e8;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(0,0,0,0.06);
}

/* === MOBILE SAFE VIEWPORT FIX === */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}


/* impede travamento do scroll causado por sticky + overflow */
main, .content {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* === BASE === */
body {
  color: var(--text-dark);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* === LINKS === */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
a:hover {
  color: var(--primary-light);
  transform: translateY(-1px);
}

/* === LISTAS === */
ul { list-style: none; margin: 0; padding: 0; }
ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .45rem;
  color: var(--text-light);
}
ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: bold;
  font-size: 1.1rem;
}

/* === HERO CLEAN UNIFICADO === */
.hero--clean {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-main) 100%);
  padding: 3rem 1rem 4rem; /* 🔹 antes era 6rem no desktop — agora uniforme */
  text-align: center;
}

.hero__inner {
  display: flex;
  flex-direction: column; /* 🔹 sempre empilhado, mesmo no desktop */
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.hero__title {
  font-size: 2rem;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero__title .highlight {
  background: var(--primary-light);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 1.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.hero__badges li {
  background: #f1f5f9;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.hero__illustration {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero__image {
  width: 90%;
  max-width: 380px;
}

/* === SECTIONS === */
.section {
  padding: 3rem 0;
}
.section:nth-of-type(even) {
  background: var(--bg-alt);
}
.section-heading {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: .5rem;
}
.section-sub {
  color: var(--text-light);
  margin-bottom: 2rem;
}

#suporte{
  padding-bottom: 0;
}

/* ===== Carrossel Wrapper ===== */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
}

.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  scrollbar-width: none; /* Firefox */
}

.carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* ===== Plan Cards ===== */
.plan-card {
  flex: 0 0 85%;
  max-width: 30%;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
}

.plan-card h3 {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.plan-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.plan-price span {
  font-size: 0.9rem;
  color: #555;
}

.plan-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.plan-card ul li {
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.95rem;
}

/* ===== Botão Contratar ===== */
.btn-plan {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: #2563eb; /* Azul destaque */
  text-decoration: none;
}

.btn-plan:hover {
  background: #1e40af;
}

/* ===== Destaques ===== */
.plan--highlight {
  border: 2px solid #2563eb;
}

.plan-badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: #2563eb;
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.plan-top-tag {
  font-size: 0.75rem;
  background: #e2e8f0;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #475569;
}

/* === CONTEXTO DE EMPILHAMENTO DO CARROSSEL === */
.carousel-wrapper {
  position: relative;
  z-index: 5; /* Garante que as setas e o carrossel fiquem acima do fundo */
}

.carousel {
  position: relative;
  z-index: 4;
}

.plan-card {
  position: relative;
  z-index: 3;
}

/* === SETAS VISÍVEIS SOBRE OS CARDS === */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2563eb;
  color: #fff;
  border: none; /* 🔹 remove a borda branca */
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  font-size: 1.6rem;
  border-radius: 50%;
  padding: 0.75rem 1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

/* Hover com leve ampliação */
.carousel-btn:hover {
  background: #1e40af;
  transform: translateY(-50%) scale(1.1);
}

/* Posições laterais */
.carousel-btn.prev {
  left: 19rem;
}

.carousel-btn.next {
  right: 19rem;
}

/* 🔹 Mobile */
@media (max-width:750px) {
  .carousel-btn {
    font-size: 1.4rem;
    padding: 0.6rem 0.8rem;
  }
  .carousel-btn.prev {
    left: 0.3rem;
  }
  .carousel-btn.next {
    right: 0.3rem;
  }
}

@media (max-width:1000px){
  .carousel-btn {
    font-size: 1.4rem;
    padding: 0.6rem 0.8rem;
  }
  .carousel-btn.prev {
    left: 1rem;
  }
  .carousel-btn.next {
    right: 1rem;
  }
}

@media (max-width:1200px){
  .carousel-btn {
    font-size: 1.4rem;
    padding: 0.6rem 0.8rem;
  }
  .carousel-btn.prev {
    left: 1.5rem;
  }
  .carousel-btn.next {
    right: 1.5rem;
  }
}

#campo-comprar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1rem;
}

#campo-comprar input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.whois-status {
  margin-top: 4px;
  font-size: 0.9rem;
}

.whois-status.ok {
  color: #0a0;
}

.whois-status.error {
  color: #c00;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.suggestion {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.suggestion:hover {
  background: #e0e0e0;
}

/* === INDICADORES DO CARROSSEL === */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-indicators .dot {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* === FEATURES / DOMAINS / CONTACT === */
.features-grid, .domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.feature-item, .domain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-item:hover, .domain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37,99,235,0.1);
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.btn-submit {
  background: var(--primary);
  color: #fff;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.btn-submit:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* === CTA === */
.cta {
  background: linear-gradient(120deg, #ffffff, var(--bg-alt));
  text-align: center;
  border-radius: var(--radius);
  padding: 4rem 1rem;
}
.cta h3 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.cta p { color: var(--text-light); margin-bottom: 1rem; }

/* === RESPONSIVO === */
@media (max-width: 900px) {
  .hero--clean {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-main) 100%);
  padding: 2rem 0 4rem; /* padrão compacto */
  transition: padding 0.4s ease;
}
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 854px) {
  .plan-card {
  max-width: 40%
}
}

@media (max-width: 600px) {
  .plan-card {
  max-width: 70%;
}
}
/* === BOTÃO VOLTAR AO TOPO (com texto) === */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  height: 3.2rem;                 /* levemente maior */
  padding: 0 1.1rem;               /* espaço para o texto */
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .28s ease, transform .28s ease, background .2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  z-index: 999;
}

.back-to-top .arrow {
  font-size: 1.25rem;              /* seta um pouco maior */
  line-height: 1;
}

.back-to-top .label {
  font-size: .98rem;               /* texto claro e legível */
  white-space: nowrap;
}

.back-to-top:hover {
  background: #1e40af;
  transform: translateY(2px);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* compacta um pouco em telas muito estreitas */
@media (max-width: 380px) {
  .back-to-top {
    height: 3rem;
    padding: 0 .9rem;
  }
  .back-to-top .label {
    font-size: .92rem;
  }
}

/* === BANNER FACILITANDO PRINCIPAL === */
.facilitando-banner {
  background: #8fc8d6;
  padding: 2.5rem 1rem;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.facilitando-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform .25s ease;
}

.facilitando-link:hover {
  transform: translateY(-3px);
}

.facilitando-img {
  width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.facilitando-text h4 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.facilitando-text p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 600px) {
  .facilitando-link {
    flex-direction: column;
    align-items: center; /* Garante centralização do conteúdo */
    text-align: center;
  }

  .facilitando-img {
    width: 400px;
    max-width: 90%;      /* Garante que não ultrapasse a tela */
    display: block;
    margin: 0 auto;      /* Centraliza a imagem */
  }

  .facilitando-text h4 {
    font-size: 1.1rem;
  }

  .facilitando-text p {
    font-size: 0.95rem;
  }
}

/* === REMOVER SETAS DO CARROSSEL ACIMA DE 860px === */
@media (min-width: 860px) {
  .carousel-btn {
    display: none !important;
  }
}

/* ===================================================
   OVERLAY GLOBAL (manutenção / horário)
=================================================== */
.global-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  z-index: 40;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all; /* bloqueia clique */
  border-radius: 16px;
}

.global-overlay-card {
  background: #fff;
  padding: 26px 32px;
  border-radius: 14px;
  max-width: 420px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease;
}

/* ===================================================
   OVERLAY INDIVIDUAL (plano indisponível)
=================================================== */
.plan-block-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  z-index: 20;
  pointer-events: all; /* bloqueia clique */
}

.plan-indisponivel-text {
  color: #b91c1c;
  font-weight: 600;
  margin-top: 6px;
}

/* ===================================================
   Bloqueia clique e scroll do carousel inteiro
=================================================== */
.carousel-wrapper.disabled * {
  pointer-events: none !important;
}

/* ===================================================
   Altura mínima para que overlay funcione
=================================================== */
.section.plans {
  position: relative;
  min-height: 540px;
}

/* ===================================================
   Animação
=================================================== */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1);   }
}

.gvi-highlight {
  background: #2563eb;
  color: #fff;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  font-weight: 600;
}

.gvi-tags {
  margin-top: 0.4rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gvi-tag {
  background: #eef4ff;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #1e40af;
  border: 1px solid #c7d5ff;
}

/*Rotate*/

.gvi-examples {
  margin-top: 1.2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
}

.gvi-rotating {
  margin-top: 0.5rem;
  height: 34px; /* garante estabilidade ao trocar */
  overflow: hidden;
  display: flex;
  justify-content: center;
}

#gvi-item {
  font-weight: 700;
  color: #1e40af;          /* azul forte */
  font-size: 1.45rem;      /* destaque REAL */
  letter-spacing: 0.5px;   /* leve refinamento */
  text-shadow: 0 1px 2px rgba(0,0,0,0.15); /* brilho sutil */
  animation: fadeSlide 0.6s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contact-label {
  margin-top: 5px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
  display: block;
}

.contact-select {
  appearance: none;
  cursor: pointer;
  background-color: #fff;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  border: none;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-submit:hover {
  background: #1e4fd1;
}

