/* =============================================
   CAIÇARA DRIVE — NOVO SITE 2026
   Design: Modern, Premium, High-Conversion
   ============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #FFFFFF;
  color: #1A2D3D;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
  --blue-deep: #083350;
  --blue-mid: #0960A0;
  --blue-bright: #0DA8EF;
  --blue-light: #DFF3FC;
  --orange: #F5A800;
  --orange-dark: #D48B00;
  --green-wpp: #25D366;
  --text-primary: #1A2D3D;
  --text-secondary: #5A7489;
  --text-light: #8FA8BC;
  --bg-alt: #F4F9FC;
  --white: #FFFFFF;
  --border: #DDE8F0;
  --shadow-sm: 0 2px 8px rgba(10,61,92,0.08);
  --shadow-md: 0 8px 32px rgba(10,61,92,0.12);
  --shadow-lg: 0 20px 60px rgba(10,61,92,0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Syne', 'Inter', sans-serif;
  line-height: 1.15;
  color: var(--text-primary);
}

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

ul {
  list-style: none;
}

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

/* ===== UTILITY ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-mid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag--light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: rgba(251, 194, 41, 1);
  color: #1a2d3d;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #e5a920;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(251, 194, 41, 0.35);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-whatsapp i { color: #25D366; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(4, 82, 105, 0.88);
  backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(3, 62, 82, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 28px rgba(0,0,0,0.3);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Drawer: desktop = inline row, mobile = dropdown */
.nav-drawer {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}


.logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 20px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
  line-height: 1;
}
.logo-text strong {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  color: #FFD166;
}
.logo-text--light { color: white; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Tons mais suaves que o gradiente anterior (menos saturação / brilho) */
  background: linear-gradient(135deg, #1a4f6e 0%, #3d7a9e 40%, #5a9ec0 70%, #1a4f6e 100%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 15% center;
  opacity: 0.85;
  position: absolute;
  inset: 0;
}

/* Overlay gradiente leve — legibilidade sem matar a foto */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4, 62, 90, 0.72) 0%,
    rgba(4, 62, 90, 0.45) 55%,
    rgba(4, 62, 90, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
  padding-bottom: 80px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: #F5C842;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge i { font-size: 12px; }

.hero-title {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  color: white;
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeInDown 0.8s ease 0.1s both;
}

.gradient-text {
  background: linear-gradient(90deg, #F5A800, #FFD040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeInDown 0.8s ease 0.3s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(245,166,35,0.35);
}
.btn-hero-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.45);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,0.15);
  border: 1.5px solid rgba(37,211,102,0.4);
  color: white;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  background: rgba(37,211,102,0.25);
  border-color: rgba(37,211,102,0.7);
  transform: translateY(-2px);
}
.btn-hero-secondary i { color: #25D366; font-size: 18px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInDown 0.8s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-suffix {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  animation: bounce 2s ease infinite;
  z-index: 1;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--blue-deep);
  padding: 20px 0;
  border-bottom: 3px solid var(--orange);
}

.trust-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}
.trust-item i {
  color: var(--orange);
  font-size: 18px;
}

/* ===== STEPS ===== */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.step-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--blue-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.step-card:hover .step-icon-wrap {
  background: var(--blue-bright);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11,158,218,0.3);
}
.step-icon-wrap i {
  font-size: 28px;
  color: var(--blue-mid);
  transition: var(--transition);
}
.step-card:hover .step-icon-wrap i { color: white; }

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue-bright), var(--blue-light));
  margin-top: 80px;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  width: 10px;
  height: 10px;
  background: var(--blue-bright);
  border-radius: 50%;
}

/* ===== APP SHOWCASE ===== */
.app-showcase {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  padding: 96px 0;
  overflow: hidden;
}

.app-showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Phone Mockup */
.app-showcase-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  z-index: 1;
}

