/* ============================================================
   SPD Soluções Digitais — Folha de Estilos
   Paleta: branco, gelo, teal/cobre da logo e grafite
   ============================================================ */

:root {
  --white: #ffffff;
  --ice: #f0f6f7;
  --ice-dark: #e0edef;
  --orange: #0e7c86;
  --orange-dark: #0a5c64;
  --orange-soft: #e7f5f6;

  --teal: #0e7c86;
  --teal-dark: #0a5c64;
  --teal-deep: #0c2b3b;
  --teal-mid: #14455a;
  --aqua: #2bb8c6;
  --aqua-soft: #8fe0e8;
  --teal-soft: #e7f5f6;
  --brand-grad: linear-gradient(135deg, #0e7c86 0%, #2bb8c6 100%);

  --graphite: #22333b;
  --graphite-light: #55656c;
  --graphite-soft: #77898f;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(45, 52, 54, 0.08);
  --shadow-md: 0 12px 32px rgba(45, 52, 54, 0.12);
  --shadow-lg: 0 24px 60px rgba(45, 52, 54, 0.16);

  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.4, 1);
}

/* ------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--graphite);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.text-orange {
  color: var(--orange);
}

/* ------------------------------------------------------------
   Botões
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), color var(--transition);
}

.btn i {
  transition: transform var(--transition);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--brand-grad);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(14, 124, 134, 0.35);
  animation: pulse-glow 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 3.8s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(14, 124, 134, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--graphite);
  border-color: var(--ice-dark);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}

.btn-light {
  background: var(--white);
  color: var(--graphite);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-block {
  width: 100%;
}

.btn-whatsapp {
  background: var(--brand-grad);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(14, 124, 134, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 124, 134, 0.45);
}

.btn-whatsapp i {
  font-size: 1.15rem;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 22px rgba(14, 124, 134, 0.35); }
  50% { box-shadow: 0 8px 34px rgba(14, 124, 134, 0.55); }
}

@keyframes btn-shine {
  0%, 55% { left: -80%; }
  85%, 100% { left: 130%; }
}

/* ------------------------------------------------------------
   Animações de entrada (interseção via JS)
   ------------------------------------------------------------ */
.animate-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.8, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 0.8, 0.36, 1);
}

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

/* ------------------------------------------------------------
   Header / Nav
   ------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background-color var(--transition), box-shadow var(--transition),
    padding var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.55rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-grad);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(14, 124, 134, 0.35);
}

.nav-logo-text {
  font-size: 1.02rem;
  color: var(--graphite);
  line-height: 1.1;
}

.nav-logo-text strong {
  color: var(--orange);
  font-weight: 700;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--graphite);
  transition: color var(--transition);
}

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

.nav-link:hover {
  color: var(--orange);
}

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

.nav-link.btn-nav-cta {
  background: var(--brand-grad);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(14, 124, 134, 0.35);
  transition: background-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

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

.nav-link.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 124, 134, 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(--graphite);
  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;
  background: linear-gradient(180deg, var(--ice), var(--white) 85%);
  padding: 10rem 0 5.5rem;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 124, 134, 0.16), transparent 65%);
  pointer-events: none;
  animation: hero-blob 14s ease-in-out infinite alternate;
}

.hero-bg-pattern::after {
  content: '';
  position: absolute;
  left: -200px;
  bottom: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 184, 198, 0.18), transparent 65%);
}

@keyframes hero-blob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.12); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  background: linear-gradient(var(--white), var(--white)) padding-box,
    var(--brand-grad) border-box;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--graphite-light);
  box-shadow: var(--shadow-sm);
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(14, 124, 134, 0.2);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { box-shadow: 0 0 0 4px rgba(14, 124, 134, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(14, 124, 134, 0.08); }
}

.hero-title {
  font-size: clamp(2.1rem, 4.3vw, 3.6rem);
  font-weight: 800;
  line-height: 1.14;
  margin: 1.4rem 0 1.2rem;
  letter-spacing: -0.02em;
}

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

.hero-title-sub {
  display: block;
  font-size: clamp(1.02rem, 1.7vw, 1.35rem);
  font-weight: 500;
  color: var(--graphite-light);
  letter-spacing: 0;
  line-height: 1.55;
  margin-top: 0.7rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--graphite-light);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-subtitle strong {
  color: var(--graphite);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--graphite-light);
}

.hero-social-proof i {
  color: var(--orange);
  margin-right: 0.3rem;
}

.hero-visual {
  position: relative;
}

.hero-mockup-wrap {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}

/* ------------------------------------------------------------
   Mockup Google (hero)
   ------------------------------------------------------------ */
