/* ═══════════════════════════════════════════════════════
   incentivos.css | Incentivos page styles
   ═══════════════════════════════════════════════════════ */

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.t-hero {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}

/* ─── SUBPAGE HERO OVERRIDE ──────────────────────────── */
.subpage-hero {
  min-height: unset;
  padding: 40px 0 40px;
}

/* ─── PAGE LAYOUT ────────────────────────────────────── */
.incentivos-page {
  width: 100%;
  max-width: var(--max-w);
  padding: clamp(40px, 5vw, 80px) 0 clamp(60px, 8vw, 120px);
}

/* ─── TWO-COLUMN LAYOUT ──────────────────────────────── */
.incentivos-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

/* ─── SHARED CARD (same as normas) ──────────────────── */
.incentivos-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--divider);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.05);
  padding: clamp(28px, 3.5vw, 52px);
}

/* ─── SECTION LABEL ──────────────────────────────────── */
.incentivos-section-label {
  font-family: 'Roboto Mono', monospace;
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 28px;
}

/* ─── Q&A BLOCKS ─────────────────────────────────────── */
.incentivos-qa {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.qa-block {
  padding: 20px 0;
  border-top: 1px solid var(--divider);
}

.qa-block:first-child {
  border-top: none;
  padding-top: 0;
}

.qa-question {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 12px;
}

.qa-answers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qa-answer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.qa-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-1);
  flex-shrink: 0;
  margin-top: 6px;
  opacity: 0.5;
}

.qa-answer p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--dark-grey);
}

.qa-answer p a {
  color: var(--accent-1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── IMAGE CARD ─────────────────────────────────────── */
.incentivos-img-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--divider);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4 / 3;
  position: sticky;
  top: clamp(20px, 3vw, 40px);
}

/* desktop: show incentivo-2, hide incentivo-1 */
.incentivos-img-card .img-desktop { display: block; }
.incentivos-img-card .img-mobile   { display: none; }

.incentivos-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
.incentivos-card,
.incentivos-img-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.incentivos-card.visible,
.incentivos-img-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.incentivos-img-card { transition-delay: 0.1s; }

/* ─── CTA BANNER (shared with normas) ───────────────── */
.normas-cta {
  width: 100%;
  max-width: var(--max-w);
  background: var(--accent-1);
  border-radius: 20px;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: clamp(40px, 5vw, 80px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: 0.15s;
}

.normas-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.normas-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.normas-cta-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(26px, 3.0vw, 52px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--white);
  text-align: center;
  position: relative;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .incentivos-body {
    grid-template-columns: 1fr;
  }

  .incentivos-img-card {
    position: static;
    aspect-ratio: 16 / 9;
    order: 2; /* image goes below text on mobile */
  }

  .incentivos-card {
    order: 1;
  }

  /* mobile: swap to incentivo-1 */
  .incentivos-img-card .img-desktop { display: none; }
  .incentivos-img-card .img-mobile   { display: block; }
}
