@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500;700;900&family=Montserrat:wght@400;500;700&display=swap');

:root{
  --bg: #242424;
  --white: #ffffff;
  --textDark: #1a1a1a;
  --textLight: #f4f4f4;
  --red: #c92127;

  --container: 1100px;
  --radius: 18px;
}

.section{
  padding: 70px 0;
}

.sectionDark{
  background: linear-gradient(180deg, #242424 0%, #1e1e1e 100%);
  color: var(--textLight);
  position: relative;
  overflow: hidden;
}

.sectionDark::before{
  content: "";
  position: absolute;
  inset: -220px -220px auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(201,33,39,0.22) 0%, rgba(201,33,39,0) 65%);
  pointer-events: none;
}

.sectionLight{
  background: var(--white);
  color: var(--textDark);
}

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}

/* “BackUp Games” no topo */
.eyebrow{
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0 0 14px 0;
  font-size: 1.05rem;
  text-align: center; /* centrado */
}

.title{
  font-family: "Jost", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 18px 0;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  text-align: center;
}

.textBlock{
  max-width: 820px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  line-height: 1.75;
  font-weight: 500; /* mais legível por defeito */
}

.sectionLight .textBlock{
  color: var(--textDark);
}

.textBlock p{
  margin: 0 0 14px 0;
}

span{
  color: var(--red);
}

.gridTwo{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
  margin-top: 22px;
}

.mediaCard{
  background: rgba(36,36,36,0.06);
  border: 2px solid rgba(201,33,39,0.25);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.gameImage{
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  border: 6px solid var(--red);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.mediaHint{
  font-family: "Montserrat", sans-serif;
  margin: 14px 0 0 0;
  line-height: 1.55;
  font-weight: 500;
}

.ctaRow{
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.cta{
  font-family: "Jost", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;

  /* maior e mais “premium” */
  font-size: 1.05rem;
  padding: 18px 30px;

  border-radius: 12px;
  cursor: pointer;
  transition: transform .15s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.cta:active{
  transform: translateY(1px);
}

.ctaPrimary{
  background: var(--white);
  color: #101010;
  border: 3px solid var(--red);
}

.ctaPrimary:hover{
  background: var(--red);
  color: var(--white);
}

.ctaOutline{
  background: transparent;
  color: var(--textLight);
  border: 3px solid var(--red);
}

.ctaOutline:hover{
  background: var(--red);
  color: var(--white);
}

.fundingCard{
  max-width: 680px;
  margin: 26px auto 0 auto;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.fundingLabel{
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin: 0 0 8px 0;
  font-weight: 700;
}

.fundingValue{
  font-family: "Jost", sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 4.2vw, 3.7rem);
  margin: 0 0 10px 0;
}

.fundingThanks{
  font-family: "Montserrat", sans-serif;
  margin: 0;
  opacity: 0.95;
  font-weight: 500;
}

/* Animação leve */
@media (prefers-reduced-motion: no-preference){
  .section .container{
    animation: fadeUp .55s ease both;
  }
  @keyframes fadeUp{
    from{ opacity: 0; transform: translateY(10px); }
    to{ opacity: 1; transform: translateY(0); }
  }
}

/* Mobile */
@media (max-width: 1000px){
  .gridTwo{
    grid-template-columns: 1fr;
  }
}
