/*
Theme Name: SS Consórcios
Description: Tema WordPress para SS Consórcios - Landing Page Moderna (mobile-first)
Version: 1.1
Author: Agência Project
*/

/* ================================
   CSS Variables - Design System
================================ */
:root {
  --primary: #1c3c7b;
  --primary-foreground: #ffffff;
  --secondary: #f1f5f9;
  --secondary-foreground: #1c3c7b;
  --background: #ffffff;
  --foreground: #1e293b;
  --card: #ffffff;
  --card-foreground: #1e293b;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --accent: #1c3c7b;
  --accent-foreground: #ffffff;
  --border: #e2e8f0;
  --border-secondary: #1c3c7b;
  --input: #e2e8f0;
  --ring: #1c3c7b;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --color-whatsapp: #25d366;

  --gradient-hero: linear-gradient(135deg, #1c3c7b 0%, #1e3a8a 100%);
  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  --shadow-card: 0 10px 30px -10px rgba(30, 64, 175, 0.1);
  --shadow-button: 0 4px 15px rgba(30, 64, 175, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   Base Styles
================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }
p  { margin-bottom: 1rem; color: var(--muted-foreground); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.text-center { text-align: center; }

/* Acessibilidade: esconder texto apenas visualmente */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ================================
   Buttons
================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 8px; font-weight: 600; text-decoration: none;
  transition: var(--transition-smooth); border: none; cursor: pointer; font-size: 16px;
}
.btn-primary { background-color: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-button); }
.btn-primary:hover { background-color: #1e3a8a; transform: translateY(-2px); }
.btn-secondary { background-color: var(--secondary); color: var(--secondary-foreground); border: 2px solid var(--border); }
.btn-secondary:hover { background-color: var(--accent); color: var(--accent-foreground); }
.btn-whatsapp { background-color: var(--color-whatsapp); color: #fff; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { background-color: #20be5a; transform: translateY(-2px); }
.w-100 { width: 100%; }

/* ================================
   HERO (mobile-first + overlay fix)
================================ */
.hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 120px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  isolation: isolate;               /* cria contexto de empilhamento (iOS fix) */
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-cars.jpg') center/cover no-repeat;
  opacity: 0.6;
  z-index: 0 !important;            /* overlay SEMPRE atrás */
  pointer-events: none !important;  /* não bloqueia toques no mobile */
}
.hero .container,
.hero .hero-grid,
.hero .hero-copy,
.hero .simulator-card {
  position: relative;
  z-index: 1;                        /* conteúdo acima do overlay */
}
/* se necessário, força o card no topo */
.hero .simulator-card { z-index: 2; }

/* Grid do hero: mobile = 1 coluna; desktop = 2 colunas */
.hero-content,
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 960px){
  .hero-content, .hero-grid {
    grid-template-columns: 1.1fr 1fr;  /* texto | simulador */
    gap: 36px;
  }
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; font-weight: 800; color: #fff; }
.hero p  { font-size: 1.25rem; margin-bottom: 2rem; opacity: .95; color: #fff; }

/* Card do simulador */
.simulator-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  border-radius: 16px;
  padding: 20px;
  max-width: 480px;
  margin-left: auto;
  color: var(--foreground);
}
.simulator-card h3 { margin: 0 0 10px; color: var(--foreground); font-weight: 800; }

.field { margin-bottom: 12px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--foreground); }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="number"],
.field select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: 10px; background: #fff; color: var(--foreground);
  outline: none; transition: var(--transition-smooth);
}
.field input:focus, .field select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(28,60,123,.12); }
.label-inline { display: block; font-weight: 600; margin-bottom: 6px; }

