/* =============================================
   AGROTECNOLÓGICO - Workshop Rafael Nascimento
   CSS Principal - Responsivo
   ============================================= */

/* --- Variáveis de Cores --- */
:root {
  --verde-escuro: #1A3D2B;
  --verde-lima: #A8E63D;
  --preto: #0D0D0D;
  --cinza-claro: #F1F3F2;
  --branco: #FFFFFF;
  --cinza-medio: #2a2a2a;
  --cinza-texto: #555555;
  --sombra: 0 4px 24px rgba(0,0,0,0.18);
  --radius: 10px;
  --radius-lg: 18px;
}

/* --- Reset e Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--preto);
  background: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* --- Tipografia --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.highlight {
  color: var(--verde-lima);
}

.highlight-dark {
  color: var(--verde-escuro);
}

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

/* --- Botão CTA --- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--verde-lima);
  color: var(--preto);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-cta:hover {
  background: #c5f54a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 230, 61, 0.4);
}

.btn-cta-outline {
  background: transparent;
  border: 2px solid var(--verde-lima);
  color: var(--verde-lima);
}

.btn-cta-outline:hover {
  background: var(--verde-lima);
  color: var(--preto);
}

/* --- Badge de Evento --- */
.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(168, 230, 61, 0.15);
  border: 1px solid rgba(168, 230, 61, 0.4);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: clamp(0.7rem, 2vw, 0.82rem);
  font-weight: 600;
  color: var(--verde-lima);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
  white-space: nowrap;
}

.event-badge span {
  display: none;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 230, 61, 0.15);
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  height: 44px;
  width: auto;
}

.navbar-cta {
  font-size: 0.85rem;
  padding: 10px 22px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--preto);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.8;
  transform: scale(0.75);
  transform-origin: right center;
}

.hero-bg-mobile {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 13, 13, 0.97) 0%,
    rgba(13, 13, 13, 0.88) 35%,
    rgba(13, 13, 13, 0.3) 65%,
    rgba(13, 13, 13, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 120px 0 80px;
  margin-left: 0;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content h1 {
  color: var(--branco);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-cta-group .btn-cta {
  font-size: 1.05rem;
  padding: 18px 36px;
  align-self: flex-start;
}

/* Badges de benefícios rápidos */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-badge-item svg {
  color: var(--verde-lima);
  flex-shrink: 0;
}

.whatsapp-icon {
  width: 14px !important;
  height: 14px !important;
  filter: brightness(0) saturate(100%) invert(73%) sepia(54%) saturate(1000%) hue-rotate(88deg) brightness(105%) contrast(102%);
}

.whatsapp-icon-benefit {
  width: 20px !important;
  height: 20px !important;
  filter: brightness(0) saturate(100%) invert(40%) sepia(70%) saturate(600%) hue-rotate(100deg) brightness(95%) contrast(100%);
}

.whatsapp-icon-final {
  width: 14px !important;
  height: 14px !important;
  filter: brightness(0) saturate(100%) invert(73%) sepia(54%) saturate(1000%) hue-rotate(88deg) brightness(105%) contrast(102%);
}

/* Prova social */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  max-width: 380px;
  text-align: center;
}

.hero-avatars {
  display: none;
}

.hero-avatars img {
  display: none;
}

.hero-avatars img:first-child {
  display: none;
}

.hero-social-proof p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.hero-social-proof strong {
  color: var(--verde-lima);
}

/* =============================================
   SEÇÃO: TECNOLOGIA JÁ CHEGOU
   ============================================= */
.section-tech-arrived {
  padding: 80px 0;
  background: var(--cinza-claro);
}

.section-tech-arrived .section-header {
  max-width: 520px;
  margin-bottom: 56px;
}

.section-tech-arrived .section-header h2 {
  color: var(--preto);
  margin-bottom: 16px;
}

.section-tech-arrived .highlight-dark {
  color: #2E7D32;
}

.section-tech-arrived .section-header p {
  color: var(--cinza-texto);
  font-size: 1rem;
  line-height: 1.7;
}

.section-tech-arrived .section-header .destaque {
  font-weight: 700;
  color: var(--preto);
  font-size: 1.05rem;
  display: block;
  margin-top: 12px;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-feature {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.card-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra);
  border-color: var(--verde-lima);
}

.card-feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(168, 230, 61, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--verde-escuro);
}

.card-feature-icon svg {
  width: 28px;
  height: 28px;
}

.card-feature h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--preto);
  margin-bottom: 10px;
}

