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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #ffffff;
      color: #1a1a1a;
    }

    /* HEADER */

    header {
      position: fixed;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(8px);
      z-index: 1000;
    }

    header img {
      height: 75px;
    }

    nav a {
      margin: 0 15px;
      text-decoration: none;
      color: #0a2540;
      font-weight: 600;
    }

    .btn-nav {
      padding: 8px 16px;
      background: #0a2540;
      color: white;
      border-radius: 20px;
      text-decoration: none;
      transition: 0.3s;
    }

    .btn-nav:hover {
      background: #163a63;
    }

    /* HERO */

    .hero {
      min-height: 75vh;
      background:
        linear-gradient(
          rgba(0,0,0,0.55),
          rgba(0,0,0,0.45)
        ),
        url('/img/eventos-camisetas.webp') center/cover no-repeat;

      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 160px 20px 100px;
    }

    .hero-content {
      max-width: 900px;
    }

    .hero h1 {
      font-size: 3.3rem;
      margin-bottom: 25px;
      line-height: 1.2;
    }

    .hero p {
      font-size: 1.2rem;
      line-height: 1.9;
    }

    .hero-buttons {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .hero-btn {
      padding: 14px 30px;
      border-radius: 35px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

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

    .primary-btn {
      background: white;
      color: #0a2540;
    }

    .secondary-btn {
      background: #25D366;
      color: white;
    }

    /* CONTENT */

    .content-section {
      max-width: 1200px;
      margin: auto;
      padding: 90px 20px;
    }

    .content-section h2 {
      font-size: 2.2rem;
      margin-bottom: 25px;
      color: #0a2540;
    }

    .content-section p {
      margin-bottom: 28px;
      line-height: 2;
      color: #555;
      font-size: 1.05rem;
    }

    .highlight-box {
      background:
        linear-gradient(
          135deg,
          #0a2540,
          #163a63
        );

      color: white;
      border-radius: 25px;
      padding: 50px;
      margin: 70px 0;
    }

    .highlight-box h2 {
      color: white;
      margin-bottom: 20px;
    }

    .highlight-box p {
      color: rgba(255,255,255,0.9);
      margin-bottom: 0;
    }

    /* FOOTER */

    footer {
      background: #081c31;
      color: white;
      padding: 70px 20px 30px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 60px;
    }

    .footer-column img {
      width: 180px;
      margin-bottom: 20px;
    }

    .footer-column p {
      color: rgba(255,255,255,0.7);
      line-height: 1.8;
      font-size: 0.95rem;
    }

.footer-legal-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: 0.3s;
}

.footer-legal-link:hover {
  color: white;
}

    .footer-column h3 {
      margin-bottom: 20px;
      font-size: 1.1rem;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: 0.3s;
      width: fit-content;
    }

    .footer-links a:hover {
      color: white;
      transform: translateX(4px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 50px;
      padding-top: 25px;
      text-align: center;
      color: rgba(255,255,255,0.5);
      font-size: 0.9rem;
    }

    /* RESPONSIVE */

    @media (max-width: 768px) {

      header {
        padding: 15px 20px;
      }

      header img {
        height: 60px;
      }

      nav a {
        margin: 0 8px;
        font-size: 0.9rem;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .content-section h2 {
        font-size: 1.8rem;
      }

      .highlight-box {
        padding: 35px 25px;
      }

      .footer-container {
        grid-template-columns: 1fr;
        gap: 45px;
      }

      footer {
        text-align: center;
      }

      .footer-links a {
        width: 100%;
      }

    }