.phone-frame {
  width: 260px;
  height: 520px;
  background: #0A2035;
  border-radius: 40px;
  padding: 16px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.1),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0D2B45;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.app-screen-content {
  padding: 24px 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-header-mock {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}
.app-logo-mock {
  width: 28px;
  height: 28px;
  background: var(--blue-bright);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-header-mock span {
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.app-map-mock {
  flex: 1;
  background: linear-gradient(135deg, #0B3D5C, #0A4F7A);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.app-map-mock::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(255,255,255,0.03) 24px, rgba(255,255,255,0.03) 25px),
    repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(255,255,255,0.03) 24px, rgba(255,255,255,0.03) 25px);
}
.map-pin {
  position: absolute;
  top: 30%;
  left: 40%;
  color: var(--orange);
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  animation: pulse 2s ease infinite;
}
.map-car {
  position: absolute;
  top: 55%;
  left: 55%;
  color: white;
  font-size: 16px;
  animation: driveCar 3s ease infinite alternate;
}

.app-card-mock {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px;
}

.mock-driver {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.mock-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0B9EDA, #0B6FA3);
  border-radius: 50%;
}
.mock-info { flex: 1; }
.mock-name { font-size: 11px; font-weight: 600; color: white; }
.mock-car { font-size: 10px; color: rgba(255,255,255,0.5); }
.mock-time { font-size: 11px; font-weight: 700; color: var(--blue-bright); }
.mock-price {
  font-size: 18px;
  font-weight: 800;
  color: white;
  font-family: 'Syne', sans-serif;
}

.phone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(245, 168, 0, 0.35) 0%, transparent 70%);
  z-index: -1;
}

.floating-badge {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-rating {
  top: 60px;
  right: -20px;
}
.badge-rating i { color: #F5A623; }
.badge-safety {
  bottom: 100px;
  left: -30px;
}
.badge-safety i { color: var(--blue-bright); }

/* App showcase text */
.app-showcase-text .section-title {
  color: white;
  margin-bottom: 32px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

.feature-item h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-item p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
}

/* Store buttons */
.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white;
  padding: 14px 20px;
  border-radius: 14px;
  transition: var(--transition);
  min-width: 160px;
}
.store-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.store-btn i { font-size: 24px; }
.store-label { display: block; font-size: 11px; opacity: 0.7; line-height: 1; }
.store-name { display: block; font-size: 15px; font-weight: 700; margin-top: 2px; }

.store-btn--dark {
  background: rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.15);
}
.store-btn--dark:hover {
  background: rgba(0,0,0,0.75);
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adv-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-mid));
  opacity: 0;
  transition: var(--transition);
}
.adv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.adv-card:hover::before { opacity: 1; }

.adv-card--highlight {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  border: none;
  color: white;
}
.adv-card--highlight h3 { color: white; }
.adv-card--highlight p { color: rgba(255,255,255,0.8); }
.adv-card--highlight .adv-icon { background: rgba(255,255,255,0.2); color: white; }
.adv-card--highlight::before { display: none; }

.adv-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue-mid);
  margin-bottom: 20px;
}

.adv-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.adv-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.adv-card--highlight p { color: rgba(255,255,255,0.75); }

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, #0A2A40 0%, #0B3D5C 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(11,158,218,0.15) 0%, transparent 70%);
}

.promo-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.promo-tag {
  display: inline-block;
  background: rgba(245,166,35,0.2);
  color: #F5C842;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.promo-text h2 {
  font-size: clamp(24px, 3vw, 38px);
  color: white;
  margin-bottom: 8px;
}
.promo-text h2 span {
  color: var(--orange);
}
.promo-text p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}
.promo-text p strong { color: white; }

/* Coupon card */
.coupon-card {
  display: flex;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  min-width: 320px;
}

.coupon-left {
  background: var(--orange);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}
.coupon-pct {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.coupon-pct small { font-size: 28px; }
.coupon-off {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
}

.coupon-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 8px;
  background: white;
  position: relative;
}
.coupon-divider::before, .coupon-divider::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  background: linear-gradient(135deg, #0A2A40, #0B3D5C);
  border-radius: 50%;
}
.coupon-divider::before { top: -10px; }
.coupon-divider::after { bottom: -10px; }
.coupon-divider span {
  width: 2px; height: 6px;
  background: #DDE8F0;
  border-radius: 1px;
}

.coupon-right {
  padding: 20px 20px 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.coupon-code {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}
.coupon-validity {
  font-size: 12px;
  color: var(--text-secondary);
}
.coupon-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue-mid);
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: fit-content;
  margin-top: 4px;
}
.coupon-copy:hover {
  background: var(--blue-bright);
  color: white;
}
.coupon-auto-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #25D366;
  margin-top: 6px;
}
.coupon-auto-badge i { font-size: 13px; }

