*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0A0F1E;
  color: #ffffff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

.home {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== HEADER ===== */
.home__header {
  padding: 1.5rem 2rem;
}

.home__logo {
  display: flex;
  align-items: center;
}

.home__logo svg {
  height: 40px;
  width: auto;
}

/* ===== MAIN ===== */
.home__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.home__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #378ADD 50%, #185FA5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3rem;
  max-width: 420px;
}

/* ===== GRID ===== */
.home__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 980px;
  width: 100%;
}

@media (max-width: 1024px) {
  .home__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 650px;
  }
}

@media (max-width: 768px) {
  .home__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ===== CARDS ===== */
.home__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  overflow: hidden;
}

.home__card:hover {
  transform: translateY(-4px);
}

.home__card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.home__card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

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

/* Copa - green & gold */
.home__card--copa {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.1) 0%, rgba(234, 179, 8, 0.08) 100%);
}

.home__card--copa h2 {
  color: #4ade80;
}

.home__card--copa:hover {
  border-color: rgba(34, 197, 94, 0.6);
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.18) 0%, rgba(234, 179, 8, 0.12) 100%);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.15), 0 0 60px rgba(234, 179, 8, 0.05);
}

/* Albums - yellow & blue */
.home__card--albuns {
  border-color: rgba(234, 179, 8, 0.3);
  background: linear-gradient(160deg, rgba(234, 179, 8, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
}

.home__card--albuns h2 {
  color: #facc15;
}

.home__card--albuns:hover {
  border-color: rgba(234, 179, 8, 0.6);
  background: linear-gradient(160deg, rgba(234, 179, 8, 0.18) 0%, rgba(59, 130, 246, 0.12) 100%);
  box-shadow: 0 8px 32px rgba(234, 179, 8, 0.15), 0 0 60px rgba(59, 130, 246, 0.05);
}

/* F1 - red & carbon */
.home__card--f1 {
  border-color: rgba(239, 68, 68, 0.3);
  background: linear-gradient(160deg, rgba(239, 68, 68, 0.1) 0%, rgba(148, 163, 184, 0.08) 100%);
}

.home__card--f1 h2 {
  color: #f87171;
}

.home__card--f1:hover {
  border-color: rgba(239, 68, 68, 0.6);
  background: linear-gradient(160deg, rgba(239, 68, 68, 0.18) 0%, rgba(148, 163, 184, 0.12) 100%);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.15), 0 0 60px rgba(148, 163, 184, 0.05);
}

/* Futebol - blue & cyan */
.home__card--futebol {
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.08) 100%);
}

.home__card--futebol h2 {
  color: #60a5fa;
}

.home__card--futebol:hover {
  border-color: rgba(59, 130, 246, 0.6);
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.18) 0%, rgba(6, 182, 212, 0.12) 100%);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15), 0 0 60px rgba(6, 182, 212, 0.05);
}

/* ===== FOOTER ===== */
.home__footer {
  padding: 1.5rem 2rem;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}
