:root {
  --primary: #13436b;
  --primary-dark: #0d314e;
  --accent: #f5485d;
  --accent-hover: #df3d51;
  --gold: #ffb446;
  --text: #1f2937;
  --text-soft: #5f6b7a;
  --white: #ffffff;
  --bg-light: #f7f9fc;
  --border: #e7edf4;
  --shadow: 0 12px 30px rgba(19, 67, 107, 0.10);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  transition: 0.25s ease;
}

/* ================= HEADER ================= */
.header-wrapper {
  background: rgba(19, 67, 107, 0.96);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: auto;
  max-width: 210px;
}

.buttons,
.buttons_planos {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.buttons a,
.buttons_planos a {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-entrar {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--gold);
}

.btn-entrar:hover {
  background: #f6f8fb;
  transform: translateY(-1px);
}

.btn-testar {
  background-color: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}

.btn-testar:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 12px;
  }

  .logo img {
    max-width: 170px;
  }

  .buttons {
    justify-content: center;
  }
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5b8e 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px 70px;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  margin: 10px 0 20px;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 900;
}

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

.hero .subtext {
  font-size: 19px;
  margin: 0 auto 30px;
  max-width: 900px;
  color: rgba(255, 255, 255, 0.94);
}

.hero .banner {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.hero-banner-img {
  max-width: 900px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-btn {
  background-color: var(--accent);
  color: var(--white);
  padding: 16px 34px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 12px 28px rgba(245, 72, 93, 0.32);
}

.hero-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 16px 50px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .subtext {
    font-size: 16px;
  }

  .hero-banner-img {
    max-width: 100%;
    border-radius: 14px;
  }
}

/* ================= SECTION PILOTO ================= */
.section-piloto {
  background-color: var(--bg-light);
  padding: 80px 20px;
  color: var(--text);
}

.section-piloto .content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-piloto h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 50px;
  color: var(--primary);
  font-weight: 800;
}

.section-piloto h2 span {
  color: var(--accent);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* cards somente da seção de funcionalidades */
.section-piloto .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  box-shadow: var(--shadow);
}

.section-piloto .card:hover {
  transform: translateY(-4px);
}

.section-piloto .card img {
  height: 60px;
  margin: 0 auto 15px;
}

.section-piloto .card h3 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.35;
  color: var(--primary);
}

.section-piloto .card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-piloto {
    padding: 60px 16px;
  }

  .section-piloto h2 {
    font-size: 30px;
    margin-bottom: 35px;
  }
}

/* ================= PLANOS ================= */
.planos-fiel {
  background: linear-gradient(135deg, var(--primary) 0%, #184e7c 100%);
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
}

.planos-fiel h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 40px;
  text-transform: uppercase;
  line-height: 1.3;
}

.planos-fiel h2 span {
  color: var(--gold);
}

.planos-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* cards somente da seção planos */
.planos-fiel .card {
  background-color: var(--white);
  color: var(--text);
  border-radius: 20px;
  padding: 28px 26px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.planos-fiel .card h3 {
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 800;
}

.planos-fiel .card .preco {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 24px;
  line-height: 1.4;
}

.planos-fiel .card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0 0 10px;
  width: 100%;
}

.planos-fiel .card li {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text);
}

.planos-fiel .card li i {
  color: #18a957;
  margin-right: 8px;
}

.planos-fiel .card .btn {
  background-color: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.planos-fiel .card .icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 12px;
}

.planos-fiel .card.destaque {
  border: 3px solid var(--accent);
}

.planos-fiel .card .selo {
  position: absolute;
  top: -10px;
  background-color: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 10px;
  transform: translateY(-50%);
}

.lembrete_zap {
  max-width: 1000px;
  margin: 26px auto 0;
}

.lembrete_zap h2 {
  font-size: 13px !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  margin: 8px 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .planos-fiel {
    padding: 60px 16px;
  }

  .planos-fiel h2 {
    font-size: 30px;
  }

  .planos-fiel .card {
    max-width: 100%;
  }

  .lembrete_zap h2 {
    font-size: 12px !important;
  }
}