.hero-google {
  background: var(--white);
  border: 1px solid var(--ice-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.gsearch-topbar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.1rem;
  background: var(--ice);
  border-bottom: 1px solid var(--ice-dark);
}

.gsearch-dots {
  display: inline-flex;
  gap: 0.3rem;
}

.gsearch-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ice-dark);
  display: inline-block;
}

.gsearch-url {
  font-size: 0.72rem;
  color: var(--graphite-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.gsearch-body {
  padding: 1.4rem 1.4rem 1.8rem;
}

.gsearch-logo {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.gsearch-logo span:first-child {
  color: #4285f4;
}

.gsearch-logo .g-o {
  color: #ea4335;
}

.gsearch-logo .g-ge {
  color: #34a853;
}

.gsearch-logo .g-le {
  color: #fbbc05;
}

.gsearch-logo .g-e {
  color: #4285f4;
}

.gsearch-input {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--ice-dark);
  border-radius: 50px;
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.3rem;
}

.gsearch-input i {
  color: var(--graphite-soft);
  font-size: 0.9rem;
}

.gsearch-input span {
  flex: 1;
  color: var(--graphite);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gsearch-result {
  border: 1px solid var(--ice-dark);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  background: var(--ice);
  transition: box-shadow var(--transition), transform var(--transition);
}

.gsearch-result:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gsearch-sponsor {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.gsearch-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a0dab;
  margin-bottom: 0.15rem;
}

.gsearch-result-url {
  font-size: 0.75rem;
  color: var(--graphite-soft);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.gsearch-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 0.5rem;
}

.gsearch-stars {
  color: #f5a623;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.gsearch-reviews {
  font-weight: 400;
  color: var(--graphite-soft);
}

.gsearch-desc {
  font-size: 0.8rem;
  color: var(--graphite-light);
  margin-bottom: 0.9rem;
}

.gsearch-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gsearch-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--ice-dark);
  border-radius: 50px;
  padding: 0.35rem 0.85rem;
  transition: border-color var(--transition), color var(--transition);
}

.gsearch-chips span:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-mockup {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.mockup-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 0.8rem 1.1rem;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.mockup-float i {
  font-size: 1.4rem;
  color: var(--orange);
}

.mockup-float strong {
  display: block;
  font-size: 0.92rem;
  color: var(--graphite);
  line-height: 1.2;
}

.mockup-float span {
  font-size: 0.76rem;
  color: var(--graphite-soft);
}

.mockup-float-1 {
  top: -22px;
  left: -28px;
}

.mockup-float-2 {
  bottom: -22px;
  right: -18px;
  animation-delay: 1.5s;
}

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

/* ------------------------------------------------------------
   Stats
   ------------------------------------------------------------ */
.stats {
  background: linear-gradient(120deg, var(--teal-deep), var(--teal-mid) 60%, #185b6b);
  padding: 3.4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--aqua-soft);
  line-height: 1.1;
  text-shadow: 0 4px 18px rgba(43, 184, 198, 0.35);
}

.stat-label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ------------------------------------------------------------
   Seções (título compartilhado)
   ------------------------------------------------------------ */
.section-head {
  max-width: 46rem;
  margin-bottom: 3rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 99px;
  background: var(--brand-grad);
  margin-top: 0.65rem;
}

.section-head.center .section-title::after {
  margin-inline: auto;
}

.section-subtitle {
  margin-top: 0.9rem;
  color: var(--graphite-light);
  font-size: 1.02rem;
}

/* ------------------------------------------------------------
   Serviços
   ------------------------------------------------------------ */
.services {
  padding: 6.5rem 0;
  background: linear-gradient(160deg, var(--teal-deep) 0%, var(--teal-mid) 55%, #185b6b 100%);
}

.services .section-title {
  color: var(--white);
}

.services .section-title::after {
  background: linear-gradient(90deg, var(--aqua), var(--white));
}

.services .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--ice-dark);
  border-radius: var(--radius);
  padding: 2.2rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 43, 59, 0.35);
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), border-color var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(12, 43, 59, 0.45);
  background: var(--white);
  border-color: rgba(14, 124, 134, 0.4);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--brand-grad);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 10px 24px rgba(14, 124, 134, 0.3);
  transition: transform var(--transition);
}

