:root {
  --violeta: #4c33b5;
  --lilas: #9338ff;
  --pink: #e148f7;
  --rose: #ff95cc;
  --verde-neon: #27f2bd;
  --off-white: #f9f9f9;
  --noturno: #0b0430;
  --text-soft: rgba(11, 4, 48, 0.72);
  --border: rgba(76, 51, 181, 0.12);
  --gradient-main: linear-gradient(135deg, #ff95cc 0%, #e148f7 38%, #9338ff 68%, #4c33b5 100%);
  --gradient-soft: linear-gradient(180deg, rgba(255, 149, 204, 0.1) 0%, rgba(147, 56, 255, 0.08) 100%);
  --shadow: 0 16px 40px rgba(76, 51, 181, 0.12);
  --radius: 28px;
  --radius-md: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--noturno);
  background: var(--off-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--gradient-soft);
}

.section-alt {
  background: var(--off-white);
}

.section-gradient {
  padding: 88px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--violeta);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.75);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.logo {
  height: 48px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--violeta);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--gradient-main);
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--violeta);
  background: white;
  border: 1px solid rgba(76, 51, 181, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--gradient-soft);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.65;
  pointer-events: none;
}

.hero::before {
  width: 320px;
  height: 320px;
  top: 30px;
  left: -80px;
  background: rgba(255, 149, 204, 0.28);
}

.hero::after {
  width: 360px;
  height: 360px;
  top: -40px;
  right: -40px;
  background: rgba(147, 56, 255, 0.18);
}

.hero-grid,
.split,
.footer-grid {
  display: grid;
  gap: 48px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 70px 0;
}

.pill {
  display: inline-flex;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--violeta);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(76, 51, 181, 0.06);
}

.hero-text {
  max-width: 700px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card,
.card,
.audience-item,
.step,
.faq-item,
.cta-box,
.hero-panel {
  border: 1px solid var(--border);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(76, 51, 181, 0.06);
}

.stat-card {
  padding: 22px 20px;
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.hero-stats .stat-card:nth-child(1) strong {
  color: var(--violeta);
}

.hero-stats .stat-card:nth-child(2) strong {
  color: var(--lilas);
}

.hero-stats .stat-card:nth-child(3) strong {
  color: var(--pink);
}

.hero-panel {
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(76, 51, 181, 0.14);
}

.hero-panel-top {
  padding: 28px;
  border-radius: 24px;
  color: white;
  background: var(--gradient-main);
}

.hero-panel-top h2,
.hero-panel-top p {
  color: white;
}

.hero-panel-top h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.panel-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-list,
.audience-list,
.steps,
.faq-list {
  display: grid;
  gap: 16px;
}

.hero-list {
  margin-top: 20px;
}

.hero-list-item,
.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--off-white);
  border: 1px solid rgba(76, 51, 181, 0.08);
}

.hero-list-item .dot-icon,
.audience-item .dot-icon {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 7px;
  background: var(--verde-neon);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  padding: 28px;
  transition: transform 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.benefit-card:nth-child(1) h3 {
  color: var(--violeta);
}

.benefit-card:nth-child(2) h3 {
  color: var(--lilas);
}

.benefit-card:nth-child(3) h3 {
  color: var(--pink);
}

.benefit-card:nth-child(4) h3 {
  color: var(--violeta);
}

.split {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.step {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  background: var(--gradient-main);
}

.gradient-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  padding: 42px;
  border-radius: var(--radius);
  color: white;
  background: var(--gradient-main);
}

.gradient-box h2,
.gradient-box p {
  color: white;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tag-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  color: white;
}

.faq-wrap {
  max-width: 980px;
}

.faq-item {
  padding: 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--noturno);
  position: relative;
  padding-right: 32px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--lilas);
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 14px;
  margin-bottom: 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px;
}

.cta-button {
  flex-shrink: 0;
}