.mode-toggle { display: inline-flex; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.mode-toggle button {
  border: 0; background: transparent; padding: 8px 14px; cursor: pointer;
  font-weight: 700; color: var(--foreground);
}
.mode-toggle button.active { background: var(--primary); color: var(--primary-foreground); }

.field-credito input[type="range"] { width: 100%; }
.range-hints { display: flex; justify-content: space-between; font-size: .85rem; color: var(--muted-foreground); margin-top: 4px; }

.simulator-result {
  margin-top: 14px; background: #f8fafc; border: 1px solid var(--border);
  border-radius: 12px; padding: 16px;
}
.simulator-result h4 { margin: 0 0 6px; color: var(--foreground); font-weight: 800; }
.simulator-result .res-line { margin: 6px 0; color: var(--foreground); }
.simulator-result .big { font-size: 1.35rem; font-weight: 800; color: var(--primary); }

/* ================================
   Cards e Grids utilitários
================================ */
.card {
  background: var(--card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(30, 64, 175, 0.15); }
.card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ================================
   FAQ
================================ */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-question { font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { margin-top: 1rem; padding-left: 1rem; color: var(--muted-foreground); }

/* ================================
   Footer
================================ */
.footer {
  background-color: var(--foreground);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-content {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; margin-bottom: 2rem;
}
.footer-section h4 { margin-bottom: 1rem; color: var(--secondary); }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: .5rem; }
.footer-section ul li a { color: var(--secondary); text-decoration: none; transition: var(--transition-smooth); }
.footer-section ul li a:hover { color: var(--secondary); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); color: var(--secondary); }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed; bottom: 20px; right: 20px; z-index: 1000;
  background-color: var(--color-whatsapp); color: white; border-radius: 50px;
  padding: 15px 20px; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  font-weight: 600; transition: var(--transition-smooth);
}
.floating-whatsapp:hover { background-color: #128c7e; transform: scale(1.05); }

/* ================================
   Social / Contato
================================ */
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--primary); color: var(--primary-foreground);
  text-decoration: none; transition: var(--transition-smooth);
  box-shadow: var(--shadow-button);
}
.social-link i { font-size: 1rem; }
.social-link:hover { transform: translateY(-2px); background: var(--foreground); }

.contact-list li { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; color: var(--primary-foreground); }
.contact-list li i { color: var(--primary-foreground); font-size: 1rem; }

/* Esconder elementos Lovable */
a[href*="lovable.dev"], iframe[src*="lovable.dev"], div[style*="Edit with Lovable"], .lovable-badge {
  display: none !important; opacity: 0 !important; visibility: hidden !important;
  pointer-events: none !important; position: absolute !important; z-index: -9999 !important;
}

/* ================================
   Componentes comuns
================================ */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.eyebrow-icon {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(28, 60, 123, .1); color: var(--primary);
}
.eyebrow-text { font-weight: 700; font-size: 1.25rem; color: var(--foreground); }

.title-with-icon { display: inline-flex; align-items: center; gap: 10px; position: relative; }
.title-with-icon i { font-size: 1.6rem; color: var(--primary); }
.title-with-icon h2 { font-weight: 800; color: var(--foreground); }

.accent-underline {
  display: inline-block; width: 120px; height: 4px; border-radius: 999px; background: #0b66d5;
}

/* ================================
   Vehicles
================================ */
.vehicles { background: var(--gradient-section); padding-top: 80px; padding-bottom: 80px; }
.vehicles-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 1024px){ .vehicles-grid { grid-template-columns: 1.15fr 1fr; gap: 48px; } }

