/* ============================================
   RESET E VARIÁVEIS CSS
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* 🎨 Paleta de Cores Shopee */
  --primary: #EE4D2D;             /* Laranja Shopee - Botões principais, CTAs */
  --primary-dark: #D63B1E;        /* Vermelho Escuro - Hover, destaques */
  --white: #FFFFFF;               /* Fundos e textos invertidos */
  --gray-light: #F9F9F9;          /* Fundos suaves e separações */
  --gray-medium: #E5E5E5;         /* Linhas divisórias e bordas */
  --text-dark: #2C2C2C;           /* Textos principais (Grafite) */
  --text-medium: #5A5A5A;         /* Texto secundário (Cinza Texto) */
  --black: #000000;               /* Ênfase e contraste */
  --whatsapp-green: #25D366;      /* Botões de ação e contato */
  --blue-highlight: #00ADEF;      /* Destaques suaves e selos de segurança */

  /* Tipografia */
  --font-headline: 'Montserrat', sans-serif;
  --font-subheadline: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}
  

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   🎨 TIPOGRAFIA
   ============================================ */

/* HEADLINES */
h1 {
  font-family: var(--font-headline);   /* Montserrat */
  font-weight: 800;                    /* ExtraBold: impacto visual */
  font-size: 40px;
  line-height: 1.0;
  letter-spacing: 1.0px;
  text-transform: uppercase;
  color: var(--text-dark);
}

h2 {
  font-family: var(--font-headline);   /* Montserrat */
  font-weight: 700;                    /* Bold firme */
  font-size: 36px;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

h3 {
  font-family: var(--font-subheadline); /* Poppins */
  font-weight: 600;                     /* Legibilidade suave */
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-medium);
}

/* CORPO DE TEXTO */
p, li {
  font-family: var(--font-body);       /* Poppins */
  font-weight: 400;                    /* Leitura confortável */
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-medium);
}

/* ============================================
   🟢 BOTÕES E CTAs
   ============================================ */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 28px;
  border: none;
  border-radius: 22px 6px 22px 6px;
  cursor: pointer;
  text-decoration: none;

  font-family: var(--font-headline);   /* Montserrat */
  font-weight: 600;                    /* Ênfase comercial */
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  transition: all 0.3s ease;
}

/* Botão principal */
.btn-primary {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Botão secundário */
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(234, 29, 44, 0.2);
}

/* Ícones dentro dos botões */
.btn-primary i,
.btn-secondary i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-primary:hover i,
.btn-secondary:hover i {
  transform: scale(1.1);
}

/* Padrão sutil de moto/entregador */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Fundo hero com gradiente e padrão sutil */
.background-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #EA1D2C, #C51222);
  z-index: 1;
}

.background-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

/* Efeito de partículas sutil */
.background-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: -1;
  opacity: 0.5;
}

