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

:root {
  --navy-deep: #060d1a;
  --navy-base: #0b1628;
  --navy-mid: #0f1e36;
  --navy-surface: #132240;
  --navy-border: #1e3255;
  --navy-hover: #243b63;
  --gold: #f0c040;
  --gold-dim: rgba(240, 192, 64, 0.12);
  --white: #ffffff;
  --text-muted: #8ea5c7;
  --text-dim: #536b90;
  --green-bg: #0a2a1e;
  --green-border: #1a4a30;
  --green-text: #4caf87;
}

html,
body {
  background: var(--navy-base);
  color: var(--white);
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-logo,
.footer-logo,
.section-title {
  font-family: "Mulish", sans-serif;
}

p,
span,
div,
a,
button {
  font-family: "Roboto", sans-serif;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 32px;
  background: var(--navy-deep);
  border-bottom: 0.5px solid var(--navy-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--gold);
  color: #111;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  font-weight: 700;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-btn:hover {
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    color: var(--white);
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    margin-top: 12px;
  }

  .nav-links.active {
    display: flex;
  }
}

/* HERO */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero {
  background: var(--navy-base);
  padding: 64px 20px 56px; /* ↓ diminuí lateral */
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-surface);
  border: 0.5px solid var(--navy-border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.7);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 15px;
  color: #e4e9f2; /* branco suavizado */
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 960px;
}

.hero-sub strong {
  color: #ffffff;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #111;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.hero-right {
  flex: 0 0 auto;
}

/* PLATFORMS */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.platform-card {
  background: rgba(19, 34, 64, 0.75);
  border: 0.5px solid var(--navy-border);
  border-radius: 14px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 96px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  animation: platformFloat 3s ease-in-out infinite;
}

.platform-card:nth-child(1) {
  animation-delay: 0s;
}

.platform-card:nth-child(2) {
  animation-delay: 0.4s;
}

.platform-card:nth-child(3) {
  animation-delay: 0.8s;
}

.platform-card:nth-child(4) {
  animation-delay: 1.2s;
}

.platform-card:nth-child(5) {
  animation-delay: 1.6s;
}

.platform-card:nth-child(6) {
  animation-delay: 2s;
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: var(--navy-hover);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.platform-name {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.p-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.p-fb {
  background: #1877f2;
}

.p-tt {
  background: #111827;
  border: 0.5px solid #333;
}

.p-yt {
  background: #ff0000;
}

.p-em {
  background: #2a4a72;
}

.p-wa {
  background: #25d366;
}

.divider {
  height: 1px;
  background: var(--navy-border);
  margin: 0 32px;
}

@keyframes platformFloat {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-6px) translateX(2px);
  }
  50% {
    transform: translateY(-12px) translateX(0px);
  }
  75% {
    transform: translateY(-6px) translateX(-2px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

/* SEÇÕES */
.section {
  padding: 52px 32px;
  background: var(--navy-base);
}

.section-label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}

/* CAROUSEL */
.carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.client-card {
  flex: 0 0 auto;
  width: 140px;
  background: transparent;
  border: none;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

.client-card:hover {
  transform: translateY(-3px);
}

.client-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.client-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(
    135deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: #111;
  border: 3px solid #111;
}

.client-user {
  font-size: 11px;
  background: var(--green-bg);
  color: var(--green-text);
  border: 0.5px solid var(--green-border);
  border-radius: 20px;
  padding: 4px 10px;
  font-weight: 700;
  text-align: center;
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clientes-window {
  background: var(--navy-surface);
  border: 0.5px solid var(--navy-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.clientes-window-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(6, 13, 26, 0.85);
  border-bottom: 0.5px solid var(--navy-border);
}

.clientes-window-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.clientes-window-body .hero-badge {
  margin-bottom: 10px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.clientes-window-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.clientes-window-body {
  padding: 18px 16px 14px;
}

/* ALERTA INSTAGRAM */
.instagram-alert {
  background: var(--navy-mid);
  padding: 60px 32px;
  border-top: 0.5px solid var(--navy-border);
  border-bottom: 0.5px solid var(--navy-border);
}

.instagram-alert-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.instagram-alert-left {
  flex: 1.9;
}

.instagram-alert-right {
  flex: 1.1;
}

.instagram-alert-left h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--white);
}

.instagram-alert-left h2 span {
  color: var(--gold);
}

.instagram-alert-left h2 strong,
.instagram-alert-left strong {
  color: var(--white);
}

.instagram-alert-left p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* LISTA COM BOLINHAS ANIMADAS */
.alert-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbe7f7;
  font-size: 14px;
  font-weight: 500;
}

.alert-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: alertDotColor 3s infinite;
}

.alert-item:nth-child(1) .alert-dot {
  animation-delay: 0s;
}
.alert-item:nth-child(2) .alert-dot {
  animation-delay: 0.7s;
}
.alert-item:nth-child(3) .alert-dot {
  animation-delay: 1.4s;
}
.alert-item:nth-child(4) .alert-dot {
  animation-delay: 2.1s;
}

@keyframes alertDotColor {
  0% {
    background: #25d366;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.8);
  }
  33% {
    background: #f0c040;
    box-shadow: 0 0 8px rgba(240, 192, 64, 0.8);
  }
  66% {
    background: #ff4d4f;
    box-shadow: 0 0 8px rgba(255, 77, 79, 0.8);
  }
  100% {
    background: #25d366;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.8);
  }
}

/* JANELA DE SERVIÇO */
.instagram-alert-card {
  background: var(--navy-surface);
  border: 0.5px solid var(--navy-border);
  border-radius: 18px;
  overflow: hidden;
  display: block;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);

  max-width: 480px;
  margin-left: auto;
}

.service-window-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(6, 13, 26, 0.85);
  border-bottom: 0.5px solid var(--navy-border);
}