.card-feature p {
  font-size: 0.88rem;
  color: var(--cinza-texto);
  line-height: 1.6;
}

/* =============================================
   SEÇÃO: O QUE VOCÊ VAI APRENDER
   ============================================= */
.section-learn {
  padding: 80px 0;
  background: var(--preto);
}

.section-learn .section-title {
  text-align: left;
  margin-bottom: 48px;
}

.section-learn .section-title h2 {
  color: var(--branco);
}

.section-learn .section-title h2 span {
  display: block;
  color: var(--verde-lima);
}

.section-title-line {
  width: 60px;
  height: 4px;
  background: var(--verde-lima);
  border-radius: 2px;
  margin-top: 14px;
}

.cards-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.card-learn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.card-learn:hover {
  background: rgba(168, 230, 61, 0.06);
  border-color: rgba(168, 230, 61, 0.3);
  transform: translateY(-4px);
}

.card-learn-icon {
  width: 60px;
  height: 60px;
  background: rgba(168, 230, 61, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--verde-lima);
}

.card-learn-icon svg {
  width: 30px;
  height: 30px;
}

.card-learn p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* =============================================
   SEÇÃO: QUEM É RAFAEL NASCIMENTO
   ============================================= */
.section-rafael {
  padding: 80px 0;
  background: var(--cinza-claro);
}

.rafael-grid {
  display: grid;
  grid-template-columns: 280px 1fr 300px;
  gap: 48px;
  align-items: start;
}

.rafael-photo-wrapper {
  position: relative;
  flex-shrink: 0;
}

.rafael-photo-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 1;
}

.rafael-photo-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--verde-escuro);
  color: var(--verde-lima);
  border-radius: var(--radius);
  padding: 12px 20px;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--sombra);
}

.rafael-photo-badge .badge-number {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.rafael-photo-badge .badge-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.rafael-info {
  padding-top: 8px;
}

.rafael-info h2 {
  color: var(--preto);
  margin-bottom: 6px;
}

.rafael-info h2 span {
  display: block;
  color: #2E7D32;
}

.rafael-info .subtitle {
  font-size: 0.95rem;
  color: var(--cinza-texto);
  margin-bottom: 20px;
  font-style: italic;
}

.rafael-info p {
  font-size: 0.95rem;
  color: var(--cinza-texto);
  line-height: 1.7;
  margin-bottom: 28px;
}

.rafael-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 16px 8px;
  background: var(--branco);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #2E7D32;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--cinza-texto);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.rafael-quote-card {
  background: var(--verde-escuro);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.rafael-quote-card::before {
  content: '';
  display: none;
}

.rafael-quote-card blockquote {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 0;
}

.rafael-quote-card cite {
  color: var(--verde-lima);
  font-weight: 700;
  font-style: normal;
  font-size: 0.9rem;
}

/* =============================================
   SEÇÃO: POR QUE PARTICIPAR AO VIVO
   ============================================= */
.section-why {
  padding: 80px 0;
  background: var(--branco);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
  justify-items: center;
}

.why-content {
  width: 100%;
}

.why-content h2 {
  color: var(--preto);
  margin-bottom: 40px;
}

.why-content h2 span {
  color: #2E7D32;
}

.why-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why-benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(26, 61, 43, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-escuro);
  flex-shrink: 0;
}

.why-benefit-icon svg {
  width: 26px;
  height: 26px;
}

.why-benefit-text h3 {
  font-size: 1rem;
  color: var(--preto);
  margin-bottom: 4px;
}

.why-benefit-text p {
  font-size: 0.9rem;
  color: var(--cinza-texto);
  line-height: 1.6;
}

/* Card de Data e Investimento */
.date-card {
  background: var(--preto);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
}

.date-card-header {
  background: var(--verde-lima);
  color: var(--preto);
  text-align: center;
  padding: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.date-card-body {
  padding: 32px 28px;
  text-align: center;
}

.date-card-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
}

