/* ═══════════════════════════════════════════════════
   CASCOB — MODELO A
   Paleta CLARA: Azul-marinho + Dourado (harmoniza com a logo)
   Fundo branco/off-white — sem fundo preto
   Fontes: Inter + Playfair Display
   ═══════════════════════════════════════════════════ */

/* ── Reset & Custom Properties ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #14294d;
  --navy-mid: #1e3a64;
  --navy-soft: #295089;       /* azul vibrante p/ blocos de destaque */
  --navy-soft-2: #34619e;
  --accent: #b8860b;          /* dourado */
  --accent-light: #d9a93b;
  --accent-soft: #f3e9cf;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --gray-50: #f4f6f9;
  --gray-100: #e8edf3;
  --gray-200: #dbe2eb;
  --gray-600: #5d6b7e;
  --gray-900: #1c2738;
  --footer-bg: #102341;
  --green-wa: #25d366;

  --heading: 'Playfair Display', Georgia, serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(20, 41, 77, 0.08);
  --shadow-md: 0 4px 16px rgba(20, 41, 77, 0.1);
  --shadow-lg: 0 8px 32px rgba(20, 41, 77, 0.14);
  --shadow-xl: 0 16px 48px rgba(20, 41, 77, 0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  top: 16px;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ── */
.text-center {
  text-align: center;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════════
   1. HEADER / NAV
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo__img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.2;
}

.logo__sub {
  font-size: 0.7rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--navy);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  position: absolute;
  left: 0;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--accent {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.32);
}

.btn--accent:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.42);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--green {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn--green:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   2. HERO
   ═══════════════════════════════════════════════════ */
.hero {
  padding-top: 72px; /* nav height */
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.1), transparent 45%),
    linear-gradient(135deg, var(--off-white) 0%, #eaf1f9 55%, #e3ecf7 100%);
  color: var(--navy);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero__content h1 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--navy);
}

.hero__content h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  gap: 40px;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
}

.hero__trust-item strong {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--heading);
  color: var(--navy);
}