.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.06);
}

.service-card h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.service-card > p {
  color: var(--graphite-light);
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--graphite);
  margin-bottom: 0.5rem;
}

.service-list i {
  color: var(--orange);
}

.service-foot {
  margin-top: 1.5rem;
}

.service-foot .btn-whatsapp {
  width: 100%;
}

.service-invest {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  background: var(--white);
  border: 1px dashed rgba(14, 124, 134, 0.45);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.service-invest span {
  font-size: 0.82rem;
  color: var(--graphite-light);
}

.service-invest strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
  line-height: 1.1;
}

.service-invest small {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--graphite-soft);
}

/* ------------------------------------------------------------
   Público (atendemos / não criamos)
   ------------------------------------------------------------ */
.audience {
  padding: 6.5rem 0;
  background: var(--ice);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
}

.audience-card {
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 1px solid var(--ice-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.audience-good {
  background: var(--white);
  border-top: 4px solid var(--orange);
}

.audience-not {
  background: var(--white);
  border-top: 4px solid var(--graphite);
}

.audience-card-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.audience-card-head i.fa-circle-check {
  color: var(--orange);
  font-size: 1.5rem;
}

.audience-card-head i.fa-circle-xmark {
  color: var(--graphite);
  font-size: 1.5rem;
}

.audience-card-head h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.audience-card ul li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.8rem;
  color: var(--graphite-light);
  font-size: 0.95rem;
}

.audience-good ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--orange);
}

.audience-not ul li::before {
  content: '\f057';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--graphite-soft);
}

.audience-note {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--orange-soft);
  color: var(--graphite-light);
  font-size: 0.9rem;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.audience-note i {
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ------------------------------------------------------------
   Dores (identificação com problemas)
   ------------------------------------------------------------ */
.pains {
  padding: 5.5rem 0;
  background: var(--ice);
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  background: var(--white);
  border: 1px solid var(--ice-dark);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 124, 134, 0.35);
}

.pain-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}

.pain-card strong {
  display: block;
  font-size: 0.96rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.pain-card p {
  font-size: 0.86rem;
  color: var(--graphite-light);
  line-height: 1.5;
}

.pains-cta {
  margin-top: 2.6rem;
  text-align: center;
}

.pains-cta p {
  color: var(--graphite-light);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

/* ------------------------------------------------------------
   Sobre a empresa
   ------------------------------------------------------------ */
.about {
  padding: 6.5rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3.5rem;
}

.about-content .section-head {
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--graphite-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.about-text strong {
  color: var(--graphite);
}

.about-pills {
  display: grid;
  gap: 0.9rem;
}

.about-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--graphite);
}

.about-pill i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--brand-grad);
  color: var(--white);
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(14, 124, 134, 0.3);
}

.about-visual {
  position: relative;
  background: linear-gradient(160deg, var(--teal-deep), var(--teal-mid) 60%, #185b6b);
  border-radius: var(--radius);
  padding: 2.6rem 2.4rem;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(12, 43, 59, 0.35);
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 184, 198, 0.35), transparent 65%);
  pointer-events: none;
}

.about-visual h3 {
  position: relative;
  z-index: 1;
  font-size: 1.55rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.about-visual p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
}

.about-stat-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-stat-box {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.05rem 1.15rem;
  background: rgba(255, 255, 255, 0.08);
}

.about-stat-box i {
  color: var(--aqua-soft);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.about-stat-box strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.about-stat-box span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ------------------------------------------------------------
   Processo
   ------------------------------------------------------------ */
.process {
  padding: 6.5rem 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 2.4rem 1.6rem 2rem;
  border-radius: var(--radius);
  background: var(--ice);
  border: 1px solid var(--ice-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.process-number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(14, 124, 134, 0.16);
  line-height: 1;
}

.process-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), background-color var(--transition),
    color var(--transition);
}

.process-step:hover .process-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.08);
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--graphite-light);
}

.process-cta {
  margin-top: 2.8rem;
  text-align: center;
}

.process-cta p {
  margin-bottom: 1.1rem;
  color: var(--graphite-light);
  font-size: 0.98rem;
  max-width: 36rem;
  margin-inline: auto;
}

/* ------------------------------------------------------------
   Diferenciais
   ------------------------------------------------------------ */
.features {
  padding: 6.5rem 0;
  background: var(--ice);
}

.features-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 3.5rem;
}

.features-visual {
  position: relative;
}

