/* ============================================================
   Agência Crie Sites e Landing Pages
   Paleta: navy #02133D | azul #0961F8 | índigo #4D32F8 | ciano #01BCF8
   ============================================================ */

:root {
  --navy: #02133d;
  --navy-2: #0a1e4a;
  --blue: #0961f8;
  --indigo: #4d32f8;
  --violet: #2d2bf0;
  --cyan: #01bcf8;
  --light: #eef3fd;
  --light-2: #dce6fa;
  --ink: #0e1b3e;
  --muted: #5a6690;
  --white: #ffffff;
  --grad: linear-gradient(135deg, #0961f8 0%, #4d32f8 60%, #2d2bf0 100%);
  --grad-cyan: linear-gradient(135deg, #01bcf8 0%, #0961f8 55%, #4d32f8 100%);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 18px 40px rgba(2, 19, 61, 0.12);
  --shadow-grad: 0 16px 32px rgba(45, 43, 240, 0.35);
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.25;
  color: var(--navy);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Botões
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: var(--shadow-grad);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(45, 43, 240, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(2, 19, 61, 0.18);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(37, 211, 102, 0.42);
}

.btn-lg {
  padding: 1rem 2.1rem;
  font-size: 1.05rem;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(2, 19, 61, 0.06);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 6px 24px rgba(2, 19, 61, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 74px;
  width: auto;
}

.nav-menu {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.nav-link {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.btn-nav-cta {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--grad);
  color: var(--white);
  padding: 0.62rem 1.35rem;
  border-radius: 50px;
  box-shadow: var(--shadow-grad);
  white-space: nowrap;
}

.nav-link.btn-nav-cta::after {
  display: none;
}

.nav-link.btn-nav-cta:hover {
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 18px 32px rgba(45, 43, 240, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle-bar {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 480px at 85% -10%, rgba(9, 97, 248, 0.16), transparent 60%),
    radial-gradient(760px 420px at -10% 110%, rgba(77, 50, 248, 0.14), transparent 60%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  padding-top: 74px;
  padding-bottom: 90px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(9, 97, 248, 0.08);
  border: 1px solid rgba(9, 97, 248, 0.22);
  padding: 0.42rem 0.95rem;
  border-radius: 50px;
  margin-bottom: 1.3rem;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(1, 188, 248, 0.25);
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.hero-title .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--light);
  border: 1px solid var(--light-2);
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
}

.hero-badge i {
  color: var(--cyan);
}

/* Card visual do mercado / mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-mockup {
  width: 100%;
  max-width: 460px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(2, 19, 61, 0.35);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.mockup-dots i:nth-child(2) {
  background: rgba(255, 255, 255, 0.18);
}

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 8px;
}

.mockup-body {
  padding: 26px;
  display: grid;
  gap: 1rem;
}

.mockup-search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border-radius: 40px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: #7a86aa;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.mockup-search i {
  color: var(--blue);
}

.mockup-result {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.mockup-sponsor {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.mockup-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  margin: 4px 0 2px;
}

.mockup-link {
  font-size: 0.8rem;
  color: var(--blue);
}

.mockup-stars {
  font-size: 0.82rem;
  color: #f5a623;
  margin-top: 6px;
}

.mockup-stars span {
  color: var(--ink);
  font-weight: 600;
}

.mockup-card {
  background: linear-gradient(135deg, #0961f8, #4d32f8);
  border-radius: 14px;
  padding: 18px;
  color: var(--white);
  box-shadow: 0 14px 28px rgba(45, 43, 240, 0.4);
}

.mockup-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.mockup-card p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.mockup-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================================
   Seções
   ============================================================ */
.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--light);
}

.section.faq {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(9, 97, 248, 0.14);
  border-radius: 14px;
  padding: 1.05rem 1.3rem;
  box-shadow: 0 4px 18px rgba(9, 97, 248, 0.06);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--blue);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section.dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.02rem;
  text-align: center;
}

.section.dark .section-sub {
  color: rgba(255, 255, 255, 0.72);
}

/* ============================================================
   Stats
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.stat-item {
  text-align: center;
  padding: 1.6rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-2);
  box-shadow: var(--shadow);
}

.section.dark .stat-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section.dark .stat-number {
  background: none;
  -webkit-text-fill-color: var(--cyan);
}

.stat-label {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

.section.dark .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   Split (texto + visual)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
}

.split-visual {
  display: flex;
  justify-content: center;
}

.split-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3.4rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.split-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.split-text {
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.split-list {
  display: grid;
  gap: 0.8rem;
}

.split-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--ink);
}

.split-list i {
  color: var(--blue);
  margin-top: 4px;
  font-size: 0.95rem;
}

.split-list strong {
  color: var(--navy);
}

/* Cartão de destaque visual (mão única, pois não há imagens vetoriais) */
.dark-card {
  width: 100%;
  max-width: 420px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  color: var(--white);
  box-shadow: 0 30px 60px rgba(2, 19, 61, 0.35);
}

.dark-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.dark-card li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.dark-card li i {
  color: var(--cyan);
  margin-top: 4px;
}

/* ============================================================
   Grid de cartões (serviços / diferenciais)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7rem;
}

.cards-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(2, 19, 61, 0.16);
  border-color: transparent;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--grad);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: var(--shadow-grad);
  margin-bottom: 0.5rem;
}

.card-icon.cyan {
  background: linear-gradient(135deg, #01bcf8, #0961f8);
  box-shadow: 0 14px 28px rgba(1, 188, 248, 0.35);
}

.card-title {
  font-size: 1.18rem;
  font-weight: 700;
}

.card-text {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue);
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 0.7rem;
  color: var(--indigo);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

/* ============================================================
   Steps / Processo
   ============================================================ */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.7rem;
  box-shadow: var(--shadow);
}

.step-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.7rem;
}

.step-title {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step-text {
  font-size: 0.92rem;
  color: var(--muted);
}

.section.dark .step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section.dark .step-text {
  color: rgba(255, 255, 255, 0.72);
}

.process-cta {
  margin-top: 3rem;
  padding: 1.2rem 0 0;
  text-align: center;
  color: var(--navy);
}

.process-cta h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.process-cta .btn {
  margin: 0 auto;
}

.step-grid ~ .process-cta {
  margin-top: 3.4rem;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--grad);
  padding: 3.4rem 3rem;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-grad);
}