.hero__trust-item span {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image img {
  max-height: 500px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(20, 41, 77, 0.18));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ═══════════════════════════════════════════════════
   3. SECTIONS — General
   ═══════════════════════════════════════════════════ */
.section {
  padding: 96px 0;
}

.section--white {
  background: var(--white);
}

/* "dark" agora e um bloco AZUL vibrante (sem preto) */
.section--dark {
  background: linear-gradient(160deg, var(--navy-soft) 0%, var(--navy-mid) 100%);
  color: var(--white);
}

.section--dark h2 {
  color: var(--white);
}

.section--dark h2 em {
  color: var(--accent-light);
}

.section--gradient {
  background: linear-gradient(135deg, var(--navy-soft-2) 0%, var(--navy-mid) 100%);
  color: var(--white);
}

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.kicker--light {
  color: var(--accent-light);
}

h2 {
  font-family: var(--heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 48px;
  line-height: 1.3;
}

h2 em {
  font-style: italic;
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════
   3. DIREITOS — Cards
   ═══════════════════════════════════════════════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: rgba(184, 134, 11, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__num {
  font-family: var(--heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-100);
  position: absolute;
  top: 16px;
  right: 20px;
}

.card h3 {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

.card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   4. PLATAFORMAS
   ═══════════════════════════════════════════════════ */
.plataformas {
  text-align: center;
}

.plataformas h2 {
  color: var(--white);
}

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

.plataforma {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.plataforma:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.plataforma--destaque {
  background: var(--white);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
}

.plataformas__text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   5. JURISPRUDENCIA
   ═══════════════════════════════════════════════════ */
.acordao {
  display: flex;
  gap: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.acordao__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(184, 134, 11, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.acordao__body h3 {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

.acordao__ref {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.acordao__list {
  margin-bottom: 20px;
}

.acordao__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--gray-900);
}

.acordao__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.acordao__quote {
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin: 20px 0;
  background: rgba(184, 134, 11, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.acordao__disclaimer {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-style: italic;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════
   6. TIMELINE — Como Funciona
   ═══════════════════════════════════════════════════ */
.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.timeline__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.timeline__dot {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.45);
  position: relative;
  z-index: 2;
}

.timeline__icon {
  margin-bottom: 16px;
}

.timeline__step h3 {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.timeline__step p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.timeline__line {
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  margin-top: 23px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   7. DEPOIMENTOS
   ═══════════════════════════════════════════════════ */
.depoimentos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depoimento {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.depoimento:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.depoimento__aspas {
  opacity: 0.2;
  margin-bottom: 16px;
}

.depoimento p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.depoimento footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.depoimento footer strong {
  color: var(--navy);
}

.depoimento footer span {
  color: var(--gray-600);
}

.depoimento footer span::before {
  content: '·';
  margin-right: 8px;
}

/* ═══════════════════════════════════════════════════
   8. CONTATO / FORMULARIO
   ═══════════════════════════════════════════════════ */
.section--gradient h2 {
  color: var(--white);
}

.section--gradient h2 em {
  color: var(--accent-light);
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contato__wa {
  text-align: center;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.contato__foto {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  box-shadow: var(--shadow-md);
}

.contato__numero {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 16px 0 24px;
}

.contato__horario {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.form__field {
  margin-bottom: 20px;
}

.form__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.18);
  background: var(--white);
}

.form__field textarea {
  resize: vertical;
  min-height: 80px;
}

.form__submit {
  width: 100%;
  font-size: 1rem;
  padding: 16px;
}

.form__lgpd {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════
   9. FAQ
   ═══════════════════════════════════════════════════ */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  list-style: none;
  transition: color var(--transition);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item[open] summary::after {
  content: '-';
}

.faq__item[open] summary {
  color: var(--accent);
}

.faq__item p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   10. FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--footer-bg);
  padding: 64px 0 40px;
  color: rgba(255, 255, 255, 0.65);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer .logo__name {
  color: var(--white);
}

.footer .logo__sub {
  color: rgba(255, 255, 255, 0.45);
}

.footer__contact p,
.footer__legal p {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer__contact strong {
  color: rgba(255, 255, 255, 0.85);
}

.footer__contact a {
  color: var(--accent-light);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--accent);
}

.footer__legal {
  text-align: right;
}

.footer__legal p:last-child {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.cards .card.reveal:nth-child(1) { transition-delay: 0s; }
.cards .card.reveal:nth-child(2) { transition-delay: 0.1s; }
.cards .card.reveal:nth-child(3) { transition-delay: 0.2s; }
.cards .card.reveal:nth-child(4) { transition-delay: 0.3s; }

.depoimentos .depoimento.reveal:nth-child(1) { transition-delay: 0s; }
.depoimentos .depoimento.reveal:nth-child(2) { transition-delay: 0.1s; }
.depoimentos .depoimento.reveal:nth-child(3) { transition-delay: 0.2s; }

.timeline .timeline__step.reveal:nth-child(1) { transition-delay: 0s; }
.timeline .timeline__step.reveal:nth-child(3) { transition-delay: 0.15s; }
.timeline .timeline__step.reveal:nth-child(5) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Tablet (max-width: 992px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__image img {
    max-height: 360px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .depoimentos {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__legal {
    text-align: center;
  }

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

  .timeline__line {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .timeline__step {
    padding: 0;
    max-width: 360px;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Mobile (max-width: 768px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-size: 1.2rem;
    color: var(--navy);
  }

  .hamburger {
    display: block;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    padding: 48px 0;
  }

  .hero__content h1 {
    font-size: 1.75rem;
  }

  .hero__trust {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

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

  .acordao {
    flex-direction: column;
    padding: 24px;
  }

  .acordao__icon {
    width: 48px;
    height: 48px;
  }

  .form {
    padding: 24px;
  }

  .contato__wa {
    padding: 32px 24px;
  }

  h2 {
    margin-bottom: 32px;
  }

  .text-center {
    margin-bottom: 32px;
  }

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

  .plataforma {
    width: 100%;
    max-width: 300px;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (max-width: 480px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__content h1 {
    font-size: 1.5rem;
  }

  .hero__sub {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .card {
    padding: 24px 20px;
  }

  .depoimento {
    padding: 24px;
  }

  .contato__numero {
    font-size: 1.25rem;
  }
}