/* ===== COBERTURA ===== */
.coverage-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coverage-text .section-title {
  text-align: left;
}

.coverage-text p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.coverage-list li i { color: var(--blue-bright); }

.coverage-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--blue-light);
  border-left: 3px solid var(--blue-bright);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--blue-deep);
}
.coverage-note i { color: var(--blue-bright); flex-shrink: 0; margin-top: 2px; }

.map-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 4;
}

.coverage-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% center;
  display: block;
}

.map-placeholder {
  background: var(--blue-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 2px dashed var(--border);
}

.map-visual {
  width: 100%;
  max-width: 280px;
}

.map-pins-legend {
  display: flex;
  gap: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.map-pins-legend span { display: flex; align-items: center; gap: 6px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  background: linear-gradient(135deg, var(--blue-deep), #0B6FA3);
  border: none;
  color: white;
}
.testimonial-card--featured p { color: rgba(255,255,255,0.85); }
.testimonial-card--featured .testimonial-author strong { color: white; }
.testimonial-card--featured .testimonial-author span { color: rgba(255,255,255,0.6); }
.testimonial-card--featured .author-avatar {
  background: rgba(255,255,255,0.15);
  color: white;
}

.testimonial-stars {
  color: #F5A623;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-mid);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== DRIVER SECTION ===== */
.driver-section {
  background: linear-gradient(135deg, #082030 0%, #0A3D5C 50%, #0B6FA3 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.driver-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
}

.driver-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.driver-text .section-tag { margin-bottom: 20px; }
.driver-text .section-title { margin-bottom: 16px; }

.driver-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.driver-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.driver-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.driver-benefit i {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: var(--blue-bright);
}

.btn-driver {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-driver:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}

/* Earnings card */
.driver-earnings-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.earnings-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.earnings-header i { color: var(--orange); }

.earnings-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.earnings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.earnings-row:last-child { border-bottom: none; }
.earnings-row strong {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.earnings-row--highlight {
  color: var(--orange);
}
.earnings-row--highlight strong { color: var(--orange); }

.earnings-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question i {
  font-size: 12px;
  color: var(--blue-bright);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--orange);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-wpp {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.cta-wpp a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-weight: 700;
  margin-left: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-wpp i { color: #25D366; }

/* ===== FOOTER ===== */
.footer {
  background: #071520;
  padding: 64px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  color: white;
}

.footer-links h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-contact h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.2);
  color: #25D366;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  transition: var(--transition);
}
.footer-wpp:hover { background: rgba(37,211,102,0.2); }

.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-location i { color: var(--blue-bright); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  transition: var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== POPUP APPLE ===== */
.apple-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.apple-popup-overlay.active {
  display: flex;
}
.apple-popup {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 36px 32px 32px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  animation: popupIn 0.25s ease;
}
@keyframes popupIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.apple-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--text-secondary);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.apple-popup-close:hover { background: rgba(255,255,255,0.15); color: white; }
.apple-popup-icon {
  font-size: 48px;
  color: white;
  margin-bottom: 16px;
  line-height: 1;
}
.apple-popup h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.apple-popup p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.apple-popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.apple-popup-btn:hover { background: #1DA851; }

/* ===== WHATSAPP FLOAT ===== */
.wpp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
.wpp-float:hover .wpp-tooltip { opacity: 1; transform: translateX(-8px); }

.wpp-tooltip {
  position: absolute;
  right: 70px;
  background: white;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(4px);
  transition: var(--transition);
  pointer-events: none;
}
.wpp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: white;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.2); opacity: 0.8; }
}

@keyframes driveCar {
  from { transform: translateX(0); }
  to   { transform: translateX(-20px); }
}

@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .driver-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .app-showcase-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .app-showcase-visual {
    order: 2;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Esconde drawer no mobile — só abre com .open */
  .nav-drawer {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(3, 55, 75, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px 28px;
    gap: 0;
    z-index: 998;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-drawer.open {
    display: flex;
  }

  /* Links empilhados no mobile */
  .nav-drawer .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }
  .nav-drawer .nav-links a {
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 10px;
  }

  /* Botões no final do drawer */
  .nav-drawer .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-drawer .nav-actions a {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .menu-toggle { display: flex; }

  /* X animado no toggle aberto */
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Botão laranja fixo no header mobile */
  .btn-nav-download {
    display: flex !important;
    background: #F5A800 !important;
    color: #111 !important;
  }

  .hero-content { padding-bottom: 60px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat-number { font-size: 24px; }
  .stat-suffix { font-size: 24px; }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    width: 2px;
    height: 40px;
    flex: none;
    margin: 0;
    background: linear-gradient(180deg, var(--blue-light), var(--blue-bright));
  }
  .step-connector::after {
    right: -4px;
    top: auto;
    bottom: -6px;
  }

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

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

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

  .coverage-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .promo-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .coupon-card {
    min-width: unset;
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .trust-container {
    justify-content: center;
  }

  .section { padding: 64px 0; }
  .app-showcase { padding: 64px 0; }

  .phone-frame {
    width: 220px;
    height: 440px;
  }

  /* Comunidade WhatsApp — empilha no mobile */
  .wpp-community-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wpp-community-image {
    order: -1;
  }
  .wpp-group-img {
    width: 200px;
    height: 200px;
  }

  /* Logo menor no mobile */
  .navbar .logo-brand-img {
    width: 42px;
    height: 42px;
  }
  .logo-text {
    font-size: 17px;
  }

  /* Hero stats menores */
  .hero-stats {
    justify-content: center;
  }

  /* Mapa cobertura */
  .map-image-wrap {
    aspect-ratio: 4 / 3;
  }

  /* Seção header menos espaço */
  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; width: 100%; }

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

  .download-buttons { flex-direction: column; }
  .store-btn { justify-content: center; }

  .cta-actions { flex-direction: column; align-items: center; }

  /* Evita overflow horizontal */
  .coupon-card { flex-direction: column; border-radius: 16px; }
  .coupon-divider { width: 100%; height: 2px; flex-direction: row; }
  .coupon-divider span { width: 8px; height: 8px; }
  .coupon-left { padding: 20px; border-radius: 16px 16px 0 0; }
  .coupon-right { padding: 20px; }

  .wpp-group-img { width: 160px; height: 160px; }

  .hero-badge { font-size: 12px; }
  .stat-number { font-size: 20px; }
  .stat-suffix { font-size: 20px; }
}

/* ===== BOTÃO DOWNLOAD MOBILE NAVBAR ===== */
.btn-nav-download {
  display: none; /* oculto no desktop */
  align-items: center;
  gap: 6px;
  background: #F5A800;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  white-space: nowrap;
  margin-left: auto;
  margin-right: 10px;
  transition: var(--transition);
}
.btn-nav-download:hover { background: #e09700; }
.btn-nav-download i { font-size: 11px; }

/* ===== LOGO BRAND IMAGE ===== */
.logo-brand-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar .logo-brand-img {
  width: 52px;
  height: 52px;
}

/* ===== WHATSAPP COMMUNITY SECTION ===== */
.wpp-community {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.wpp-community::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,211,102,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.wpp-community-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.wpp-community-text .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.wpp-community-text p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.wpp-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.wpp-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.wpp-perks li i {
  width: 32px;
  height: 32px;
  background: rgba(37,211,102,0.1);
  color: #1DB954;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.btn-wpp-community {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-wpp-community:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}
.btn-wpp-community i { font-size: 20px; }

/* WhatsApp image */
.wpp-community-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wpp-img-link {
  position: relative;
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
}

.wpp-img-link:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 70px rgba(37,211,102,0.2);
}

.wpp-group-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  display: block;
}

.wpp-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37,211,102,0.0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  font-weight: 700;
  font-size: 15px;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}
.wpp-img-overlay i { font-size: 40px; }

.wpp-img-link:hover .wpp-img-overlay {
  opacity: 1;
  background: rgba(21,128,61,0.7);
  backdrop-filter: blur(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .wpp-community-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wpp-community-image {
    order: -1;
  }
  .wpp-group-img {
    width: 220px;
    height: 220px;
  }
  .navbar .logo-brand-img {
    width: 44px;
    height: 44px;
  }
  .footer .logo-brand-img {
    width: 32px;
    height: 32px;
  }
}
