/* FrancaCup — Home
   Estilos exclusivos da página inicial.
*/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 64px;
  align-items: center;
}


.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03),
    transparent 64%
  );
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.orbit-card,
.floating-card,
.floating-pill {
  position: relative;
  z-index: 2;
  border: 1px solid var(--border-soft);
  background: rgba(23, 27, 35, 0.78);
  backdrop-filter: blur(22px);
}

.orbit-card-main {
  width: min(100%, 400px);
  min-height: 360px;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}


.orbit-card h2 {
  font-size: 56px;
  margin-top: 72px;
}

.orbit-card p,
.experience-card p,
.info-card p,
.timeline-item p,
.stories-panel p,
.faq p,
.footer p {
  color: var(--muted);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.mini-stats div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
}

.mini-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.mini-stats span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  margin-top: 6px;
}

.floating-pill {
  position: absolute;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
}

.pill-blue {
  top: 96px;
  left: 42px;
  color: #cfe1ff;
  background: rgba(59, 130, 246, 0.12);
}

.pill-orange {
  right: 22px;
  bottom: 132px;
  color: #ffd9c2;
  background: rgba(249, 115, 22, 0.12);
}

.floating-card {
  position: absolute;
  width: 220px;
  padding: 18px;
  border-radius: 20px;
}

.floating-card span {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  line-height: 1.25;
}

.small-card-top {
  top: 30px;
  right: 16px;
}

.small-card-bottom {
  bottom: 40px;
  left: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.about-video-heading .section-kicker {
  font-size: 22px;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.about-video-heading h2 {
  max-width: 680px;
  font-size: clamp(32px, 2.2vw, 46px);
  line-height: 1.04;
}

.about-copy .section-kicker {
  font-size: 27px;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}

.about-copy h2 {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: clamp(34px, 2.35vw, 50px);
  line-height: 1.03;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.16),
      transparent 32%
    ),
    radial-gradient(
      circle at 80% 35%,
      rgba(249, 115, 22, 0.12),
      transparent 32%
    ),
    rgba(23, 27, 35, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    transparent 42%
  );
  pointer-events: none;
  z-index: 1;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-caption {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.section-copy h2 {
  max-width: 620px;
}

.section-text {
  color: var(--muted);
  font-size: 18px;
}

.section-text p + p {
  margin-top: 22px;
}


.info-card {
  padding: 24px;
  min-height: 250px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 44px;
}

.card-icon.blue {
  background: var(--blue-soft);
  color: #cfe1ff;
}

.card-icon.orange {
  background: var(--orange-soft);
  color: #ffd9c2;
}

.info-card h3 {
  margin-bottom: 12px;
}

.manifesto {
  padding: 110px 0;
}

.manifesto-card {
  max-width: 940px;
  text-align: center;
  padding: clamp(42px, 7vw, 76px) clamp(24px, 6vw, 72px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(59, 130, 246, 0.1),
      transparent 30%
    ),
    radial-gradient(
      circle at 84% 24%,
      rgba(249, 115, 22, 0.1),
      transparent 28%
    ),
    rgba(30, 36, 48, 0.42);
}

.manifesto-card .section-kicker {
  margin-bottom: 20px;
}

.manifesto-card h2 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(40px, 5vw, 74px);
}

.manifesto-text {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 20px);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.experience-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.experience-card.featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(
    circle at top right,
    rgba(249, 115, 22, 0.18),
    transparent 36%
  );
  pointer-events: none;
}

.experience-card h3 {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 0.88;
  text-transform: uppercase;
  margin: 26px 0 20px;
}

.experience-card ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 32px;
}

.experience-card li {
  color: var(--muted);
  font-size: 14px;
}

.experience-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--orange);
  margin-right: 10px;
}

.experience-card.muted {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-link {
  display: inline-flex;
  color: var(--text);
  font-weight: 800;
  margin-top: 24px;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  color: var(--orange);
}

.disabled-link {
  color: var(--muted);
  cursor: default;
}

.disabled-link::after {
  content: "";
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.timeline-item {
  padding: 22px;
  min-height: 240px;
}

.timeline-item span {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--orange);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 64px;
}

.timeline-item h3 {
  margin-bottom: 10px;
}

.stories-panel {
  padding: 28px;
}

.story-placeholders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.story-placeholders div {
  min-height: 120px;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08),
    rgba(249, 115, 22, 0.08)
  );
}



@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .split-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual { min-height: 500px; }

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

@media (max-width: 820px) {
  .hero { padding-top: 130px; }
  .hero-visual { display: none; }

  .four-cards,
  .timeline,
  .footer-grid { grid-template-columns: 1fr; }

  .timeline-item { min-height: auto; }
  .timeline-item span { margin-bottom: 36px; }
}

@media (max-width: 560px) {
  .experience-card ul,
  .story-placeholders { grid-template-columns: 1fr; }
}
