
/* Hero lead form styling */
.hero-lead-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
  margin: 1rem auto 0;
  width: 100%;
  max-width: 900px;
}
.hero-lead-form input {
  flex: 1 1 200px;
  padding: 10px 12px;
  border: 1px solid #dde3ea;
  border-radius: 6px;
  font-size: 1rem;
}
/* Ensure button aligns with inputs on wide screens */
.hero-lead-form button {
  flex: 0 0 auto;
  align-self: center;
  padding: 12px 24px;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .hero-lead-form {
    flex-wrap: wrap;
  }
  .hero-lead-form button {
    flex: 1 1 100%;
    margin-top: 12px;
  }
}
/* Importa a fonte “Montserrat” */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
  transition: background .2s, transform .2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(90deg, #39a8f1 0%, #0052cc 100%);
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(57, 168, 241, 0.39);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #0052cc 0%, #39a8f1 100%);
  box-shadow: 0 6px 20px rgba(57, 168, 241, 0.45);
  transform: translateY(-2px);
}
.btn-secondary {
  background: #e0f7ff;
  color: #0052cc;
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.btn-secondary:hover {
  background: #c0eefe;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo {
  height: 36px;
}

/* Hero – estilo moderno em caixa alta */
/* .hero-inner {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
} */

/* Hero Redesigned */
.hero {
  padding: 120px 0 60px; /* move content down to clear the header */
  background: linear-gradient(135deg, #f5fcff 0%, #ffffff 100%);
}

/* Center hero content */
.hero-inner,
.hero .hero-content {
  text-align: center;
}

/* Ensure headline is centered and margin reset */
.hero h1 {
  margin: 0 auto 0.5rem;
  white-space: normal;
  word-break: break-word;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .hero h1 {
    font-size: 1.8rem;
  }
}
.hero p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Hero form inline styling */
.hero-form-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 1rem auto 0;
  max-width: 600px;    /* limit overall width */
  width: 90%;          /* responsive width */
}
.hero-form-inline input {
  flex: 1 1 140px; /* reduce base width */
  padding: 10px;
  border: 1px solid #dde3ea;
  border-radius: 6px;
  font-size: 1rem;
}
/* Ensure inputs stay on first line */
.hero-form-inline input {
  order: 1;
}
/* Smaller width for telefone field */
.hero-form-inline input[name="telefone"] {
  flex: 0 0 100px;
}
.hero-form-inline button {
  order: 2;
  flex: 0 0 auto;
  flex-basis: 100%;      /* force new row */
  margin: 0 auto;        /* center button */
  padding: 8px 16px;
  background: #0052cc;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero-form-inline button:hover {
  background: #0041a8;
  transform: translateY(-2px);
}
.hero-form-note {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #666;
}

.hero .btn-primary {
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

/* Social Proof */
.social-proof {
  padding: 50px 0;
  text-align: center;
}
.social-proof p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.social-proof .logos {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-proof .logos img {
  max-height: 40px;
  opacity: 0.7;
  transition: opacity .2s, transform .2s;
}
.social-proof .logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Conteúdo Detalhado */
.content-block {
  padding: 60px 0;
}
.content-block.alt {
  background: #f9f9f9;
}
.content-block .container.flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.content-block .content-img,
.content-block .content-text {
  flex: 1;
  min-width: 300px;
}
.content-block .content-img img {
  width: 100%;
  max-width: 240px;
  border-radius: 8px;
  transition: transform .3s, filter .3s;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.content-block .content-img img:hover {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
}
.content-block .content-text h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  font-weight: 600;
}
.content-block .content-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Features Cards */
.features-cards {
  padding: 60px 0;
  background: #f4f8ff; /* subtle, modern background tone */
}
.features-cards .container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
}
.features-cards .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0,82,204,0.1);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  flex: 0 1 22%;
  max-width: 22%;
}

.features-cards .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #0052cc;
  border-radius: 2px;
}
.features-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  background: #f0f8ff;
}
.features-cards .card h3 {
  font-size: 1rem;
  color: #0052cc;
  font-weight: 600;
}

/* CTA Final */
.cta-final {
  padding: 60px 0;
  text-align: center;
  background: #e8f7ff;
}
.cta-final h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

/* Add space above the CTA button in final section */
.cta-final .btn-primary {
  margin-top: 24px;
}