.date-card-date svg {
  color: var(--verde-lima);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.date-card-date-text {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}

.date-card-date-text .day {
  font-size: 1rem;
  font-weight: 800;
  color: var(--branco);
  line-height: 1;
  white-space: nowrap;
}

.date-card-date-text .weekday {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.date-card-format {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.date-card-invest-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.date-card-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--verde-lima);
  margin-bottom: 24px;
  line-height: 1;
}

.date-card-price span {
  font-size: 1.1rem;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.date-card .btn-cta {
  width: 100%;
  justify-content: center;
  font-size: 0.92rem;
  padding: 16px;
}

.date-card-vagas {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =============================================
   SEÇÃO: PARA QUEM É
   ============================================= */
.section-for-who {
  padding: 80px 0;
  background: var(--cinza-claro);
}

.section-for-who .section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-for-who .section-title h2 span {
  color: #2E7D32;
}

.section-learn .section-title h2 span {
  color: #2E7D32;
}

.section-title-line-center {
  width: 60px;
  height: 4px;
  background: var(--verde-lima);
  border-radius: 2px;
  margin: 14px auto 0;
}

.cards-grid-4-who {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-who {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.card-who:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra);
  border-color: var(--verde-lima);
}

.card-who-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 61, 43, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-escuro);
  flex-shrink: 0;
}

.card-who-icon svg {
  width: 24px;
  height: 24px;
}

.card-who-text h3 {
  font-size: 0.95rem;
  color: var(--preto);
  margin-bottom: 6px;
}

.card-who-text p {
  font-size: 0.85rem;
  color: var(--cinza-texto);
  line-height: 1.5;
}

/* =============================================
   SEÇÃO: OFERTA
   ============================================= */
.section-offer {
  padding: 80px 0;
  background: var(--cinza-claro);
}

.offer-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.offer-content h2 {
  color: var(--preto);
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.offer-content > p {
  color: var(--cinza-texto);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.btn-cta-large {
  font-size: 1.1rem;
  padding: 20px 48px;
  margin-bottom: 24px;
  display: inline-block;
}

.offer-footer {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.5);
  margin: 0;
}

/* =============================================
   SEÇÃO: CTA FINAL
   ============================================= */
.section-final-cta {
  padding: 80px 0;
  background: var(--verde-escuro);
  position: relative;
  overflow: hidden;
}

.section-final-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 230, 61, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  justify-items: center;
}

.final-cta-text {
  text-align: center;
}

.final-cta-text h2 {
  color: var(--branco);
  margin-bottom: 12px;
}

.final-cta-text h2 span {
  color: var(--verde-lima);
}

.final-cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.7;
  margin: 0 auto;
}

.final-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-cta-right .btn-cta {
  font-size: 1rem;
  padding: 18px 36px;
  white-space: nowrap;
}

.final-cta-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.final-cta-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}

.final-cta-badge svg {
  color: var(--verde-lima);
  width: 16px;
  height: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--preto);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.7);
}

.footer-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0;
}

.footer-right {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0;
}

/* =============================================
   RESPONSIVO - TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .rafael-grid {
    grid-template-columns: 240px 1fr;
    gap: 32px;
  }

  .rafael-quote-card {
    grid-column: 1 / -1;
  }

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

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

  .date-card {
    max-width: 400px;
  }

  .final-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta-text p {
    max-width: 100%;
  }

  .final-cta-right {
    align-items: center;
  }
}

/* =============================================
   RESPONSIVO - MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  .navbar-cta {
    display: none;
  }

  /* Hero Mobile */
  /* Hero Mobile */
  .hero {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-bg {
    display: none;
  }

  .hero-bg-mobile {
    display: block;
    position: relative;
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 20%;
    order: -1;
  }

  .hero-overlay {
    display: none;
  }

  .hero-container {
    background: var(--preto);
    padding: 32px 0 48px;
  }





























  .event-badge {
    font-size: 0.65rem;
    padding: 6px 12px;
    gap: 8px;
  }

  .hero-content {
    padding: 80px 0 48px;
    max-width: 100%;
    margin-left: 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-cta-group .btn-cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px 24px;
  }

  .hero-badges {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badge-item {
    font-size: 0.82rem;
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-social-proof {
    max-width: 100%;
  }

  /* Seções */
  .section-tech-arrived,
  .section-learn,
  .section-rafael,
  .section-why,
  .section-for-who,
  .section-final-cta {
    padding: 56px 0;
  }

  .cards-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .cards-grid-5 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .cards-grid-4-who {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Rafael */
  .rafael-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rafael-photo-wrapper {
    max-width: 260px;
    margin: 0 auto;
  }

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

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .date-card {
    max-width: 100%;
  }

  /* Final CTA */
  .final-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta-right .btn-cta {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}

/* =============================================
   RESPONSIVO - MOBILE PEQUENO (max 480px)
   ============================================= */
@media (max-width: 480px) {
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }

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

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .event-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

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

/* =============================================
   ANIMAÇÕES
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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