/* ═══════════════════════════════════════════════════════════════
   1º MATÃO EMPREENDE — main.css
   WordPress-Ready Full Design System
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:        #0a1840;
  --navy-mid:    #112060;
  --navy-light:  #1a3080;
  --red:         #d42b20;
  --red-hover:   #b82018;
  --gold:        #f5c518;
  --gold-dark:   #d4a800;
  --white:       #ffffff;
  --off-white:   #f6f7fb;
  --gray-100:    #f0f2f7;
  --gray-200:    #e2e6ef;
  --gray-400:    #9aa3b8;
  --gray-600:    #5a6278;
  --gray-800:    #2a3050;
  --text:        #1e2540;
  --text-light:  #5a6278;

  --font:        'Inter', system-ui, sans-serif;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow-sm:   0 2px 8px rgba(10,24,64,.08);
  --shadow-md:   0 8px 28px rgba(10,24,64,.14);
  --shadow-lg:   0 20px 60px rgba(10,24,64,.22);
  --transition:  all .28s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

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

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--accent {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212,43,32,.4);
}
.btn--accent:hover {
  background: var(--red-hover);
  box-shadow: 0 6px 24px rgba(212,43,32,.55);
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 36px; font-size: 14px; }
.btn--sm { padding: 9px 18px; font-size: 11px; }
.btn--outline-dark {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--red-outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}
.btn--red-outline:hover {
  background: var(--red);
  color: var(--white);
}
.btn--white-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
}
.btn--white-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* pulse animation for main CTA */
.pulse-btn { position: relative; }
.pulse-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  background: var(--red);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%   { opacity: .6; transform: scale(1); }
  70%  { opacity: 0;  transform: scale(1.18); }
  100% { opacity: 0;  transform: scale(1.18); }
}

/* ─── SECTION HELPERS ─────────────────────────────────────────── */
.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: .5px;
  color: var(--navy);
  text-transform: uppercase;
  text-align: center;
}
.section-title.left { text-align: left; }
.section-title__bar {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 99px;
  margin: 10px auto 0;
}
.section-title__bar.left { margin-left: 0; }
.section-header { margin-bottom: 40px; }

/* ─── LOGO BADGE ─────────────────────────────────────────────── */
.logo-badge {
  position: relative;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}
.logo-badge--sm { width: 46px; height: 46px; }
.logo-badge--lg { width: 80px; height: 80px; }

.logo-badge__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0deg 120deg, var(--gold) 120deg 240deg, var(--navy-light) 240deg 360deg);
  padding: 3px;
}
.logo-badge__ring::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--navy);
}
.logo-badge--sm .logo-badge__ring::after { inset: 2.5px; }
.logo-badge--lg .logo-badge__ring { padding: 4px; }
.logo-badge--lg .logo-badge__ring::after { inset: 4px; }

.logo-badge__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  line-height: 1.1;
}
.logo-badge__num {
  font-size: 13px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.logo-badge__name {
  font-size: 5.5px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  letter-spacing: .3px;
  line-height: 1.25;
}
.logo-badge--sm .logo-badge__num  { font-size: 10px; }
.logo-badge--sm .logo-badge__name { font-size: 4.5px; }
.logo-badge--lg .logo-badge__num  { font-size: 18px; }
.logo-badge--lg .logo-badge__name { font-size: 7px; }

/* ─── SITE HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(10,24,64,.12);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 12px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-tagline {
  font-size: 8px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 1px;
}

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 6px; align-items: center; }
.main-nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  color: var(--gray-600);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--navy); background: var(--gray-100); }
.main-nav a.active { color: var(--red); }

.nav-cta { flex-shrink: 0; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  padding: 16px 24px 24px;
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--gray-100); }
.mobile-menu .btn { margin-top: 8px; display: flex; justify-content: center; }


/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
/* background decorations */
.hero__bg-decor { position: absolute; inset: 0; pointer-events: none; }
.hero__circle {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
}
.hero__circle--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #2a50c8, transparent 70%);
  top: -200px; right: -150px;
}
.hero__circle--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  bottom: -100px; left: -80px;
  opacity: .1;
}
.hero__stripe {
  position: absolute;
  top: 0; bottom: 0; right: 42%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.06) 30%, rgba(255,255,255,.06) 70%, transparent);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 80px;
  position: relative;
  z-index: 1;
}
.hero__content { color: var(--white); }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--gold);
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
}
.hero__title-line {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}
.hero__title-line--gold {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245,197,24,.35);
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hero__date,
.hero__location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.hero__date { color: var(--white); font-size: 15px; font-weight: 800; }
.hero__date svg, .hero__location svg { color: var(--gold); flex-shrink: 0; }

/* Hero image */
.hero__image-wrap { position: relative; }
.hero__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.hero__image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,24,64,.3) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.hero__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10,24,64,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  z-index: 2;
  color: var(--white);
}
.badge-num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}
.badge-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .5px;
}