/* Formulário no fim (horizontal) */
.footer-callout {
  padding: 40px 0;
  text-align: center;
  background: #f9f9f9;
}
.footer-form-horizontal {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-form-horizontal input {
  flex: 1 1 180px;
  padding: 10px;
  border: 1px solid #dde3ea;
  border-radius: 6px;
  font-size: 1rem;
}
.footer-form-horizontal button {
  padding: 10px 20px;
  background: #0052cc;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.footer-form-horizontal button:hover {
  background: #0041a8;
  transform: translateY(-2px);
}
.footer-callout small {
  font-size: 0.85rem;
  color: #666;
}

/* Footer */
.footer {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 80px;
  height: 80px;
  bottom: 40px;
  right: 20px;
  z-index: 1000;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsivo */

@media (max-width: 767px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
}


/* Ensure hero form stacks on small screens */
@media (max-width: 600px) {
  .hero-form-inline {
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-form-inline input,
  .hero-form-inline button {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Footer form also full-width inputs on mobile */
@media (max-width: 600px) {
  .footer-form-horizontal {
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-form-horizontal input,
  .footer-form-horizontal button {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Adjust hero text and layout for mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p,
  .hero-subtext {
    font-size: 0.95rem;
  }
}

/* Ensure images and content blocks shrink on small screens */
@media (max-width: 768px) {
  .content-block .container.flex {
    flex-direction: column;
    text-align: center;
  }
  .content-block .content-img img {
    max-width: 80%;
    margin: 0 auto 1rem;
  }
}
/* Main header slide-up by transform */
#main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  z-index: 100;
}
/* Hidden when scrolling */
#main-header.hidden-header {
  transform: translateY(-100%);
}

/* Floating form header: hidden off-canvas, slides down on show */
#form-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}
/* Visible after scroll stops */
#form-header.visible-header {
  transform: translateY(0);
}

/* Center content inside floating header */
#form-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

/* Modern form styles in floating header */
#form-header .container input {
  padding: 8px 12px;
  margin: 0 8px 0 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #f9f9f9;
  outline: none;
}
#form-header .container input:focus {
  border-color: rgb(0,82,204);
  background-color: #fff;
}
#form-header .container button {
  padding: 10px 20px;
  background: rgb(0,82,204);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
#form-header .container button:hover {
  background: rgb(0,72,184);
  transform: translateY(-2px);
}

/* Make all images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Constrain and center content images */
.content-img img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  object-fit: cover;
}

/* Ensure hero images scale properly */
.hero img {
  width: 100%;
  height: auto;
}

/* Reduce product listing images in tables */
table img {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Section background tones for a modern, fluid look */
.hero {
  background: linear-gradient(135deg, #f5fcff 0%, #ffffff 100%);
}

.content-block {
  background-color: #ffffff;
  transition: background-color 0.5s ease;
}

.content-block.alt {
  background-color: #f0f8ff;
}

.features-cards {
  background-color: #ffffff;
  transition: background-color 0.5s ease;
}

.features-cards.alt {
  background-color: #e8f7ff;
}

.cta-final {
  background: linear-gradient(135deg, #ffffff 0%, #e8f7ff 100%);
}

.footer-callout {
  background-color: #f7fbff;
}

.social-proof {
  background-color: #ffffff;
}


/* Benefícios do Programa de Revenda */
.benefits {
  padding: 60px 0;
  background-color: #f0f8ff;
}
.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding: 0;
}
.benefits-list li {
  position: relative;
  list-style: none;
  padding: 16px 16px 16px 28px;
  font-size: 1rem;
  color: #333;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.benefits-list li:hover {
  transform: translateY(-4px);
}
.benefits-list li::before {
  content: '✔';
  position: absolute;
  left: 12px;
  top: 16px;
  color: rgb(0,82,204);
  font-weight: bold;
}

/* Como Funciona */
.how-it-works {
  padding: 60px 0;
}
.how-it-works .steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin-top: 24px;
}
.how-it-works .steps li {
  position: relative;
  padding-left: 40px;
  margin: 12px 0;
  font-size: 1rem;
}
.how-it-works .steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgb(0,82,204);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Níveis de Parceiro */
.partner-levels {
  padding: 60px 0;
  background-color: #f0f8ff;
}
.levels-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.levels-table th,
.levels-table td {
  padding: 12px 8px;
  border: 1px solid #ddeeff;
  text-align: center;
  font-size: 0.95rem;
}
.levels-table th {
  background-color: rgb(0,82,204);
  color: #fff;
  font-weight: 600;
}
.levels-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}
.levels-table tbody tr:nth-child(odd) {
  background-color: #e8f7ff;
}

