/* ================================
   FONTE CUSTOMIZADA
================================ */
@font-face {
  font-family: 'VinilaTest';
  src: url('assets/fonts/VinilaTest-Black.woff2') format('woff2'),
       url('assets/fonts/VinilaTest-Black.woff')  format('woff'),
       url('assets/fonts/VinilaTest-Black.otf')   format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Fallback ajustado: se VinilaTest não carregar, Syne não quebra o layout */
@font-face {
  font-family: 'VinilaTest';
  src: local('Syne');
  font-weight: 900;
  font-style: normal;
  size-adjust: 95%;
  ascent-override: 90%;
}

/* ================================
   TOKENS — MODO CLARO (padrão)
================================ */
:root {
  /* Paleta vermelha do CSS original */
  --clr-accent:       #FF191F;
  --clr-accent-2:     #FF9400;
  --clr-accent-3:     #754EF8;
  --clr-accent-light: rgba(255,25,31,0.10);
  --clr-accent-border:rgba(255,25,31,0.28);
  --clr-green:        #10b981;
  --clr-whatsapp:     #25d366;

  /* Superfícies — CLARO */
  --clr-bg:        #f5f5f7;
  --clr-surface:   #ffffff;
  --clr-surface-2: #f0f0f4;
  --clr-border:    rgba(0,0,0,0.08);
  --clr-text:      #111115;
  --clr-muted:     #6b6b80;
  --clr-nav-bg:    rgba(245,245,247,0.88);

  /* Gradiente animado (hero bg) */
  --grad-hero: linear-gradient(60deg,
    #FF9400, #FF1A1F, #FF01F9, #FF1A1F,
    #FF9400, #FF9400, #FF1A1F, #754EF8,
    #FF1A1F, #FF9400);

  --font-display: 'VinilaTest', 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  --shadow-glow: 0 0 60px rgba(255,25,31,0.20);
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
  --max-width:   1200px;
}

/* ================================
   MODO ESCURO
================================ */
html.dark {
  --clr-bg:        #0d0d10;
  --clr-surface:   #141418;
  --clr-surface-2: #1c1c22;
  --clr-border:    rgba(255,255,255,0.07);
  --clr-text:      #f0f0f5;
  --clr-muted:     #8888a0;
  --clr-nav-bg:    rgba(13,13,16,0.88);
  --clr-accent-light: rgba(255,25,31,0.14);
  --clr-accent-border:rgba(255,25,31,0.35);
  --shadow-glow: 0 0 60px rgba(255,25,31,0.28);
}

/* ================================
   RESET & BASE
================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ================================
   UTILITY
================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }

.section__header { margin-bottom: 60px; text-align: center; }

.section__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-accent-light);
  border: 1px solid var(--clr-accent-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-text);
  word-break: break-word;
}

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: normal;
  text-align: center;
  justify-content: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,25,31,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,25,31,0.5);
  filter: brightness(1.08);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn--ghost:hover {
  background: var(--clr-surface);
  border-color: rgba(0,0,0,0.15);
}
html.dark .btn--ghost:hover { border-color: rgba(255,255,255,0.18); }

.btn--outline {
  background: transparent;
  color: var(--clr-accent);
  border: 1.5px solid var(--clr-accent);
}
.btn--outline:hover { background: var(--clr-accent-light); }

.btn--whatsapp {
  background: var(--clr-whatsapp);
  color: #fff;
}
.btn--whatsapp:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn--disabled {
  background: var(--clr-surface-2);
  color: var(--clr-muted);
  cursor: default;
  border: 1px solid var(--clr-border);
}

.btn--nav {
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  border: 1px solid var(--clr-accent-border);
  font-size: 14px;
  padding: 9px 20px;
}
.btn--nav:hover { background: var(--clr-accent); color: #fff; }

.btn--lg  { padding: 16px 36px; font-size: 16px; }
.btn--sm  { padding: 8px 16px;  font-size: 13px; }

/* ================================
   TOGGLE TEMA
================================ */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.theme-toggle:hover {
  background: var(--clr-accent-light);
  border-color: var(--clr-accent-border);
}
/* ícones: mostra lua no claro, sol no escuro */
.theme-toggle .icon-moon { display: inline; }
.theme-toggle .icon-sun  { display: none;   }
html.dark .theme-toggle .icon-moon { display: none;   }
html.dark .theme-toggle .icon-sun  { display: inline; }

/* ================================
   NAV
================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: var(--clr-nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--clr-border);
}

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

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}
/* Logo imagem */
.nav__logo-img {
  height: 48px;
  width: auto;
}

/* Modo claro: logo colorido (logoescuro.png) com multiply — fundo preto some sobre fundo claro */
.nav__logo .nav__logo-img--light {
  display: block;
  mix-blend-mode: multiply;
}
.nav__logo .nav__logo-img--dark { display: none; }

/* Modo escuro: logo P&B (logoclaro.png) com screen — fundo preto some sobre fundo escuro */
html.dark .nav__logo .nav__logo-img--light { display: none; }
html.dark .nav__logo .nav__logo-img--dark  {
  display: block;
  mix-blend-mode: screen;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a:not(.btn) {
  font-size: 14px;
  color: var(--clr-muted);
  transition: color var(--transition);
}
.nav__links a:not(.btn):hover { color: var(--clr-text); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================
   MOBILE MENU
================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a:not(.btn) {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-text);
}

/* ================================
   HERO
================================ */
.hero {
  position: relative;
  min-height: 100vh;       /* fallback universal */
  min-height: 100svh;      /* Safari iOS 15.4+ / modernos */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

/* Gradiente animado igual ao CSS original — só no hero */
.hero__bg-grad {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  background-size: 400% 400%;
  animation: gradientShift 35s ease infinite;
  opacity: 0.12;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
html.dark .hero__bg-grad { opacity: 0.20; }

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.28;
  pointer-events: none;
}
html.dark .hero__blob { opacity: 0.35; }

.hero__blob--1 {
  width: min(600px, 120vw); height: min(600px, 120vw);
  background: radial-gradient(circle, var(--clr-accent), transparent);
  top: -100px; right: -100px;
}
.hero__blob--2 {
  width: min(400px, 80vw); height: min(400px, 80vw);
  background: radial-gradient(circle, var(--clr-accent-2), transparent);
  bottom: 50px; left: -80px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 7.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--clr-text);
  word-break: break-word;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--clr-muted);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}
.hero__sub strong { color: var(--clr-text); font-weight: 500; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

/* stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  position: relative;
  padding-bottom: 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 2px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--clr-text);
}
.stat__prefix {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-accent);
  align-self: flex-start;
  margin-top: 4px;
}
.stat__unit {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-accent);
  align-self: flex-end;
  margin-bottom: 4px;
}
.stat__label {
  display: block;
  font-size: 12px;
  color: var(--clr-muted);
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: normal;
  max-width: 120px;
  line-height: 1.3;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
  margin-bottom: 24px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.hero__scroll-hint span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.2); }
}

/* ================================
   HOW IT WORKS
================================ */
.how {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.how__step {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.how__step:hover {
  border-color: var(--clr-accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.how__icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.how__step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-text);
}
.how__step p { font-size: 14px; color: var(--clr-muted); line-height: 1.6; }

.how__tag-new {
  display: inline-block;
  background: rgba(16,185,129,0.12);
  color: var(--clr-green);
  border: 1px solid rgba(16,185,129,0.3);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.how__arrow {
  font-size: 1.5rem;
  color: var(--clr-accent);
  opacity: 0.5;
  align-self: center;
  margin-top: -24px;
}

/* ================================
   BENEFITS
================================ */
.benefits { background: var(--clr-bg); }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: var(--clr-accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.benefit-card--featured {
  background: linear-gradient(135deg, var(--clr-accent-light) 0%, rgba(255,148,0,0.05) 100%);
  border-color: var(--clr-accent-border);
}
.benefit-card--soon { opacity: 0.7; }

.benefit-card__badge {
  display: inline-block;
  background: rgba(16,185,129,0.12);
  color: var(--clr-green);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(16,185,129,0.3);
  align-self: flex-start;
}
.benefit-card__badge--soon {
  background: rgba(245,158,11,0.1);
  color: #f59e0b;
  border-color: rgba(245,158,11,0.3);
}
.benefit-card__icon { font-size: 2.5rem; }
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-text);
}
.benefit-card p { font-size: 14px; color: var(--clr-muted); flex: 1; line-height: 1.7; }

/* ================================
   PARTNERS
================================ */
.partners {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.partner-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.partner-card:hover {
  border-color: var(--clr-accent-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,25,31,0.12);
}

.partner-card__img-wrap {
  height: 120px;
  overflow: hidden;
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.partner-card:hover .partner-card__img-wrap img { transform: scale(1.06); }

.partner-card__info {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.partner-card__name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text);
}
.partner-card__discount {
  font-size: 12px;
  color: var(--clr-accent);
  font-weight: 500;
}

/* ================================
   CTA SECTION
================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-section__blob {
  position: absolute;
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,25,31,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(60px);
}
html.dark .cta-section__blob {
  background: radial-gradient(ellipse, rgba(255,25,31,0.22), transparent 70%);
}

.cta-section__content { position: relative; text-align: center; }
.cta-section__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--clr-text);
  word-break: break-word;
}
.cta-section__content h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-section__content p { color: var(--clr-muted); font-size: 1.1rem; margin-bottom: 40px; }
.cta-section__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ================================
   FOOTER
================================ */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding: 60px 24px;
}
.footer__brand p {
  color: var(--clr-muted);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 260px;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-pill);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  border-color: var(--clr-accent-border);
}

.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__links h4, .footer__contact h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 6px;
}
.footer__links a { font-size: 14px; color: var(--clr-muted); transition: color var(--transition); }
.footer__links a:hover { color: var(--clr-text); }
.footer__contact p { font-size: 14px; color: var(--clr-muted); }

.footer__bottom { border-top: 1px solid var(--clr-border); padding: 20px 24px; }
.footer__bottom .container { display: flex; align-items: center; justify-content: center; }
.footer__bottom span { font-size: 12px; color: var(--clr-muted); }

/* ================================
   REVEAL ANIMATION
================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================
   RESPONSIVE
================================ */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .how__arrow { display: none; }
  .how__steps { flex-direction: column; align-items: center; }
  .how__step { min-width: unset; width: 100%; max-width: 480px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {

  /* Base */
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }

  /* Nav */
  .nav { padding: 12px 0; }
  .nav__logo-img { height: 40px; }

  /* Hero */
  .hero { padding: 90px 0 60px; min-height: 100vh; min-height: 100svh; }

  .hero__eyebrow { font-size: 11px; margin-bottom: 12px; }

  .hero__title {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    word-break: break-word;
  }

  .hero__sub {
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero__ctas {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__scroll-hint { display: none; }

  /* Stats — linha única com separadores */
  .hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: flex-start;
  }
  .stat {
    padding-bottom: 18px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .stat__num { font-size: 1.8rem; }
  .stat__label {
    position: static;
    width: 100%;
    white-space: normal;
    margin-top: 2px;
    font-size: 11px;
  }
  .stat__divider {
    display: none;
  }

  /* How */
  .how__step { max-width: 100%; padding: 28px 20px; }

  /* Benefits */
  .benefits__grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 24px 18px; }

  /* Partners */
  .partners__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .partner-card__img-wrap { height: 90px; }

  /* CTA */
  .cta-section { padding: 72px 0; }
  .cta-section__content h2 {
    font-size: clamp(2.2rem, 8vw, 2.6rem);
    word-break: break-word;
  }
  .cta-section__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cta-section__actions .btn { width: 100%; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 16px; }
  .footer__brand p { max-width: 100%; }
}

/* ── Mobile muito pequeno (≤ 380px) ── */
@media (max-width: 380px) {
  .hero__title { font-size: 2.3rem; }
  .partners__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