.features-visual > img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  height: 460px;
  width: 100%;
  object-fit: cover;
}

.features-float-card {
  position: absolute;
  bottom: -24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.features-float-card i {
  font-size: 1.7rem;
  color: var(--orange);
  flex-shrink: 0;
}

.features-float-card p {
  font-size: 0.9rem;
  color: var(--graphite-light);
}

.features-float-card strong {
  color: var(--graphite);
}

.features-content .section-head {
  margin-bottom: 1.8rem;
}

.feature-list {
  display: grid;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--ice-dark);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.feature-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 124, 134, 0.4);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-item h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

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

/* ------------------------------------------------------------
   Faixa CTA
   ------------------------------------------------------------ */
.cta-band {
  background: linear-gradient(120deg, var(--teal-deep) 0%, var(--teal) 52%, var(--aqua) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -160px;
  left: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -210px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.cta-band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3.5rem;
}

.cta-band-content {
  color: var(--white);
}

.cta-band-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-band-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

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

.cta-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--graphite);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(45, 52, 54, 0.18);
}

.cta-platform svg {
  width: 18px;
  height: 18px;
  display: block;
}

.cta-visual-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(45, 52, 54, 0.3);
  padding: 1.9rem;
  transform: rotate(1.5deg);
  transition: transform var(--transition);
}

.cta-visual-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.cta-visual-card h3 {
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.cta-visual-card > p {
  font-size: 0.88rem;
  color: var(--graphite-light);
  margin-bottom: 1.3rem;
}

.cta-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.cta-visual-card .cta-platform {
  background: var(--ice);
  border: 1px solid var(--ice-dark);
  box-shadow: none;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  font-size: 0.82rem;
}

.cta-visual-note {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.95rem;
  margin-bottom: 0;
  line-height: 1.45;
}

/* ------------------------------------------------------------
   Depoimentos
   ------------------------------------------------------------ */
.testimonials {
  padding: 6.5rem 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.testimonial {
  background: var(--ice);
  border: 1px solid var(--ice-dark);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #f5a623;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

.testimonial blockquote {
  font-size: 0.95rem;
  color: var(--graphite-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--ice-dark);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial figcaption strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial figcaption span {
  font-size: 0.8rem;
  color: var(--graphite-soft);
}

/* ------------------------------------------------------------
   Contato
   ------------------------------------------------------------ */
.contact {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--ice), var(--white) 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-channels {
  display: grid;
  gap: 1rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--ice-dark);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

a.contact-channel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 124, 134, 0.4);
}

.contact-channel-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.contact-channel-icon.wa {
  background: #e7f9ef;
  color: #1eb858;
}

.contact-channel strong {
  display: block;
  font-size: 0.98rem;
}

.contact-channel span {
  font-size: 0.87rem;
  color: var(--graphite-light);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--ice-dark);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ice-dark);
  border-radius: var(--radius-sm);
  background: var(--ice);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--graphite);
  transition: border-color var(--transition), box-shadow var(--transition),
    background-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14, 124, 134, 0.12);
}

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

.contact-form .btn {
  margin-top: 0.4rem;
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--graphite-soft);
  text-align: center;
}

.form-note i {
  color: var(--orange);
}

.form-note i.fa-whatsapp {
  color: #1eb858;
}

.form-note a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note a:hover {
  color: var(--orange-dark);
}

.lgpd-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--graphite-light);
  margin: 0 0 1.15rem;
  cursor: pointer;
}

