@charset "utf-8";

/* =============================================
   CONTATO PREMIUM — VURA
   #000 · #00DC00 · #FFF · #f5f5f5
   ============================================= */

:root {
  --verde:      #00DC00;
  --verde-h:    #00c400;
  --verde-dim:  rgba(0,220,0,0.08);
  --verde-glow: rgba(0,220,0,0.25);
  --preto:      #000;
  --preto-soft: #0a0a0a;
  --escuro:     #111;
  --borda-e:    #1e1e1e;
  --branco:     #fff;
  --cinza:      #f5f5f5;
  --cinza-txt:  #555;
  --borda:      #e8e8e8;
  --erro:       #cc0000;
  --r:          12px;
  --r-sm:       6px;
  --trans:      0.25s ease;
}

/* ─── FADE-IN AO ROLAR ───────────────────── */
.vura-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.vura-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HERO ───────────────────────────────── */
.ct-hero {
  background: var(--preto);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.ct-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,220,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.ct-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  max-width: 680px;
}
.ct-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 1.5rem;
}

.ct-hero__titulo {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.08;
  color: var(--branco);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.ct-hero__titulo em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--verde);
}
.ct-hero__sub {
  font-size: 1rem;
  color: #999;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 0.75rem;
}
.ct-hero__nota {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.65;
  max-width: 480px;
  border-left: 2px solid var(--verde);
  padding-left: 1rem;
  margin-top: 1.5rem;
  font-style: italic;
}
.ct-hero__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.ct-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #666;
  background: #111;
  border: 1px solid #222;
  padding: 0.35rem 0.85rem;
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ct-hero__badge--verde {
  color: var(--verde);
  background: var(--verde-dim);
  border-color: rgba(0,220,0,0.2);
}
.ct-hero__badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* lado direito hero — stats */
.ct-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ct-hero__stat {
  background: var(--escuro);
  border: 1px solid var(--borda-e);
  border-radius: var(--r);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--trans);
}
.ct-hero__stat:first-child {
  background: var(--verde);
  border-color: var(--verde);
}
.ct-hero__stat:hover { border-color: var(--verde); }
.ct-hero__stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--branco);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.ct-hero__stat:first-child .ct-hero__stat-num { color: #000; }
.ct-hero__stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.5);
}
.ct-hero__stat:first-child .ct-hero__stat-label { color: rgba(0,0,0,0.55); }
.ct-hero__stat-deco {
  position: absolute;
  bottom: 1rem; right: 1rem;
  font-size: 1.6rem;
  opacity: 0.1;
  color: var(--branco);
}
.ct-hero__stat:first-child .ct-hero__stat-deco { color: #000; }

/* ─── CANAIS — GRID 3 COLUNAS ───────────── */
.ct-canais {
  background: var(--cinza);
  padding: 5rem 0;
}
.ct-sec-header {
  margin-bottom: 3rem;
}
.ct-sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 0.75rem;
}

.ct-sec-titulo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--preto);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.ct-sec-titulo em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--verde);
}

/* grid canais */
.ct-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ct-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* card canal */
.ct-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.ct-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--preto);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.ct-card:hover {
  border-color: #ddd;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.ct-card:hover::before { transform: scaleX(1); }
.ct-card--destaque::before { background: var(--verde); transform: scaleX(1); }
.ct-card--destaque {
  background: var(--preto);
  border-color: var(--preto);
  grid-column: 1 / -1;
}

.ct-card__ico {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--cinza);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-card--destaque .ct-card__ico { background: #1a1a1a; }
.ct-card__ico svg {
  width: 22px; height: 22px;
  fill: var(--preto);
}
.ct-card--destaque .ct-card__ico svg { fill: var(--verde); }

.ct-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--verde);
  margin-bottom: -0.5rem;
}
.ct-card__titulo {
  font-size: 0.975rem;
  font-weight: 800;
  color: var(--preto);
  line-height: 1.3;
}
.ct-card--destaque .ct-card__titulo { color: var(--branco); }
.ct-card__desc {
  font-size: 0.835rem;
  color: var(--cinza-txt);
  line-height: 1.65;
  flex: 1;
}
.ct-card--destaque .ct-card__desc { color: #999; }

/* card destaque — layout horizontal */
.ct-card--destaque .ct-card__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.ct-card--destaque .ct-card__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}
.ct-card--destaque .ct-card__texto { flex: 1; }
.ct-card--destaque .ct-card__acoes {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* botões dos cards */
.ct-card .ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0.6rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
  letter-spacing: 0.02em;
  align-self: flex-start;
}
.ct-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.ct-btn--preto  { background: var(--preto); color: var(--branco); fill: var(--branco); }
.ct-btn--preto:hover  { background: #222; transform: translateY(-1px); }
.ct-btn--verde  { background: var(--verde); color: var(--preto); fill: var(--preto); box-shadow: 0 0 0 0 var(--verde-glow); }
.ct-btn--verde:hover  { background: var(--verde-h); transform: translateY(-1px); box-shadow: 0 4px 20px var(--verde-glow); }
.ct-btn--outline { background: transparent; color: var(--preto); fill: var(--preto); border: 2px solid var(--preto); }
.ct-btn--outline:hover { background: var(--preto); color: var(--branco); fill: var(--branco); }
.ct-btn--outline-light { background: transparent; color: var(--branco); fill: var(--branco); border: 2px solid #333; }
.ct-btn--outline-light:hover { border-color: var(--branco); }
/* botões "Já sou cliente" — contorno branco, hover preenchimento em branco */
.ct-btn--cliente-outline {
  background: transparent;
  color: var(--branco);
  fill: var(--branco);
  border: 2px solid rgba(255,255,255,0.6);
}
.ct-btn--cliente-outline svg { fill: var(--branco); }
.ct-btn--cliente-outline:hover {
  background: var(--branco);
  color: var(--preto);
  fill: var(--preto);
  border-color: var(--branco);
  transform: translateY(-1px);
}
.ct-btn--cliente-outline:hover svg { fill: var(--preto); }

/* ─── POR QUE FALAR COM A VURA ──────────── */
.ct-porque {
  background: var(--preto);
  padding: 5rem 0;
}
.ct-porque .ct-sec-titulo { color: var(--branco); }

.ct-pq-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 3rem;
  border-top: 1px solid #1e1e1e;
}
.ct-pq-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid #1e1e1e;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--trans);
}
.ct-pq-item:last-child { border-right: none; }
.ct-pq-item:hover { background: #0d0d0d; }

.ct-pq-item__num {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--verde);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ct-pq-item__ico {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
}
.ct-pq-item__ico svg { width: 20px; height: 20px; fill: var(--verde); }
.ct-pq-item__titulo {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--branco);
  line-height: 1.3;
}
.ct-pq-item__desc {
  font-size: 0.78rem;
  color: #999;
  line-height: 1.6;
}