/* Projeção de Ganhos */
.revenue-projection {
  padding: 60px 0 30px;
}
/* Ensure canvas is responsive */
.revenue-projection canvas {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Garantias e Confiança */
.trust-guarantee {
  padding: 60px 0;
}
.data-logos {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}
.data-logos img {
  max-height: 48px;
  object-fit: contain;
}

/* Agende uma Chamada */
.schedule-call {
  padding: 60px 0;
  background-color: #ffffff;
}
.schedule-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}
.schedule-form input {
  flex: 1 1 200px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
}
.schedule-form button {
  padding: 10px 18px;
  background: rgb(0,82,204);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.schedule-form button:hover {
  background: rgb(0,72,184);
}

/* Rodapé Links Úteis */
.footer-links {
  margin-top: 16px;
  font-size: 0.85rem;
}
.footer-links a {
  color: rgb(0,82,204);
  text-decoration: none;
  margin: 0 8px;
}
.footer-links a:hover {
  text-decoration: underline;
}


/* KPI Cards com Contadores Animados */
.kpi-cards {
  padding: 30px 0 60px;
  background-color: #ffffff;
}
.kpi-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
  margin-top: 24px;
}
.kpi-card {
  flex: 1 1 200px;
  background: #f9f9f9;
  padding: 24px 16px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.kpi-card:hover {
  transform: translateY(-4px);
}
.kpi-card p {
  margin-top: 8px;
  font-size: 1rem;
  color: #555;
}
.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(0,82,204);
}
/* KPI Cards com Contadores Animados */
.kpi-cards {
  padding: 30px 0 60px;
  background-color: #ffffff;
}
.kpi-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
  margin-top: 24px;
}
.kpi-card {
  flex: 1 1 200px;
  background: #f9f9f9;
  padding: 24px 16px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.kpi-card:hover {
  transform: translateY(-4px);
}
.kpi-card p {
  margin-top: 8px;
  font-size: 1rem;
  color: #555;
}
.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(0,82,204);
}

/* Espaço de separação entre KPI Cards e Agende uma Chamada */
.kpi-cards {
  margin-bottom: 2rem !important;
  padding-bottom: 0 !important;
}
.schedule-call {
  margin-top: 2rem !important;
  padding-top: 0 !important;
}
/* === Features Cards — variação .features-cards--compact === */
.features-cards--compact {
  padding: 20px 0;
  background: #f4f8ff;
}
.features-cards--compact .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding: 0;
}
.features-cards--compact .card {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 6px;
  flex: initial;
  max-width: initial;
  border: 1px solid rgba(0,82,204,0.1);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.features-cards--compact .card::before {
  display: none;
}
.features-cards--compact .card h3 {
  margin: 0;
  line-height: 1.2;
  font-size: 0.95rem;
  color: #0052cc;
  font-weight: 600;
}
@media (max-width: 768px) {
  .features-cards--compact { padding: 16px 0; }
  .features-cards--compact .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .features-cards--compact .container { gap: 10px; }
  .features-cards--compact .card { padding: 8px 10px; }
  .features-cards--compact .card h3 { font-size: 0.92rem; }
}




/* Depoimentos - Layout Moderno */
.testimonials__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 40px 0 0 0;
  padding: 0;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(32, 81, 133, 0.10);
  padding: 32px 28px 24px 28px;
  max-width: 440px;
  min-width: 240px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-left: 6px solid #2565ae;
  transition: box-shadow 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(32, 81, 133, 0.18);
  transform: translateY(-3px) scale(1.017);
}

.testimonial-card p {
  font-size: 1.13rem;
  color: #274366;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.07rem;
  color: #2565ae;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Responsivo para depoimentos */
@media (max-width: 900px) {
  .testimonials__list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .testimonial-card {
    width: 96vw;
    min-width: unset;
    max-width: 98vw;
    padding: 22px 12px 16px 16px;
  }
}
.testimonials__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;                   /* Mais espaçamento entre os blocos */
  margin: 48px 0 0 0;
  padding: 0;
}

