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

/* VARIABLES */
:root {
  --bg: #f8f7f4;
  --bg-soft: #ffffff;
  --card: #ffffff;

  --primary: #c9a227;
  --primary-hover: #e6c65c;

  --text: #1a1a1a;
  --muted: #6b6b6b;

  --line: #e5e5e5;
  --shadow: rgba(0, 0, 0, 0.05);
}

/* BASE */
body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
header {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 60px;
}

/* SELECT */
select {
  background: white;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 20px;
  color: var(--text);
}

/* BOTONES */
.boton {
  background: linear-gradient(135deg, #c9a227, #e6c65c);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(201,162,39,0.3);
  transition: all 0.3s ease;
}

.boton:hover {
  transform: translateY(-2px);
}

/* HERO */
main {
  text-align: center;
  padding: 120px 20px;
  background: radial-gradient(circle at top, #ffffff, #f1f0ec);
}

main h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

main p {
  color: var(--muted);
  margin-bottom: 15px;
}

/* FORM */
form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

input[type="email"] {
  background: white;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px;
  border-radius: 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 5px 15px var(--shadow);
}

/* TENDENCIAS */
.tendencias {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.tendencias h2 {
  margin-bottom: 20px;
}

.tendencias h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin-top: 8px;
}

/* CARRUSEL */
.carrusel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.carrusel::-webkit-scrollbar {
  display: none;
}

.pelicula {
  position: relative;
  min-width: 160px;
  scroll-snap-align: start;
}

.pelicula img {
  width: 100%;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pelicula img:hover {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pelicula span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 3rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 5px black;
}

/* MOTIVOS */
.motivos {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.motivos h2 {
  text-align: center;
  margin-bottom: 30px;
}

.motivo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--card);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px var(--shadow);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card p {
  color: var(--muted);
  margin-top: 10px;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 60px auto;
}

.pregunta {
  background: white;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
}

.pregunta button {
  width: 100%;
  padding: 15px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
}

.pregunta button:hover {
  background: #f5f5f5;
}

.pregunta p {
  padding: 0 15px 15px;
  color: var(--muted);
}

/* EMAIL */
.email {
  text-align: center;
  margin: 60px auto;
}

.email p {
  margin-bottom: 10px;
  color: var(--muted);
}

/* FOOTER */
footer {
  background: #f1f0ec;
  padding: 40px 0;
}

.footer-content {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.footer-content ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
}

.footer-content a {
  color: var(--muted);
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .motivo {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .motivo {
    grid-template-columns: 1fr;
  }

  .footer-content ul {
    grid-template-columns: 1fr;
  }

  main h1 {
    font-size: 2rem;
  }
}