.cta-band h2 {
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 34rem;
  margin: 0 auto 1.6rem;
  font-size: 1.02rem;
}

.btn-on-dark {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(2, 19, 61, 0.28);
}

.btn-on-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(2, 19, 61, 0.32);
}

/* ============================================================
   Páginas de serviço
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 88% -20%, rgba(9, 97, 248, 0.18), transparent 60%),
    radial-gradient(700px 400px at -10% 120%, rgba(77, 50, 248, 0.14), transparent 60%),
    var(--white);
  border-bottom: 1px solid var(--light-2);
}

.page-hero-inner {
  max-width: 860px;
  padding: 86px 0 74px;
  text-align: center;
}

.crumbs {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.2rem;
}

.legal .crumbs {
  text-align: center;
}

.page-hero-title {
  font-size: 2.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-hero-title .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero-sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

.page-hero-title,
.page-hero-sub {
  text-align: center;
}

.hero-title {
  text-align: left;
}

.hero-sub {
  text-align: justify;
}

.card-text,
.step-text,
.split-text,
.feature-item p,
.cta-band p,
.notice p,
.split-list li,
.mockup-card p,
.contact-card > p,
.footer-desc {
  text-align: justify;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

/* Lista de recursos */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.8rem;
}

.feature-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.feature-item i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(9, 97, 248, 0.1);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Aviso destacado (ex.: não trabalhamos com e-commerce) */
.notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff5f5;
  border: 1px solid #ffd6d7;
  border-left: 6px solid #e5484d;
  border-radius: 14px;
  padding: 18px 22px;
  max-width: 860px;
  margin: 0 0 3rem;
}

.notice i {
  font-size: 1.5rem;
  color: #e5484d;
  margin-top: 3px;
}

.notice strong {
  color: #b01d22;
  display: block;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.2rem;
}

.notice p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============================================================
   Contato
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.contact-card > p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 1.6rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--light);
  border: 1px solid var(--light-2);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-channel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-channel i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-channel strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
}

.contact-channel span {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.75rem 0.95rem;
  border: 1.5px solid var(--light-2);
  border-radius: 10px;
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(9, 97, 248, 0.14);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-lgpd {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--muted);
  grid-column: 1 / -1;
}

.form-lgpd input {
  margin-top: 3px;
  accent-color: var(--blue);
}

.form-submit {
  grid-column: 1 / -1;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--light);
  color: var(--navy);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.6rem;
  align-items: start;
  padding-bottom: 36px;
}

.footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 0.5rem;
  position: relative;
  top: -2px;
}

.footer-brand .footer-desc {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 22rem;
}

.footer-services {
  justify-self: end;
  text-align: right;
}

.footer h4 {
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--indigo);
}

.footer-contact-center {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  text-align: center;
}

.footer-contact-center h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.footer-contact-center .cc-24h {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.35rem;
}

.footer-contact-center .cc-24h i {
  color: var(--blue);
}

.cc-wave {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
}

.cc-wave i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--blue);
}