.testimonial-card {
  background: linear-gradient(120deg, #f4f8ff 85%, #eaf2fb 100%);
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(0,82,204,0.12), 0 2px 8px 0 rgba(0,0,0,0.06);
  padding: 36px 32px 28px 32px;
  max-width: 480px;
  min-width: 270px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-left: 7px solid #2565ae;
  transition: box-shadow 0.35s, transform 0.3s, border 0.3s;
  margin-bottom: 16px;
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px 0 rgba(0,82,204,0.18), 0 4px 16px 0 rgba(0,0,0,0.09);
  border-left: 7px solid #00aaff;
  background: linear-gradient(120deg, #eaf6ff 85%, #d3e4f7 100%);
  transform: translateY(-5px) scale(1.02);
}

.testimonial-card p {
  font-size: 1.15rem;
  color: #233e59;
  margin-bottom: 28px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.13rem;
  color: #2565ae;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding-left: 2px;
}

/* Responsivo para depoimentos */
@media (max-width: 900px) {
  .testimonials__list {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .testimonial-card {
    width: 96vw;
    min-width: unset;
    max-width: 99vw;
    padding: 22px 12px 16px 16px;
  }
}
.testimonials__subtitle {
  display: block;
  font-size: 1.6rem;        /* aumenta o tamanho */
  font-weight: bold;        /* deixa em negrito */
  text-align: center;       /* centraliza */
  text-transform: uppercase;
  color: #2565ae;
  letter-spacing: 1px;
  margin-bottom: 18px;
  
}

.testimonials__header {
  text-align: center;
}

.testimonials__header,
.testimonials__subtitle {
  text-align: center !important;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


/* === Responsividade Geral === */

/* Layout de container full-width e padding reduzido em telas pequenas */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }
}

/* Header e botões */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 12px;
    padding: 8px 0;
  }
  .header .logo {
    height: 32px;
  }
  .header-inner .btn-primary {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Hero */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 40px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* Benefícios: grid de 1 coluna para telas menores */
@media (max-width: 600px) {
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Content blocks: empilhar colunas */
@media (max-width: 768px) {
  .content-block .container.flex {
    flex-direction: column;
    text-align: center;
  }
  .content-block.alt .container.flex,
  .content-block .container.flex {
    gap: 24px;
  }
}

/* Features cards: 2 colunas até 600px, 1 coluna até 400px */
@media (max-width: 900px) {
  .features-cards .container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .features-cards .card {
    flex: 0 1 45%;
    max-width: 45%;
    margin-bottom: 16px;
  }
}
@media (max-width: 600px) {
  .features-cards .card {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

/* Schedule form: inputs full-width */
@media (max-width: 600px) {
  .schedule-form input,
  .schedule-form button {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Footer form: inputs full-width */
@media (max-width: 600px) {
  #footer-form,
  #footer-form input,
  #footer-form button {
    width: 100%;
    max-width: 100%;
    margin-bottom: 8px;
  }
}

/* KPI cards empilham em telas pequenas */
@media (max-width: 768px) {
  .kpi-grid {
    flex-direction: column;
    align-items: center;
  }
  .kpi-card {
    width: 80%;
  }
}

/* Testimonials: stacking */
@media (max-width: 900px) {
  .testimonials__list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .testimonial-card {
    width: 90%;
    max-width: 90%;
  }
}

/* Social proof logos: diminuir gap */
@media (max-width: 600px) {
  .social-proof .logos {
    gap: 16px;
  }
  .social-proof .logos img {
    max-height: 32px;
  }
}

/* Ajustes gerais de tipografia em telas muito pequenas */
@media (max-width: 480px) {
  h1, h2, h3 {
    line-height: 1.2;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  p {
    font-size: 0.9rem;
  }
}
/* Social Proof Enhanced */
.bg-accent {
  background: linear-gradient(135deg, #e8f7ff 0%, #f0faff 100%);
}
.social-proof-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  text-align: center;
  padding: 40px 0;
}
.social-proof-item h3 {
  font-size: 2rem;
  color: #0052cc;
  margin-bottom: 8px;
  font-weight: 700;
}
.social-proof-item p {
  font-size: 1rem;
  color: #333;
}

/* Testimonials spacing tweak */
.mt-small {
  margin-top: 40px; /* reduced top margin */
}

/* Enhanced Social Proof + CTA */
.cta-section {
  padding: 60px 0;
}
.social-proof-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  text-align: center;
}
.social-proof-cta .social-proof-item h3 {
  font-size: 1.8rem;
  color: #0052cc;
  margin-bottom: 8px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.btn-large {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
}
.bg-accent {
  background: linear-gradient(135deg, #eaf6ff 0%, #ffffff 100%);
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .social-proof-cta {
    flex-direction: column;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .btn-large {
    width: 100%;
    max-width: 280px;
  }
}

/* Strong typography for major headings */
h2, h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

/* Partner CTA button spacing */
.partner-btn {
  margin-left: 12px;
  margin-top: 8px; /* move button down */
}
/* Center text for the reseller intro block */
.content-block.diff-intro .container {
  text-align: center;
}
/* Reduce gap between schedule form and reseller intro */
.schedule-call {
  padding-bottom: 20px !important;
  margin-bottom: 0 !important;
}
.content-block.diff-intro {
  padding-top: 20px !important;
}

/* Espaçamento reduzido abaixo do intro de revendedores */
.content-block.diff-intro {
  padding-top: 20px !important;
  padding-bottom: 10px !important;
}

/* Espaçamento reduzido acima dos content-blocks */
.content-block.alt,
.content-block {
  padding-top: 20px !important;
  /* Mantém um padding-bottom maior para respirabilidade em cada bloco */
  padding-bottom: 60px;
}
/* Alternate content-text colors for better contrast */
.content-block.alt .content-text h2 {
  color: #0052cc; /* blue for alt blocks */
}
.content-block.alt .content-text p {
  color: #274366; /* slightly darker blue-gray for alt block text */
}
.content-block:not(.alt) .content-text h2 {
  color: #222; /* dark charcoal for default blocks */
}
.content-block:not(.alt) .content-text p {
  color: #555; /* medium gray for default block text */
}