/* ─── FORMULÁRIO WPP ─────────────────────── */
.ct-wpp {
  background: var(--branco);
  padding: 5rem 0;
}
.ct-wpp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ct-wpp__visual {
  position: sticky;
  top: 100px;
}
.ct-wpp__img {
  width: 100%;
  aspect-ratio: 4/4;
  background: var(--cinza);
  border-radius: var(--r);
  border: 2px dashed var(--borda);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.ct-wpp__img span { font-size: 1.8rem; opacity: 0.3; }
.ct-wpp__img p { font-size: 0.75rem; color: #aaa; font-weight: 600; }
.ct-wpp__img small { font-size: 0.65rem; color: #ccc; }

.ct-wpp__quote {
  background: var(--preto);
  border-radius: var(--r-sm);
  padding: 1.25rem 1.5rem;
}
.ct-wpp__quote-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  color: var(--verde);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}
.ct-wpp__quote p { font-size: 0.82rem; color: #ccc; line-height: 1.6; margin-bottom: 0.5rem; }
.ct-wpp__quote cite { font-size: 0.7rem; color: #555; font-style: normal; }

/* form */
.ct-form-titulo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--preto);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.ct-form-titulo em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--verde);
}
.ct-form-desc {
  font-size: 0.875rem;
  color: var(--cinza-txt);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.ct-form { display: flex; flex-direction: column; gap: 10px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.ct-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #aaa;
  margin-bottom: 5px;
}
.ct-form input,
.ct-form select,
.ct-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--cinza);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  color: var(--preto);
  outline: none;
  transition: border-color var(--trans), background var(--trans);
  font-family: inherit;
}
.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
  border-color: var(--verde);
  background: var(--branco);
}
.ct-form input.invalido,
.ct-form select.invalido,
.ct-form textarea.invalido { border-color: var(--erro); }
.ct-form input::placeholder,
.ct-form textarea::placeholder { color: #ccc; }
.ct-form select { appearance: none; cursor: pointer; }
.ct-form textarea { resize: vertical; min-height: 110px; }
.ct-form-honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; }
.ct-form-erro {
  font-size: 0.7rem; color: var(--erro);
  font-weight: 600; display: none; margin-top: -6px;
}
.ct-form-erro.show { display: block; }

.ct-form-submit {
  width: 100%;
  height: 50px;
  background: var(--verde);
  color: #000;
  border: none;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 0 0 var(--verde-glow);
  margin-top: 6px;
}
.ct-form-submit svg { width: 18px; height: 18px; fill: #000; }
.ct-form-submit:hover {
  background: var(--verde-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px var(--verde-glow);
}
.ct-form-submit:active { transform: translateY(0); }

/* ─── FAQ ────────────────────────────────── */
.ct-faq {
  background: var(--cinza);
  padding: 5rem 0;
}
.ct-faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: start;
}
.ct-faq__left { position: sticky; top: 100px; }
.ct-faq__left .ct-sec-titulo { margin-bottom: 1rem; }
.ct-faq__left p {
  font-size: 0.9rem;
  color: var(--cinza-txt);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ct-faq-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--preto);
  text-decoration: none;
  border-bottom: 2px solid var(--verde);
  padding-bottom: 2px;
  transition: color var(--trans);
}
.ct-faq-link:hover { color: var(--verde); }
.ct-faq-link svg { width: 14px; height: 14px; fill: currentColor; }