.footer-email:hover {
  color: var(--indigo);
}

.footer-bottom {
  border-top: 1px solid var(--light-2);
  padding: 1.2rem 0;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
}

/* ============================================================
   WhatsApp flutuante
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 8px 18px 8px 8px;
  border-radius: 50px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.45);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  transition: transform var(--transition);
}

.whatsapp-float .wa-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

/* ============================================================
   Cookies / LGPD
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 400;
  max-width: 640px;
  width: calc(100% - 32px);
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 24px 48px rgba(2, 19, 61, 0.4);
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-btn {
  background: var(--grad-cyan);
  color: var(--white);
  border: none;
  border-radius: 40px;
  padding: 0.6rem 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
}

/* ============================================================
   Página de conversão (obrigado)
   ============================================================ */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(800px 400px at 90% -10%, rgba(9, 97, 248, 0.16), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(77, 50, 248, 0.14), transparent 60%),
    var(--light);
}

.thanks-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 460px;
  width: 100%;
  text-align: center;
  padding: 3rem 2.2rem;
}

.thanks-logo {
  height: 64px;
  width: auto;
  margin: 0 auto 1.6rem;
}

.thanks-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
}

.thanks-card h1 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.thanks-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 1.8rem;
}

.thanks-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1.2rem;
  display: none;
}

/* ============================================================
   Animações
   ============================================================ */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .page-hero-title {
    font-size: 2.1rem;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .split-visual {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-services {
    justify-self: start;
    text-align: left;
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav {
    justify-content: space-between;
  }

  .nav-logo {
    position: static;
    transform: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    flex: initial;
  }

  .nav-link.btn-nav-cta {
    position: static;
    transform: none;
    margin-left: initial;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 86vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.2rem;
    background: var(--white);
    box-shadow: -12px 0 34px rgba(2, 19, 61, 0.16);
    padding: 96px 28px 32px;
    transition: right 0.35s ease;
    z-index: 150;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu .nav-link {
    font-size: 1.02rem;
    padding: 0.7rem 0;
    width: 100%;
  }

  .nav-menu .nav-link.btn-nav-cta {
    width: auto;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .cards-grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 2.6rem 1.6rem;
  }

  .cta-band h2 {
    font-size: 1.5rem;
  }

  .hero-actions .btn,
  .page-hero-actions .btn {
    white-space: nowrap;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-services {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }

  .nav-logo-img {
    height: 60px;
  }

  .hero-grid {
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .hero-title,
  .page-hero-title {
    font-size: 1.75rem;
  }

  .hero-sub,
  .page-hero-sub {
    font-size: 1rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

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

  .btn {
    white-space: nowrap;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    bottom: 12px;
    width: calc(100% - 22px);
    padding: 1.1rem 1.2rem;
    gap: 0.85rem;
  }

  .cookie-banner .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 0;
    width: 56px;
    height: 56px;
    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-float .wa-label {
    display: none;
  }

  .whatsapp-float .wa-ico {
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    background: transparent;
  }
}

/* ============================================================
   Animações sutis — apenas transform/opacity (GPU), não
   impactam o carregamento nem o desempenho
   ============================================================ */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes bobY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

@keyframes ping {
  0%            { transform: scale(1);    opacity: 0.55; }
  80%, 100%     { transform: scale(1.9);  opacity: 0;    }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 0.95; }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.45); opacity: 0.6; }
}

.hero-mockup {
  animation: floatY 7s ease-in-out infinite;
  will-change: transform;
}

.mockup-card {
  animation: bobY 3.2s ease-in-out 0.4s infinite;
}

.mockup-chip {
  animation: bobY 2.6s ease-in-out infinite;
}

.hero-tag-dot {
  animation: dotPulse 2.2s ease-in-out infinite;
}

/* Captura do perfil do Google Meu Negócio (hero da página GMB) */
.gmb-img-wrap {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(2, 19, 61, 0.28);
  animation: floatY 7s ease-in-out infinite;
  will-change: transform;
}

.gmb-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

/* Imagem do site institucional (hero da página de site) */
.hero-img-wrap {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(2, 19, 61, 0.28);
  animation: floatY 7s ease-in-out infinite;
  will-change: transform;
}

.hero-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-content .crumbs {
  text-align: left;
}

@media (min-width: 1024px) {
  .section-title.nowrap {
    white-space: nowrap;
  }

  .section-title.fixed-lines {
    white-space: nowrap;
  }
}

.wa-ico {
  position: relative;
}

.wa-ico::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.whatsapp-float:hover .wa-ico::after {
  animation: none;
  opacity: 0;
}

.cta-band::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 220%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 60%);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

/* Acessibilidade: desliga os movimentos se o sistema pedir */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}