/* ========================= */
/* PALETA OFICIAL PPTT v2    */
/* Cinematic Clay Night      */
/* ========================= */
:root {
  --clay: #B85C24;
  --clay-light: #D97A37;
  --stadium-blue: #0A1A2A;
  --spotlight-blue: #3E8FFF;
  --deep-shadow: #050A0F;
  --white-warm: #F5F7FA;

  --radius: 14px;
  --transition: 0.25s ease;
}

/* ========================= */
/* RESET                     */
/* ========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--stadium-blue);
  color: var(--white-warm);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

.section {
  padding: 110px 6%;
  max-width: 1450px;
  margin: auto;
}

/* ========================= */
/* HIGHLIGHT                 */
/* ========================= */
.highlight {
  color: var(--spotlight-blue);
  font-weight: 700;
}

/* ========================= */
/* HERO – Cinematic Fixed BG */
/* ========================= */
/* ======================================= */
/* HERO - OVERLAY CINE (Opción 1)          */
/* ======================================= */

.hero {
  position: relative;
  padding: 160px 6% 220px;
  text-align: center;
  color: white;
  background: url('../images/background-hero.png') center/cover no-repeat fixed;
}

/* Overlay degradado cinematográfico */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.22) 35%,
    rgba(0, 0, 0, 0.10) 55%,
    rgba(0, 0, 0, 0.40) 75%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 5; /* el contenido está por encima del overlay */
}


.hero-bg { display: none; }


.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.hero-sub {
  font-size: 1.6rem;
  margin-top: 18px;
  color: var(--spotlight-blue);
  font-weight: 600;
}

.hero-prize {
  margin-top: 32px;
  font-size: 1.6rem;
  font-weight: 700;
}

/* =============================== */
/* HERO — OPTIMIZACIÓN PARA MÓVIL */
/* =============================== */

@media (max-width: 768px) {

  .hero {
    padding: 90px 6% 140px; /* antes 160 / 220 – reducido */
  }

  .hero-content {
    max-width: 95%;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2.2rem; /* antes 3.4rem */
    line-height: 1.15;
  }

  .hero-sub {
    font-size: 1.25rem;  /* antes 1.6rem */
    margin-top: 12px;
  }

  .hero-prize {
    font-size: 1.35rem; /* antes 1.6rem */
    margin-top: 22px;
  }

  .hero-cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-cta .btn {
    padding: 14px 22px;
    font-size: 1rem;
  }
}


/* ========================= */
/* BOTONES MODERNOS          */
/* ========================= */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

/* Botón principal */
.btn-primary {
  background: var(--spotlight-blue);
  color: var(--white-warm);
  box-shadow: 0 0 14px rgba(62, 143, 255, 0.5);
}

.btn-primary:hover {
  background: #62a4ff;
  transform: translateY(-2px);
}

/* Botón secundario */
.btn-secondary {
  background: transparent;
  border: 2px solid var(--spotlight-blue);
  color: var(--spotlight-blue);
}

.btn-secondary:hover {
  background: rgba(62, 143, 255, 0.12);
  transform: translateY(-2px);
}

/* ========================= */
/* TITULOS & TEXTOS          */
/* ========================= */
h2 {
  font-size: 2.5rem;
  margin-bottom: 22px;
  font-weight: 800;
  text-align: center;
}

.section-text p {
  max-width: 600px;
  font-size: 1.12rem;
}

/* ========================= */
/* GLASS EFFECT              */
/* ========================= */
.glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

/* ========================= */
/* PREMIOS – Glass Clay      */
/* ========================= */
.prize-grid {
  margin-top: 60px;
  display: grid;
  gap: 45px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.prize-box {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(10, 26, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.prize-box h4 {
  color: var(--spotlight-blue);
  margin-bottom: 18px;
  font-size: 1.3rem;
}

/* ========================= */
/* GALERÍA ROTATIVA          */
/* ========================= */
.gallery {
  margin-top: 50px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  height: 420px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

/* ========================= */
/* MARCAS / CONTACTO         */
/* ========================= */
.marcas, .contacto {
  text-align: center;
}

.icon-list li {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/* ========================= */
/* RESPONSIVE                */
/* ========================= */
@media (max-width: 768px) {

  .hero {
    padding: 160px 8% 190px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-sub {
    font-size: 1.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}