/* Bottom color stripe */
.hero__bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  display: flex;
}
.bar-segment { flex: 1; }
.bar-segment--red  { background: var(--red); }
.bar-segment--gold { background: var(--gold); }
.bar-segment--blue { background: var(--navy-light); }


/* ─── BENEFITS BAR ──────────────────────────────────────────── */
.benefits {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.benefits__inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0;
  padding-block: 40px;
}
.benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
}
.benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-card__icon--blue  { background: rgba(26,48,128,.1); color: var(--navy-light); }
.benefit-card__icon--gold  { background: rgba(245,197,24,.15); color: var(--gold-dark); }
.benefit-card__icon--green { background: rgba(34,139,34,.1);  color: #228b22; }

.benefit-card__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.benefit-card__desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}
.benefit-divider {
  width: 1px;
  height: 60px;
  background: var(--gray-200);
  flex-shrink: 0;
}


/* ─── O QUE TE ESPERA ────────────────────────────────────────── */
.espera {
  background: var(--off-white);
  padding-block: 80px;
}
.espera__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.espera-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 20px 28px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.espera-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-light);
}
.espera-card:hover .espera-card__icon { background: var(--navy); color: var(--white); }

.espera-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(26,48,128,.08);
  color: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.espera-card__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.espera-card__desc {
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.55;
}


/* ─── PATROCINADORES ─────────────────────────────────────────── */
.sponsors {
  background: var(--white);
  padding-block: 64px;
  border-bottom: 1px solid var(--gray-200);
}
.sponsors__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sponsors__track-outer {
  flex: 1;
  overflow: hidden;
}
.sponsors__track {
  display: flex;
  gap: 16px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.sponsor-item {
  min-width: 130px;
  height: 70px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.sponsor-item span {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 1px;
}
.sponsor-item:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow-sm);
}
.sponsors__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 22px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  user-select: none;
}
.sponsors__arrow:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}


/* ─── SOBRE O EVENTO ─────────────────────────────────────────── */
.about {
  background: var(--white);
  padding-block: 80px;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__text p {
  margin-top: 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}
.about__text strong { color: var(--navy); font-weight: 700; }
.about__btn { margin-top: 32px; }

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.about__img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-md);
}


/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-top: 3px solid var(--gold);
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  padding-block: 40px;
}
.stat-item {
  flex: 1;
  text-align: center;
  color: var(--white);
  padding: 8px 16px;
}
.stat-item__num {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-item__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.12);
}


/* ─── POR QUE PARTICIPAR ─────────────────────────────────────── */
.why {
  background: var(--off-white);
  padding-block: 80px;
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why__list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.why__list-item:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}
.why__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(212,43,32,.4);
}
.why__cta { margin-top: 32px; }

.why__image-wrap { display: flex; justify-content: center; }
.why__image-frame {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  outline: 3px solid var(--gold);
}
.why__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}


/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 100%);
  padding-block: 72px;
  overflow: hidden;
}
.cta-banner__decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner__decor--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,43,32,.25) 0%, transparent 70%);
  bottom: -200px; right: -100px;
}
.cta-banner__decor--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,.15) 0%, transparent 70%);
  top: -100px; left: 30%;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 36px;
}
.cta-banner__logo-wrap { flex-shrink: 0; }
.cta-banner__content { flex: 1; color: var(--white); }
.cta-banner__title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.cta-banner__sub {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}
.cta-banner__buttons { display: flex; gap: 16px; flex-wrap: wrap; }


/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr 1fr;
  gap: 48px;
  padding-block: 60px;
}
.footer-brand {}
.footer-tagline {
  margin-top: 12px;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  letter-spacing: 1.5px;
}

.footer-col__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-info-list { display: flex; flex-direction: column; gap: 12px; }
.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-info-list svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}


/* ─── SCROLL TO TOP ──────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--red);
  transform: translateY(-3px);
}


/* ─── ENTRANCE ANIMATIONS ────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .3, 1);
}
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate="count-up"]   { transform: translateY(20px); }

[data-animate].in-view {
  opacity: 1;
  transform: none;
}


/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .espera__grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-block: 60px 80px;
    gap: 40px;
  }
  .hero__image-wrap { order: -1; }
  .hero__img { height: 260px; }

  .benefits__inner { flex-direction: column; gap: 24px; padding-block: 32px; }
  .benefit-card { padding: 0; }
  .benefit-divider { width: 80px; height: 1px; }

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

  .about__inner,
  .why__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__img-badge { display: none; }

  .stats-bar__inner { flex-wrap: wrap; gap: 0; }
  .stat-item { min-width: 50%; }
  .stat-divider { display: none; }

  .why__image-frame { width: 280px; height: 280px; }

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__buttons { justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .espera__grid { grid-template-columns: 1fr 1fr; }
  .hero__title-line { font-size: 38px; }
}