.service-window-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-window-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.service-status {
  margin: 24px 28px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid var(--navy-border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.service-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: serviceStatusColor 2.4s infinite;
}

@keyframes serviceStatusColor {
  0% {
    background: #25d366;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.8);
  }
  50% {
    background: #f0c040;
    box-shadow: 0 0 8px rgba(240, 192, 64, 0.8);
  }
  100% {
    background: #25d366;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.8);
  }
}

/* CONTEÚDO DA JANELA */
.alert-content {
  padding: 24px 28px 28px;
}

.service-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.alert-content h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 800;
}

.alert-content ul {
  list-style: none;
  margin-bottom: 24px;
}

.alert-content li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 13px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
  font-weight: 500;
}

.alert-content li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 8px;
}

.instagram-alert-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #111;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.instagram-alert-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .instagram-alert-container {
    flex-direction: column;
  }

  .instagram-alert-left,
  .instagram-alert-right {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .instagram-alert {
    padding: 48px 20px;
  }

  .instagram-alert-left h2 {
    font-size: 28px;
  }

  .service-window-title {
    font-size: 11px;
  }

  .alert-content {
    padding: 22px;
  }

  .alert-content h3 {
    font-size: 22px;
  }

  .instagram-alert-btn {
    width: 100%;
    justify-content: center;
  }
}

/* CTA STRIP */
/* CTA STRIP */
.cta-strip {
  background: var(--navy-mid);
  border-top: 0.5px solid var(--navy-border);
  border-bottom: 0.5px solid var(--navy-border);
  padding: 60px 32px;
  text-align: center;
}

.cta-strip h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-strip h2 span {
  color: var(--gold);
}

.cta-strip p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: #111;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.cta-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* MARKETPLACES */
.section-divider {
  height: 40px;
  background: linear-gradient(to bottom, var(--navy-mid), var(--navy-deep));
}

.marketplaces {
  background: var(--navy-mid);
  padding: 60px 32px;
  border-top: 0.5px solid var(--navy-border);
  margin-top: 0;
}

.marketplaces-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.marketplaces .platform-card {
  background: rgba(19, 34, 64, 0.9);
}

.marketplaces-left {
  flex: 1;
  max-width: 600px;
}

.marketplaces-left h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.marketplaces-left p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.marketplaces-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #111;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.marketplaces-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.marketplaces-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.marketplaces .hero-badge {
  background: rgba(255, 255, 255, 0.04);
}

.marketplaces-right .platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 420px;
}

/* ÍCONES MARKETPLACES */
.p-ml {
  background: #ffe600;
  color: #111;
}

.p-am {
  background: #ff9900;
  color: #111;
}

.p-sh {
  background: #ee4d2d;
  color: #fff;
}