.site-footer {
  padding: 40px 0;
  background: var(--noturno);
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.logo-footer {
  height: 42px;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

.site-footer p,
.site-footer strong,
.site-footer span {
  color: rgba(255, 255, 255, 0.74);
}

.footer-contact {
  display: grid;
  gap: 8px;
  text-align: right;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .gradient-box {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .tag-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .section,
  .section-gradient {
    padding: 72px 0;
  }

  .menu,
  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    color: var(--violeta);
    font-size: 1.1rem;
    cursor: pointer;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 0 16px 20px;
    border-top: 1px solid var(--border);
    background: white;
  }

  .mobile-menu.open {
    display: flex;
  }

  .grid-3,
  .grid-2,
  .tag-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .logo {
    height: 42px;
  }

  .hero-panel-top {
    padding: 22px;
  }

  .hero-panel {
    padding: 18px;
  }

  .card,
  .faq-item,
  .audience-item,
  .step,
  .cta-box,
  .stat-card {
    padding: 22px;
  }

  .hero-grid {
    padding: 52px 0;
  }
}
/* ─── Acessibilidade: foco visível para teclado ─── */
.btn:focus-visible,
.menu a:focus-visible,
.mobile-menu a:focus-visible,
.faq-item summary:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--violeta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Respeitar preferência de movimento reduzido ─── */
@media (prefers-reduced-motion: reduce) {
  .btn,
  .card,
  .hero-panel,
  .site-header {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }

  .card:hover {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ─── Dot-icon (substituição da tag <i> decorativa) ─── */
.dot-icon {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 7px;
  background: var(--verde-neon);
  display: inline-block;
}

/* ─── Seção de depoimentos ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(76, 51, 181, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s ease;
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
  min-width: 0;
}

.review-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--noturno);
}

.review-info span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.review-google-icon {
  flex-shrink: 0;
  margin-left: auto;
}

.review-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.reviews-footer {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 20px;
  }
}

/* ─── Barra de rating Google ─── */
.google-rating-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.google-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(76, 51, 181, 0.07);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.google-rating-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(76, 51, 181, 0.12);
}

.google-rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.google-rating-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--noturno);
  line-height: 1;
}

.google-rating-stars {
  color: #f5a623;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.google-rating-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.google-rating-meta strong {
  font-size: 0.95rem;
  color: var(--noturno);
}

.google-rating-meta span {
  font-size: 0.82rem;
  color: var(--violeta);
  font-weight: 600;
}

@media (max-width: 760px) {
  .google-rating-link {
    padding: 14px 20px;
    gap: 12px;
  }

  .google-rating-number {
    font-size: 1.4rem;
  }
}


@media (max-width: 760px) {
  .channels-grid {
    gap: 10px;
  }

  .channel-badge {
    padding: 9px 14px;
    font-size: 0.85rem;
  }
}

/* ─── Botão flutuante ─── */
.float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: var(--gradient-main);
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(76, 51, 181, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(76, 51, 181, 0.45);
}

/* ─── Modal overlay ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 4, 48, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
}

.modal-box {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  color: var(--noturno);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.modal-close:hover {
  background: var(--off-white);
}

/* ─── Campos do formulário ─── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--noturno);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--noturno);
  background: white;
  border: 1px solid rgba(76, 51, 181, 0.2);
  border-radius: 12px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--violeta);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  color: var(--noturno);
  cursor: pointer;
}

.form-error {
  color: #c0392b;
  font-size: 0.88rem;
  margin: 0 0 10px;
}

/* ─── Sucesso ─── */
.form-success {
  text-align: center;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--verde-neon);
  color: var(--noturno);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success strong {
  font-size: 1.2rem;
  color: var(--noturno);
}

.form-success p {
  font-size: 0.95rem;
  max-width: 380px;
  margin: 0;
}

/* ─── Responsivo ─── */
@media (max-width: 760px) {
  .float-btn {
    bottom: 20px;
    right: 16px;
    height: 48px;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .modal-box {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}