.lgpd-check input {
  margin-top: 0.18rem;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.lgpd-check a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq {
  padding: 6.5rem 0;
  background: var(--white);
}

.faq-list {
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: var(--ice);
  border: 1px solid var(--ice-dark);
  border-radius: var(--radius);
  padding: 0.2rem 0;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(14, 124, 134, 0.4);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  color: var(--graphite);
}

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

.faq-item summary i {
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
}

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

.faq-item p {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.92rem;
  color: var(--graphite-light);
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  background: linear-gradient(180deg, var(--teal-deep) 0%, #071e29 100%);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 4.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand p {
  margin: 1.1rem 0 1.4rem;
  font-size: 0.9rem;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand .nav-logo-text {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: var(--brand-grad);
  transform: translateY(-4px);
}

.footer-col h3 {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul li a:hover {
  color: var(--aqua-soft);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact i {
  color: var(--aqua);
  flex-shrink: 0;
}

.footer-contact a:hover {
  color: var(--aqua-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom i.fa-heart {
  color: var(--aqua);
}

/* ------------------------------------------------------------
   Botão flutuante do WhatsApp
   ------------------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  z-index: 950;
  transition: transform var(--transition);
  animation: wa-blink 1.6s ease-in-out infinite;
}

.whatsapp-float i {
  position: relative;
  z-index: 1;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  z-index: 0;
  animation: wa-pulse 1.6s ease-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  animation-play-state: paused;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

@keyframes wa-blink {
  0%, 92%, 100% { background-color: #25d366; }
  94%, 98% { background-color: #4ce687; }
}

/* ------------------------------------------------------------
   Voltar ao topo
   ------------------------------------------------------------ */
.back-to-top {
  position: fixed;
  bottom: 5.7rem;
  right: 1.75rem;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: var(--graphite);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition),
    background-color var(--transition);
  z-index: 900;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--orange);
}

/* ------------------------------------------------------------
   Pop-up de cookies
   ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 1.6rem;
  right: 5.4rem;
  bottom: 1.6rem;
  z-index: 999;
  background: var(--white);
  border: 1px solid var(--ice-dark);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(45, 52, 54, 0.28);
  padding: 1.1rem 1.3rem;
  animation: cookie-in 0.4s ease-out;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  flex: 1;
}

.cookie-banner-text i {
  font-size: 1.4rem;
  color: var(--orange);
  margin-top: 0.1rem;
}

.cookie-banner-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--graphite-light);
  margin: 0;
}

.cookie-banner-text strong {
  color: var(--graphite);
}

.cookie-banner-text a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.15rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition);
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 8px 18px rgba(14, 124, 134, 0.35);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(14, 124, 134, 0.45);
}

.cookie-btn-reject {
  background: var(--ice);
  color: var(--graphite);
  border: 1px solid var(--ice-dark);
}

.cookie-btn-reject:hover {
  background: var(--ice-dark);
}

@keyframes cookie-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------
   Página de obrigado (conversão)
   ------------------------------------------------------------ */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem;
  background:
    radial-gradient(60rem 60rem at 85% -10%, rgba(14, 124, 134, 0.14), transparent 60%),
    var(--white);
}

.thanks-card {
  max-width: 480px;
  width: 100%;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--ice-dark);
  border-radius: var(--radius);
  padding: 2.6rem 2.2rem;
  box-shadow: var(--shadow-lg);
}

.thanks-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.6rem;
}

.thanks-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.thanks-card h1 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 0.8rem;
}

.thanks-card > p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--graphite-light);
  margin-bottom: 1.8rem;
}

.thanks-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.thanks-note {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--graphite-soft);
  margin: 1.4rem 0 0;
}

.thanks-note a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#obrigado-redirect-note {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

#obrigado-redirect-note[hidden] {
  display: none;
}

/* ------------------------------------------------------------
   Responsivo
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-grid,
  .features-grid,
  .cta-band-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero {
    padding-top: 8rem;
    text-align: left;
  }

  .hero-visual {
    max-width: 560px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 82%);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem 2.2rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 998;
  }

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

  .nav-link {
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 999;
  }

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

  .services-grid,
  .testimonials-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-mockup-wrap {
    transform: none;
  }

  .cta-visual-card,
  .cta-visual-card:hover {
    transform: none;
  }

  .mockup-float-1 {
    left: 8px;
  }

  .mockup-float-2 {
    right: 8px;
  }

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

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

  .features-visual > img {
    height: 340px;
  }

  .features-float-card {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: 100%;
    padding-inline: 15px;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

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

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-social-proof {
    flex-direction: column;
    gap: 0.6rem;
  }

  .whatsapp-float {
    bottom: 1.1rem;
    right: 1.1rem;
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
  }

  .back-to-top {
    bottom: 5.2rem;
    right: 1.25rem;
  }

  .cookie-banner {
    left: 0.7rem;
    right: 4.7rem;
    bottom: 1.1rem;
    padding: 0.95rem 1rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .cookie-banner-actions {
    gap: 0.5rem;
  }

  .cookie-btn {
    width: 100%;
    justify-content: center;
    padding: 0.55rem 0.8rem;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .pains-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .pains-grid {
    grid-template-columns: 1fr;
  }

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

/* ------------------------------------------------------------
   Prefers Reduced Motion
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .animate-in {
    opacity: 1;
    transform: none;
  }
}