/* ================= CLIENTES ================= */
.clientes-section {
  position: relative;
  background: var(--bg-light);
  padding: 80px 20px;
  overflow: hidden;
}

.clientes-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 249, 252, 0.9);
  z-index: 1;
}

.clientes-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.clientes-container h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 40px;
}

.clientes-container h2 span {
  color: var(--accent);
}

.clientes-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.clientes-slide {
  flex: 0 0 80%;
  margin: 0 auto;
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.clientes-slide p {
  font-size: 17px;
  margin-bottom: 20px;
  color: var(--text-soft);
  line-height: 1.8;
}

.clientes-slide h4 {
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.clientes-controls {
  margin-top: 20px;
}

.clientes-controls button {
  font-size: 36px;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
}

@media (min-width: 768px) {
  .clientes-slide {
    flex: 0 0 33.3333%;
  }
}

/* ================= NOSSOS NÚMEROS ================= */
.nossos-numeros {
  background: linear-gradient(135deg, var(--primary) 0%, #1b5d93 100%);
  text-align: center;
  padding: 80px 20px;
}

.nossos-numeros h2 {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 40px;
}

.nossos-numeros h2 span {
  color: var(--gold);
}

.numeros-container {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.numero-item {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 26px 24px;
  min-width: 220px;
  backdrop-filter: blur(8px);
}

.contador {
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
}

.numero-item p {
  font-size: 17px;
  font-weight: 500;
  margin: 8px 0 0;
}

@media (max-width: 768px) {
  .nossos-numeros h2 {
    font-size: 30px;
  }

  .contador {
    font-size: 34px;
  }

  .numero-item {
    width: 100%;
    max-width: 320px;
  }
}

/* ================= MARCAS PARCEIRAS ================= */
.marcas-parceiras {
  background: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.marcas-parceiras h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 30px;
}

.marcas-parceiras h2 span {
  color: var(--accent);
}

.carousel-wrapper {
  position: relative;
  max-width: 960px;
  height: 120px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 0 10px;
  box-sizing: border-box;
}

.slide img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  opacity: 0.95;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

@media (max-width: 600px) {
  .arrow {
    font-size: 30px;
  }

  .marcas-parceiras h2 {
    font-size: 28px;
  }
}

/* ================= FAQ ================= */
.faq {
  padding: 80px 20px;
  background-color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.faq h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  text-align: left;
  margin-bottom: 40px;
}

.faq h2 span {
  color: var(--accent);
}

.faq-item {
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  background-color: #ffffff;
  color: var(--primary);
  border: 1px solid #d8e3ef;
  font-weight: 700;
  padding: 16px 20px;
  font-size: 16px;
  text-align: left;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.faq-question:hover {
  background-color: #f7f9fc;
  border-color: #b8cade;
}

.faq-answer {
  display: none;
  padding: 14px 20px;
  background-color: #ffffff;
  border-left: 4px solid var(--accent);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-top: 8px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
}

.faq-item.active .faq-answer {
  display: block;
}

/* ================= SEO TEXTO ================= */
.seo-texto h2 {
  color: var(--primary);
  font-size: 34px;
  font-weight: 800;
}

.seo-texto p {
  color: var(--text-soft);
}

/* ================= RODAPÉ ================= */
.rodape {
  background-color: var(--primary);
  padding: 55px 20px;
  text-align: center;
}

.rodape-container {
  max-width: 1000px;
  margin: 0 auto;
}

.rodape img {
  width: 200px;
  margin: 0 auto 20px;
}

.rodape p,
.rodape .redes-sociais-info p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 18px;
  line-height: 1.8;
}

.redes-sociais a {
  color: #ffffff;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}

.redes-sociais a:hover {
  color: var(--gold);
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 34px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

/* ================= UTILITÁRIOS ================= */
.icon-top {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}