@media (max-width: 900px) {
  .marketplaces-container {
    flex-direction: column;
    text-align: center;
  }

  .marketplaces-left {
    max-width: 100%;
  }

  .marketplaces-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .marketplaces-right .platforms-grid {
    max-width: 320px;
  }
}

@media (max-width: 500px) {
  .marketplaces {
    padding: 48px 20px;
  }

  .marketplaces-left h2 {
    font-size: 24px;
  }

  .marketplaces-btn {
    width: 100%;
    justify-content: center;
  }
}

/* EMPRESA */
.empresa {
  background: var(--navy-deep);
  padding: 60px 32px;
}

.empresa-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.empresa-left {
  flex: 1;
  max-width: 520px;
}

.empresa-left h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.empresa-left p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.empresa-desc-final {
  margin-bottom: 28px;
}

.empresa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.empresa-btn:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

/* DIREITA */
.empresa-right {
  flex: 1;
}

/* CHECKLIST */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(19, 34, 64, 0.6);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.check-item:hover {
  border-color: var(--navy-hover);
  transform: translateX(4px);
}

.check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check-dot-inner {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-text);
}

.check-text {
  font-size: 13px;
  color: #c8d8ee;
  line-height: 1.5;
}

/* COMO FUNCIONA */
.como {
  background: var(--navy-base);
  padding: 52px 32px;
}

.como-inner {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.como-left {
  flex: 1.2;
}

.como-right {
  flex: 0.8;
}

/* CARD ESQUERDA */
.steps-card {
  background: var(--navy-surface);
  border: 0.5px solid var(--navy-border);
  border-radius: 12px;
  padding: 22px;
  height: 100%;
}

.steps-card h2 {
  font-size: 28px; /* antes 24 */
  font-weight: 800;
  margin-bottom: 26px;
}

/* CARD DIREITA - MANTENDO TOM ORIGINAL */
.canais-card {
  background: var(--navy-surface);
  border: 0.5px solid var(--navy-border);
  border-radius: 12px;
  padding: 22px;
  height: 100%;
}

.canais-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-top: 14px;
  margin-bottom: 18px;
}

/* STEPS */
.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 16px;
}

.step-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-connector {
  width: 1px;
  background: var(--navy-border);
  flex: 1;
  min-height: 24px;
  margin: 4px 0;
}

.step-content {
  padding-bottom: 20px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #e8f0fb;
  margin-bottom: 4px;
  margin-top: 4px;
}

.step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* BOTÃO */
.como-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: #111;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.como-cta:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* CANAIS */
.canal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--navy-border);
}

.canal-item:last-child {
  border-bottom: none;
}

.canal-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.canal-whatsapp {
  background: #25d366;
}

.canal-type {
  font-size: 11px;
  color: var(--text-dim);
}

.canal-val {
  font-size: 13px;
  color: #c8d8ee;
  font-weight: 500;
}

.official-note {
  display: inline-block;

  margin-top: 24px;

  padding: 12px 16px;
  border-radius: 10px;

  background: var(--gold);
  color: #111;

  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;

  box-shadow: 0 8px 20px rgba(240, 192, 64, 0.25);
}

.contact-alert {
  margin: 14px 0;
  padding: 12px 14px;

  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--gold);
  border-radius: 8px;

  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.canal-email {
  background: rgba(240, 192, 64, 0.12);
  color: var(--gold);
  font-weight: 800;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .como-inner {
    flex-direction: column;
  }

  .como-left,
  .como-right {
    flex: 1;
  }
}

@media (max-width: 500px) {
  .como {
    padding: 48px 20px;
  }

  .steps-card,
  .canais-card {
    padding: 20px;
  }

  .steps-card h2,
  .canais-card h3 {
    font-size: 22px;
  }

  .como-cta {
    width: 100%;
  }
}

/* DIFERENCIAIS */
.dif {
  background: var(--navy-deep);
  padding: 60px 32px;
}

.dif-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dif-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.dif-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.dif-header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* GRID MAIS COMPACTO */
.dif-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* CARD MAIS COMPACTO */
.dif-card {
  background: var(--navy-surface);
  border: 0.5px solid var(--navy-border);
  border-radius: 12px;
  padding: 16px;
  transition:
    border-color 0.2s,
    transform 0.2s;

  display: flex;
  flex-direction: column;
}