/* acordeão */
.ct-faq__lista { display: flex; flex-direction: column; gap: 4px; }

.ct-faq-item {
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--borda);
  background: var(--branco);
  transition: border-color var(--trans);
}
.ct-faq-item.open { border-color: var(--preto); }

.ct-faq-btn {
  width: 100%;
  padding: 1.1rem 3.5rem 1.1rem 1.25rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.895rem;
  font-weight: 700;
  color: var(--preto);
  line-height: 1.4;
  position: relative;
  transition: color var(--trans);
  outline: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ct-faq-btn:hover { color: var(--verde); }
.ct-faq-item.open .ct-faq-btn { color: var(--verde); }

.ct-faq-btn__num {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--verde);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 24px;
}
.ct-faq-btn::after {
  content: '';
  position: absolute;
  right: 1.25rem; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform var(--trans);
}
.ct-faq-item.open .ct-faq-btn::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300DC00' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'/%3E%3C/svg%3E");
  transform: translateY(-50%);
}

.ct-faq-resp {
  display: none;
  padding: 0 1.25rem 1.25rem 3.5rem;
}
.ct-faq-resp.show { display: block; }
.ct-faq-resp p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--cinza-txt);
}
.ct-faq-resp a { color: var(--verde); font-weight: 700; text-decoration: none; }
.ct-faq-resp a:hover { text-decoration: underline; }

/* ─── CTA FINAL ──────────────────────────── */
.ct-cta {
  background: var(--preto);
  padding: 5.5rem 0;
}
.ct-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.ct-cta__linha {
  width: 36px; height: 2px;
  background: var(--verde);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.ct-cta__titulo {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.ct-cta__titulo em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--verde);
}
.ct-cta__desc { font-size: 0.9rem; color: #999; line-height: 1.7; }
.ct-cta__acoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

/* botões padrão VURA */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--verde); color: #000;
  font-weight: 700; font-size: 0.875rem;
  padding: 0.8rem 1.8rem; border-radius: var(--r-sm);
  text-decoration: none; transition: background var(--trans);
  white-space: nowrap; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--verde-h); }

.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--branco);
  font-weight: 700; font-size: 0.875rem;
  padding: 0.78rem 1.8rem; border-radius: var(--r-sm);
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none; transition: all var(--trans);
  white-space: nowrap;
}
.btn-outline-light:hover {
  background: var(--branco);
  color: var(--preto);
  border-color: var(--branco);
}

/* ─── BOTÃO FLUTUANTE WHATSAPP ───────────── */
.ct-wpp-float {
  display: none;
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  z-index: 999;
  transition: transform var(--trans), box-shadow var(--trans);
}
.ct-wpp-float svg { width: 28px; height: 28px; fill: var(--branco); }
.ct-wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.ct-wpp-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--preto);
  color: var(--branco);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}
.ct-wpp-float:hover .ct-wpp-float__tooltip { opacity: 1; }

/* ─── RESPONSIVO ─────────────────────────── */
@media (max-width: 1100px) {
  .ct-pq-grid { grid-template-columns: repeat(3, 1fr); }
  .ct-pq-item:nth-child(3) { border-right: none; }
  .ct-pq-item:nth-child(4),
  .ct-pq-item:nth-child(5) { border-top: 1px solid #1e1e1e; }
  .ct-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .ct-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ct-hero__stats { flex-direction: row; flex-wrap: wrap; }
  .ct-hero__stat  { flex: 1; min-width: 140px; }
  .ct-hero__titulo { font-size: 2.5rem; }

  .ct-wpp__inner { grid-template-columns: 1fr; gap: 3rem; }
  .ct-wpp__visual { position: static; }
  .ct-wpp__img { aspect-ratio: 16/6; }

  .ct-faq__inner { grid-template-columns: 1fr; gap: 3rem; }
  .ct-faq__left  { position: static; }

  .ct-cta__inner { grid-template-columns: 1fr; gap: 2rem; }
  .ct-cta__acoes { flex-direction: row; flex-wrap: wrap; }
  .ct-cta__titulo { font-size: 2rem; }
}

@media (max-width: 640px) {
  .ct-hero { padding: 3rem 0 3.5rem; }
  .ct-hero__titulo { font-size: 2rem; }

  .ct-grid { grid-template-columns: 1fr; }
  .ct-pq-grid { grid-template-columns: 1fr 1fr; }
  .ct-pq-item { border-right: none !important; border-top: 1px solid #1e1e1e; }
  .ct-pq-item:first-child { border-top: none; }

  .ct-form-row { grid-template-columns: 1fr; }

  .ct-cta__titulo { font-size: 1.75rem; }
  .ct-cta__acoes  { flex-direction: column; }

  .ct-wpp-float { display: flex; }
}