/* ============================================
   1️⃣ HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0 4rem;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #EE4D2D, #D63B1E);
}

/* Header Logos Container */
.header-logos {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-logo {
  animation: fadeIn 0.6s ease-out;
  width: 180px;
  text-align: right;
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  z-index: 2;
  padding-top: 7rem; /* Add padding to move content down */
}

.hero-text {
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
}

.hero-image {
  position: relative;
  border-radius: 24px 0 24px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  animation: fadeInRight 0.8s ease-out 0.3s both;
  aspect-ratio: 4 / 3;
  max-width: 400px;
  margin: 1.5rem auto 0;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 24px 0 24px 0;
  margin-bottom: 10px;
}

/* Estilos para os selos de confiança */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trust-badge {
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 60px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.badge-icon {
  font-size: 24px;
  min-width: 32px;
  text-align: center;
  color: var(--primary);
  flex-shrink: 0;
  background: rgba(234, 29, 44, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  display: block;
  text-align: left;
}

@media (max-width: 1000px) {
  .hero-logo img{
    width: 80%;
    height: auto;
  }
}

@media (max-width: 950px) {
  .hero-text h1 {
    font-size: 2.5rem;
    margin-top: 4.5rem;
  }

}


/* Responsividade para os selos */
@media (max-width: 850px) {
  .trust-badges {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
}

.hero-text h1 {
  color: #FFFFFF;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s ease-out;
  text-align: left;
  line-height: 1.2;
  text-transform: none;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text h1:last-child {
  color: var(--primary);
  margin-bottom: 2rem;
}

.hero-text > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 90%;
  font-family: 'Poppins', sans-serif;
}

.hero-text h3 span {
  color: var(--primary);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.hero-text h3 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(234, 29, 44, 0.2);
  z-index: -1;
  border-radius: 3px;
}

.hero-text h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-medium);
}

.hero-text .btn-primary {
  animation: slideUp 0.8s ease-out 0.3s both;
  margin-bottom: 1rem;
}

/* Estilização dos selos */
.selos-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 2.5rem;
}

@media (max-width: 850px) {
  .selos-container {
    grid-template-columns: 1fr;
  }
}

.hero-text .selo {
  font-size: 0.95rem;
  color: #2E2E2E;
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  font-family: 'Poppins', sans-serif;
}

.hero-text .selo:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-text .selo i {
  color: #25D366;
  font-size: 1.1rem;
  min-width: 24px;
  text-align: center;
  background: rgba(37, 211, 102, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-img {
  display: none;
}

/* ============================================
   2️⃣ SEÇÃO DE DOR + IDENTIFICAÇÃO
   ============================================ */
.pain-section {
  background:var(--white);
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
  background-size: 20px 20px;
  padding: 5rem 0;
  position: relative;
}

.pain-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
}

.pain-column {
  display: flex;
  flex-direction: column;
}

.pain-title {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: left;
  text-shadow: 0 1px 2px rgba(212, 175, 55, 0.2);
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  animation: slideInLeft 0.6s ease-out;
  animation-fill-mode: both;
  transition: transform 0.2s ease;
}

.pain-item:hover {
  transform: translateX(5px);
}

.pain-item:nth-child(1) { animation-delay: 0.1s; }
.pain-item:nth-child(2) { animation-delay: 0.2s; }
.pain-item:nth-child(3) { animation-delay: 0.3s; }
.pain-item:nth-child(4) { animation-delay: 0.4s; }
.pain-item:nth-child(5) { animation-delay: 0.5s; }

.pain-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-icon svg {
  color: var(--primary);
  width: 100%;
  height: 100%;
}

.pain-divider {
  width: 4px;
  background: var(--blue-primary);
  border-left: 2px solid var(--blue-primary);
  border-right: 2px solid var(--blue-primary);
  height: 100%;
  min-height: 400px;
  align-self: stretch;
  box-shadow: 0 0 0 1px rgba(0, 46, 154, 0.2);
}

.pain-solution {
  gap: 2rem;
}

.pain-solution .pain-item {
  margin-bottom: 0;
}

.pain-description {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-top: 1rem;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.pain-description span {
  color: var(--primary);
  font-weight: 800;
}

.pain-section .btn-secondary {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ============================================
   SEÇÃO POR QUE ISSO ACONTECE
   ============================================ */
.why-this-happens {
  background: #f8f9fa;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-this-happens::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.why-this-happens .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
}

.why-this-happens .section-subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 15px;
}

.why-this-happens .section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.why-this-happens h2 {
  color: var(--text-dark);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.why-this-happens .section-divider {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.why-this-happens .section-intro {
  color: var(--text-medium);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid de motivos */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.reason-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.reason-card:hover::before {
  height: 6px;
  background: var(--primary-dark);
}

.reason-icon {
  width: 70px;
  height: 70px;
  background: rgba(234, 29, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 28px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
  background: var(--primary);
  color: white;
  transform: rotateY(180deg);
}

.reason-card h3 {
  color: var(--text-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.reason-card p {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Banner de impacto */
.impact-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(234, 29, 44, 0.2);
  position: relative;
  overflow: hidden;
}

.impact-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  opacity: 0.5;
  pointer-events: none;
}

.impact-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 1;
}

.impact-content i {
  font-size: 2.5rem;
  color: white;
  opacity: 0.9;
}

.impact-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.impact-content p {
  margin: 0;
  font-size: 1.1rem;
  color: white;
}

.impact-banner .btn-secondary {
  background: white;
  color: var(--primary);
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  z-index: 1;
  border: none;
}

.impact-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsivo */
@media (max-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .impact-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .why-this-happens {
    padding: 4rem 0;
    padding: 3rem 0;
  }
  
  .why-this-happens h2 {
    font-size: 26px;
  }
  
  .why-this-happens p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .why-this-happens .pain-list {
    padding: 0 1rem;
  }
  
  .why-this-happens .pain-list li {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   3️⃣ SEÇÃO DE DIFERENCIAIS
   ============================================ */
.features {
  background: var(--primary);
  padding: 5rem 0;
  position: relative;
}

.features h2 {
  color: var(--white);
  text-align: center;
  font-size: 34px;
  margin-bottom: 1rem;
  position: relative;
}

.features h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--green-whatsapp);
  margin: 1.5rem auto 3rem;
  border-radius: 2px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 2rem;
}

.feature-item {
  background: transparent;
  border: 1px solid var(--white);
  padding: 40px 30px;
  text-align: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 1.5rem;
  animation: zoomIn 0.6s ease-out;
}

.feature-item h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: var(--font-headline);
  text-align: center;
}

.feature-item p {
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   4️⃣ PROVA SOCIAL / DEPOIMENTOS
   ============================================ */
.testimonials {
  background: #f5f5f5;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.02) 1px, transparent 0);
  background-size: 20px 20px;
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}

.testimonials-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.google-logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonials h2 {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.google-rating-display {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.rating-number {
  font-family: var(--font-headline);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.rating-stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.rating-stars svg {
  width: 28px;
  height: 28px;
}

.rating-count {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-medium);
  font-weight: 400;
}

/* Carousel Container */
.testimonial-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 40px;
}

.testimonial-carousel {
  overflow: hidden;
  margin: 0 -12px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 24px;
  padding: 10px 0;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  margin: 0 8px;
  scroll-snap-align: start;
}

/* Navigation Buttons */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #333;
}

.carousel-button:hover {
  background: #f8f8f8;
  transform: translateY(-50%) scale(1.05);
}

.carousel-button.prev {
  left: 0;
}

.carousel-button.next {
  right: 0;
}

.carousel-button svg {
  width: 20px;
  height: 20px;
}

/* Dots Navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (max-width: 850px) {
  .testimonial-container {
    padding: 0 30px;
  }
  
  .review-card {
    flex: 0 0 calc(100% - 16px);
  }
  
  .carousel-button {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .testimonial-container {
    padding: 0 20px;
  }
  
  .carousel-button {
    width: 36px;
    height: 36px;
  }
  
  .carousel-button svg {
    width: 16px;
    height: 16px;
  }
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  flex-shrink: 0;
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-name {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.review-date {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 400;
}

.review-stars {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-top: 4px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
}

.reviews-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
}

.verified-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-whatsapp);
  display: block;
}

.reviews-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-count-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-medium);
}

.btn-see-more {
  background: var(--blue-light);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-see-more:hover {
  background: var(--blue-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 121, 194, 0.3);
}

.reforco {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-primary);
  margin-top: 2rem;
}

/* ============================================
   5️⃣ QUEM SOMOS
   ============================================ */
.about-section {
  background: var(--white);
  padding: 5rem 0;
}

.about-section h2 {
  text-align: center;
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 4rem;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-row:last-child {
  margin-bottom: 0;
}

.about-row-reverse {
  grid-template-columns: 1.5fr 1fr;
}

.about-row-reverse .about-image {
  order: 2;
}

.about-row-reverse .about-text {
  order: 1;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, var(--yellow-lighter) 0%, var(--blue-bg) 100%);
  aspect-ratio: 4 / 3;
}

.about-image:hover {
  transform: translateY(-5px);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text h3 {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--yellow-lighter);
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   6️⃣ FAQ
   ============================================ */
.faq {
  background: var(--blue-bg);
  padding: 5rem 0;
}

.faq h2 {
  text-align: center;
  font-size: 32px;
  color: var(--blue-primary);
  margin-bottom: 3rem;
}

.faq-item {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item h3::after {
  content: '+';
  font-size: 24px;
  color: var(--blue-light);
  font-weight: 300;
  transition: transform 0.25s ease;
}

.faq-item.active h3::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out, padding 0.25s ease-in-out;
  padding: 0;
}

.faq-item.active p {
  max-height: 500px;
  padding-top: 1rem;
}

/* ============================================
   7️⃣ CTA FINAL
   ============================================ */
.cta-final {
  background: var(--primary);
  padding: 5rem 0;
  text-align: center;
}

.cta-final h2 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 1.5rem;
}

.cta-final p {
  color: #F8F8F8;
  font-size: 18px;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final .btn-primary {
  animation: pulse 3s ease-in-out infinite;
  position: relative;
}

.cta-final .btn-primary .whatsapp-icon {
  animation: rotate 2s linear infinite;
}

/* ============================================
   9️⃣ FOOTER
   ============================================ */
.footer {
  background: var(--white);
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
}

/* ============================================
   8️⃣ BOTÃO FLUTUANTE WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   RESPONSIVIDADE TABLET
   ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
  .pain-content {
    gap: 2rem;
  }
  
  .pain-title {
    font-size: 28px;
  }
  
  .pain-item {
    font-size: 16px;
  }
  
  .pain-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .rating-number {
    font-size: 44px;
  }
  
  .rating-stars svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================
   RESPONSIVIDADE MOBILE
   ============================================ */
@media (max-width: 850px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  p {
    font-size: 16px;
  }
  
  .hero {
    min-height: 80vh;
    padding: 5rem 0 3rem;
  }
  
  .hero-logo {
    top: 1rem;
    left: 1rem;
    max-width: 120px;
  }
  
  .hero-content {
   padding-top: 0;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 32px;
    text-align: center;
  }
  
  .hero-text > p {
    font-size: 18px;
  }
  
  .hero-image {
    aspect-ratio: 4 / 3;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 16px;
  }
  
  .pain-section {
    padding: 3rem 0;
  }
  
  .pain-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .pain-divider {
    width: 100%;
    height: 3px;
    min-height: 3px;
    border-left: none;
    border-right: none;
    border-top: 2px solid var(--blue-primary);
    border-bottom: 2px solid var(--blue-primary);
  }
  
  .pain-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .pain-item {
    font-size: 16px;
    gap: 1rem;
  }
  
  .pain-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  
  .pain-description {
    font-size: 16px;
    text-align: center;
  }
  
  .pain-section .btn-secondary {
    width: 100%;
  }
  
  .features {
    padding: 3rem 0;
  }
  
  .features h2 {
    font-size: 28px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-item {
    padding: 30px 20px;
  }
  
  .testimonials {
    padding: 3rem 0;
  }
  
  .testimonials-header {
    flex-wrap: wrap;
  }
  
  .testimonials h2 {
    font-size: 24px;
  }
  
  .google-rating-display {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .rating-number {
    font-size: 40px;
  }
  
  .rating-stars svg {
    width: 24px;
    height: 24px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .reviews-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .reviews-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .about-section {
    padding: 3rem 0;
  }
  
  .about-section h2 {
    font-size: 28px;
    margin-bottom: 3rem;
  }
  
  .about-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .about-row-reverse {
    grid-template-columns: 1fr;
  }
  
  .about-row-reverse .about-image {
    order: 1;
  }
  
  .about-row-reverse .about-text {
    order: 2;
  }
  
  .about-image {
    aspect-ratio: 4 / 3;
  }
  
  .about-text h3 {
    font-size: 24px;
  }
  
  .about-text p {
    font-size: 16px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .faq {
    padding: 3rem 0;
  }
  
  .faq h2 {
    font-size: 28px;
  }
  
  .cta-final {
    padding: 3rem 0;
  }
  
  .cta-final h2 {
    font-size: 28px;
  }
  
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 0.5rem;
  }
  
  .hero-text h1 {
    font-size: 28px;
  }
  
  .pain-title {
    font-size: 22px;
  }
  
  .pain-item {
    font-size: 14px;
    gap: 0.75rem;
  }
  
  .pain-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  
  .pain-description {
    font-size: 15px;
  }
  
  .testimonials h2 {
    font-size: 20px;
  }
  
  .rating-number {
    font-size: 36px;
  }
  
  .rating-stars svg {
    width: 20px;
    height: 20px;
  }
  
  .rating-count {
    font-size: 14px;
  }
  
  .review-card {
    padding: 16px;
  }
  
  .review-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .review-name {
    font-size: 15px;
  }
  
  .review-date {
    font-size: 12px;
  }
  
  .review-text {
    font-size: 14px;
  }
  
  .btn-see-more {
    padding: 10px 20px;
    font-size: 14px;
  }
}