/* HOVER SUAVE */
.dif-card:hover {
  border-color: var(--navy-hover);
  transform: translateY(-2px);
}

/* ÍCONE */
.dif-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-mid);
  border: 0.5px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

/* TÍTULO */
.dif-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fbe8e8;
  margin-bottom: 6px;
}

/* TEXTO */
.dif-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .dif {
    padding: 48px 20px;
  }

  .dif-header {
    margin-bottom: 32px;
  }

  .dif-header h2 {
    font-size: 24px;
  }

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

/* FOOTER */
.footer {
  background: var(--navy-deep);
  border-top: 0.5px solid var(--navy-border);
  padding: 40px 32px 28px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-security {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
}

.footer-contact h4,
.footer-social h4,
.footer-warning h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-contact p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-link {
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px dashed var(--navy-border);
}

.footer-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-social-link:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.footer-social-icon.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.footer-social-icon.whatsapp {
  background: #25d366;
}

.footer-warning {
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid var(--navy-border);
}

.footer-warning p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-warning p:last-child {
  margin-bottom: 0;
}

.footer-divider {
  max-width: 1200px;
  margin: 24px auto 18px;
  height: 1px;
  background: var(--navy-border);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-contact p {
  color: var(--text-muted);
}

.footer-contact:hover p {
  color: #25d366;
}

.footer-contact:hover .footer-link {
  color: var(--white);
}

/* RESPONSIVO FOOTER */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-security {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 32px 20px 24px;
  }

  .footer-warning {
    padding: 16px;
  }
}

/* RESPONSIVO */

/* TABLET / NOTEBOOK */
@media (max-width: 900px) {
  .hero {
    padding: 48px 20px;
  }

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

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav-btn {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-text {
    text-align: left;
  }
}

/* MOBILE PEQUENO */
@media (max-width: 500px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
  }

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

  .platform-card {
    width: 100%;
    animation: none; /* remove animação no mobile */
  }
}

@media (max-width: 768px) {
  .cta-strip {
    padding: 48px 20px;
  }

  .cta-strip h2 {
    font-size: 28px;
  }

  .cta-btn {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .cta-strip h2 {
    font-size: 24px;
  }

  .cta-strip p {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .empresa-inner {
    flex-direction: column;
    gap: 32px;
  }

  .empresa-left,
  .empresa-right {
    max-width: 100%;
  }

  .empresa-left h2 {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .empresa {
    padding: 48px 20px;
  }

  .empresa-btn {
    width: 100%;
    justify-content: center;
  }
}

.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;

  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;

  animation: whatsappFloat 2.2s ease-in-out infinite;
}

.whatsapp-button img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.whatsapp-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

@keyframes whatsappFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 500px) {
  .whatsapp-button {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-button img {
    width: 30px;
    height: 30px;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy-surface);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;

  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;

  transition: all 0.25s ease;

  border: 0.5px solid var(--navy-border);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* setinha do tooltip */
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);

  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--navy-surface);
}

/* aparecer no hover */
.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* ================================= */
/* ATENDIMENTO POR VIDEOCHAMADA */
.video-meeting {
  padding: 80px 32px;
  background: var(--navy-mid);
}

.video-meeting-container {
  max-width: 1200px;
  margin: 0 auto;
}

.video-meeting-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.video-meeting-header .hero-badge {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
}

.video-meeting-header p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.video-meeting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-meeting-card {
  background: var(--navy-surface);
  border: 0.5px solid var(--navy-border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.video-meeting-card-featured {
  border-color: rgba(240, 192, 64, 0.25);
}

.video-meeting-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.video-meeting-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.7);
  animation: videoMeetingPulse 2.5s infinite;
}

@keyframes videoMeetingPulse {
  0%,
  100% {
    background: #25d366;
  }

  50% {
    background: var(--gold);
  }
}

.video-meeting-card-top h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.video-meeting-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.video-meeting-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.video-meeting-checks .check-item {
  padding: 13px 15px;
}

.video-meeting-checks .check-text {
  color: #c8d8ee;
  font-size: 13px;
}

.video-meeting-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--gold);
  color: #111;
  padding: 15px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.video-meeting-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

@media (max-width: 900px) {
  .video-meeting-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .video-meeting {
    padding: 60px 20px;
  }

  .video-meeting-card {
    padding: 24px;
  }
}