.vehicles-title { font-size: 2rem; line-height: 1.2; color: var(--primary); margin: 8px 0 16px; font-weight: 800; }
@media (min-width: 640px){ .vehicles-title { font-size: 2.25rem; } }
.vehicles-title .highlight { color: #0b66d5; }
.vehicles-lead { color: var(--muted-foreground); margin-bottom: 20px; }

.vehicles-cta {
  display: inline-flex; gap: 10px; align-items: center; padding: 14px 20px; border-radius: 10px;
  font-weight: 700; box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.vehicles-media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 25px 60px -20px rgba(0, 40, 120, .25); background: #0b1324; }
.vehicles-media img { width: 100%; height: 300px; object-fit: cover; display: block; }
@media (min-width: 1024px){ .vehicles-media img { height: 420px; } }

.rate-badge {
  position: absolute; left: 24px; bottom: 24px; background: #fff; padding: 16px 18px;
  border-radius: 14px; box-shadow: 0 20px 40px -16px rgba(0,0,0,.25);
  display: flex; flex-direction: column; align-items: flex-start;
}
.rate-badge strong { font-size: 2rem; line-height: 1; color: var(--primary); }
.rate-badge span { font-size: .875rem; color: var(--muted-foreground); }

/* ================================
   Motos
================================ */
.motos { background: var(--gradient-section); }
.motos-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 1024px){ .motos-grid { grid-template-columns: 1fr 1.2fr; gap: 48px; } }

.motos-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.motos-eyebrow i { font-size: 1.6rem; color: var(--primary); }
.motos-eyebrow span { font-size: 2rem; font-weight: 800; color: var(--foreground); }
@media (min-width: 640px){ .motos-eyebrow span { font-size: 2.25rem; } }

.motos-headline { font-size: 1.75rem; line-height: 1.25; font-weight: 800; color: var(--primary); margin: 6px 0 14px; }
@media (min-width: 640px){ .motos-headline { font-size: 2rem; } }
.motos-headline .highlight { color: #0b66d5; }

.motos-lead { color: var(--muted-foreground); margin-bottom: 20px; }
.motos-cta { display: inline-flex; gap: 10px; align-items: center; border-radius: 10px; }

.motos-figure { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 25px 60px -20px rgba(0, 40, 120, .25); background: #0b1324; }
.motos-figure img { width: 100%; height: 300px; object-fit: cover; display: block; }
@media (min-width: 1024px){ .motos-figure img { height: 420px; } }

.quota-badge {
  position: absolute; bottom: 24px; right: 24px; background: #fff; padding: 16px 18px; border-radius: 14px;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,.25); display: flex; flex-direction: column; align-items: flex-start;
}
.quota-badge strong { font-size: 2rem; line-height: 1; color: var(--primary); }
.quota-badge span { font-size: .875rem; color: var(--muted-foreground); }

/* ================================
   Caminhões
================================ */
.trucks { background: var(--gradient-section); }
.trucks-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 1024px){ .trucks-grid { grid-template-columns: 1.05fr 1.2fr; gap: 48px; } }

.trucks-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.trucks-eyebrow i { font-size: 1.6rem; color: var(--primary); }
.trucks-eyebrow span { font-size: 2rem; font-weight: 800; color: var(--foreground); }
@media (min-width: 640px){ .trucks-eyebrow span { font-size: 2.25rem; } }

.trucks-headline { font-size: 1.75rem; line-height: 1.25; font-weight: 800; color: #0b66d5; margin: 6px 0 14px; }
@media (min-width: 640px){ .trucks-headline { font-size: 2rem; } }

.trucks-lead { color: var(--muted-foreground); margin-bottom: 20px; }
.trucks-cta { display: inline-flex; gap: 10px; align-items: center; border-radius: 10px; }

.trucks-figure { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 25px 60px -20px rgba(0, 40, 120, .25); background: #0b1324; }
.trucks-figure img { width: 100%; height: 300px; object-fit: cover; display: block; }
@media (min-width: 1024px){ .trucks-figure img { height: 420px; } }

.quota-badge { position: absolute; bottom: 24px; background: #fff; padding: 16px 18px; border-radius: 14px; box-shadow: 0 20px 40px -16px rgba(0,0,0,.25); display: flex; flex-direction: column; align-items: flex-start; }
.quota-badge.badge-left { left: 24px; }
.quota-badge strong { font-size: 2rem; line-height: 1; color: var(--primary); }
.quota-badge span { font-size: .875rem; color: var(--muted-foreground); }

/* ================================
   Imóveis
================================ */
.realestate { background: var(--gradient-section); }
.realestate-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 1024px){ .realestate-grid { grid-template-columns: 1.2fr 1fr; gap: 48px; } }

.realestate-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.realestate-eyebrow i { font-size: 1.6rem; color: var(--primary); }
.realestate-eyebrow span { font-size: 2rem; font-weight: 800; color: var(--foreground); }
@media (min-width: 640px){ .realestate-eyebrow span { font-size: 2.25rem; } }

.realestate-headline { font-size: 1.75rem; line-height: 1.25; font-weight: 800; color: #0b66d5; margin: 6px 0 14px; }
@media (min-width: 640px){ .realestate-headline { font-size: 2rem; } }

.realestate-lead { color: var(--muted-foreground); margin-bottom: 22px; }

.realestate-lists { display: grid; grid-template-columns: 1fr; gap: 12px 32px; margin-bottom: 26px; }
@media (min-width: 900px){ .realestate-lists { grid-template-columns: 1fr 1fr; } }

.list-block h4 { margin-bottom: 10px; color: var(--foreground); }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; align-items: center; gap: 10px; color: var(--foreground); margin: 8px 0; }
.checklist li i { color: var(--color-whatsapp); font-size: 1rem; }

.realestate-cta { display: inline-flex; gap: 10px; align-items: center; border-radius: 10px; }

.realestate-figure { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 25px 60px -20px rgba(0, 40, 120, .25); background: #0b1324; }
.realestate-figure img { width: 100%; height: 300px; object-fit: cover; display: block; }
@media (min-width: 1024px){ .realestate-figure img { height: 420px; } }

.fgts-badge { position: absolute; right: 24px; bottom: 24px; background: #fff; padding: 16px 18px; border-radius: 14px; box-shadow: 0 20px 40px -16px rgba(0,0,0,.25); display: flex; flex-direction: column; align-items: flex-start; }
.fgts-badge strong { color: #0b66d5; font-size: 1.5rem; line-height: 1; }
.fgts-badge span { color: var(--muted-foreground); font-size: .875rem; }

/* ================================
   Consórcio Contemplado
================================ */
.contemplated { background: var(--gradient-section); }
.contemplated-header { text-align: center; margin-bottom: 28px; }
.contemplated-header .title-with-icon::after {
  content: ""; display: block; height: 4px; width: 120px; background: #0b66d5;
  border-radius: 999px; margin: 10px auto 0; position: absolute; left: 50%;
  transform: translateX(-50%); bottom: -14px;
}
.contemplated-sub { margin: 28px auto 6px; max-width: 900px; color: var(--muted-foreground); }
.contemplated-note { color: #0b66d5; font-weight: 700; margin-top: 6px; }

.contemplated-grid { display: grid; gap: 20px; margin-top: 22px; grid-template-columns: 1fr; }
@media (min-width: 1024px){ .contemplated-grid { grid-template-columns: repeat(3, 1fr); } }

.contemplated-card { background: #f4f8ff; border: 2px solid rgba(11,102,213,.25); border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(11,102,213,.08); }
.card-head { padding: 14px 18px 10px; border-bottom: 1px solid rgba(11,102,213,.18); display: flex; align-items: center; justify-content: space-between; }
.card-head h3 { color: #0b66d5; font-weight: 800; }
.badge-success { background: #dff8e8; color: #1f9254; border-radius: 999px; padding: 6px 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; }

.card-body { padding: 18px; text-align: center; }
.amount { font-size: 2rem; font-weight: 800; color: var(--foreground); }
.amount-sub { color: var(--muted-foreground); font-size: .9rem; margin-bottom: 14px; }

.kv { margin-top: 8px; }
.kv .row { display: grid; grid-template-columns: auto 1fr; gap: 8px; align-items: baseline; padding: 6px 0; }
.kv dt { color: var(--foreground); }
.kv .value { text-align: right; color: #0b66d5; font-weight: 700; }

.contemplated-cta { text-align: center; margin-top: 26px; }
.contemplated-cta .btn { border-radius: 10px; padding: 14px 20px; }

/* ================================
   Investimento em Ouro
================================ */
.investment { background: var(--gradient-section); }
.investment-header { text-align: center; margin-bottom: 22px; }
.investment-subtitle { margin: 8px 0 8px; font-size: 1.6rem; font-weight: 800; color: #0b66d5; }
@media (min-width: 640px){ .investment-subtitle { font-size: 1.7rem; } }
.quota-text { color: var(--foreground); margin: 6px 0 18px; }
.quota-link { color: #0b66d5; font-weight: 700; text-decoration: none; }

.reasons-title { text-align: center; font-size: 1.5rem; font-weight: 800; color: var(--foreground); margin: 6px 0 16px; }
.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 18px 20px; margin-top: 8px; }
@media (min-width: 900px){ .reasons-grid { grid-template-columns: 1fr 1fr; } }

.reason {
  display: grid; grid-template-columns: 56px 1fr; align-items: start; gap: 14px;
  background: #fff; border: 1px solid rgba(11,102,213,.2); border-radius: 12px; padding: 16px;
}
.reason-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: #eaf3ff; color: var(--primary);
}
.reason-content h5 { font-size: 1.05rem; font-weight: 800; color: var(--foreground); margin: 2px 0 6px; }
.reason-content .num { color: var(--foreground); margin-right: 6px; }
.reason-content p { margin: 0; color: var(--muted-foreground); }

.reason-full { grid-column: 1 / -1; max-width: 860px; margin: 0 auto; }
@media (max-width: 900px){ .reason-full { max-width: 100%; } }

.investment-cta { text-align: center; margin-top: 22px; }
.investment-cta .btn { border-radius: 10px; padding: 14px 20px; }

/* ================================
   Depoimentos (mobile-first)
================================ */
.testimonials { background: var(--gradient-section); }
.testimonials-header { text-align: center; margin-bottom: 26px; }
.testimonials-subtitle { margin: 8px 0 6px; font-size: 1.6rem; font-weight: 800; color: #0b66d5; }
@media (min-width: 640px){ .testimonials-subtitle { font-size: 1.7rem; } }
.testimonials-lead { color: var(--muted-foreground); }

/* GRID: 1 col (mobile), 2 col (≥768px), 3 col (≥1024px) */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 14px;
}
@media (min-width: 768px){
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1024px){
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Card compacto no mobile */
.testimonial-card {
  position: relative; background: #fff; border: 1px solid rgba(11,102,213,.18);
  border-radius: 14px; box-shadow: 0 14px 32px -18px rgba(0,40,120,.25);
  padding: 16px;
}
@media (min-width: 640px){ .testimonial-card { padding: 18px; } }

.quote-mark { position: absolute; top: 10px; right: 10px; opacity: .15; font-size: 1.25rem; color: var(--primary); }
@media (min-width: 640px){ .quote-mark { font-size: 1.5rem; top: 14px; right: 14px; } }

.testimonial-body { display: grid; gap: 12px; }
.person { display: grid; grid-template-columns: 48px 1fr; gap: 10px; align-items: center; margin: 0; }
.avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; display: block; }
@media (min-width: 640px){ .person { grid-template-columns: 56px 1fr; gap: 12px; } .avatar { width: 56px; height: 56px; } }

.name { color: var(--foreground); font-weight: 800; }
.role { display: block; font-size: .9rem; color: var(--muted-foreground); }
blockquote { margin: 0; color: var(--foreground); line-height: 1.6; }

.testimonials-cta { text-align: center; margin-top: 24px; }
.testimonials-cta .btn { border-radius: 10px; padding: 14px 20px; }

/* ================================
   Responsivo base
================================ */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .section { padding: 60px 0; }
}

/* ================================
   Logos Parceiros
================================ */
.logos-bar {
  background: var(--card-foreground);
  height: 100px;
  display: flex;
  align-items: center;
}
.logos-bar .container { width: 100%; }
.logos-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.logos-wrap img {
  max-height: 40px;   /* cabe folgado dentro dos 100px da faixa */
  width: auto;
  display: block;
  opacity: 0.95;
}
@media (max-width: 768px){
  .logos-wrap { gap: 16px; justify-content: space-around; }
  .logos-wrap img { max-height: 36px; }
}
