/* ===== RESET GLOBAL ===== */
/* Evita problemas de tamaños y padding */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f5f7; /* Fondo tipo Apple */
}


/* ===================================================== */
/* ===== HERO (PORTADA PRINCIPAL) ===== */
/* ===================================================== */

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
}

/* TARJETA CENTRAL */
.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;

  width: 100%;
  max-width: 1100px;
  padding: 70px;

  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

/* TEXTO IZQUIERDO */
.left {
  max-width: 420px;
}

/* TITULO PRINCIPAL */
h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 15px 0;
  letter-spacing: -1px;
  color: #111111;
}

/* TEXTO DESCRIPTIVO */
p {
  color: #6e6e73;
  margin: 0 0 25px 0;
  font-size: 16px;
  line-height: 1.6;
}


/* ===================================================== */
/* ===== BOTONES PRINCIPALES ===== */
/* ===================================================== */

.buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* BOTÓN TIPO APPLE */
.button {
  display: inline-block;
  padding: 12px 20px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;

  font-weight: 600;
  font-size: 14px;

  transition: all 0.2s ease;
}

/* HOVER */
.button:hover {
  background: #333333;
  transform: translateY(-2px);
}


/* ===================================================== */
/* ===== ICONOS SOCIALES ===== */
/* ===================================================== */

.socials {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

/* CIRCULITOS */
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  background: #ffffff;
  border-radius: 50%;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);

  transition: 0.2s ease;
}

/* HOVER */
.socials a:hover {
  transform: translateY(-3px);
  background: #f0f0f0;
}

/* TAMAÑO ICONOS */
.socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}


/* ===================================================== */
/* ===== PERSONAJE (IMAGEN DERECHA) ===== */
/* ===================================================== */

.right img {
  width: 320px;
  max-width: 100%;
  border-radius: 20px;
  display: block;
}


/* ===================================================== */
/* ===== SECCIÓN CATALOGO ===== */
/* ===================================================== */

.catalog {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  background: #f5f5f7;
  min-height: 100vh;
}

/* TARJETA DE CATALOGO */
.catalog-container {
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  text-align: center;
}

/* TITULO CATALOGO */
.catalog h1 {
  font-size: 42px;
  margin: 0 0 10px 0;
}

/* SUBTITULO */
.subtitle {
  color: #6e6e73;
  margin-bottom: 40px;
}


/* ===================================================== */
/* ===== GALERÍA DE IMÁGENES ===== */
/* ===================================================== */

.gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* IMÁGENES */
.gallery img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;

  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;

  transition: 0.2s;
}

/* HOVER */
.gallery img:hover {
  transform: translateY(-4px);
}


/* ===================================================== */
/* ===== DESCRIPCIÓN ===== */
/* ===================================================== */

.description {
  margin-bottom: 30px;
  color: #6e6e73;
}


/* ===================================================== */
/* ===== PAQUETE / PRECIO ===== */
/* ===================================================== */

.package {
  background: #fafafa;
  padding: 30px;
  border-radius: 20px;
}

.package h2 {
  margin: 0 0 10px 0;
}

.package ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package li {
  margin: 8px 0;
}


/* ===================================================== */
/* ===== BOTÓN PRINCIPAL (CTA) ===== */
/* ===================================================== */

.cta-button {
  display: inline-block;
  margin-top: 30px;

  padding: 14px 26px;
  background: #000000;
  color: #ffffff;

  border-radius: 999px;
  text-decoration: none;

  font-weight: 600;
  font-size: 15px;

  transition: all 0.2s ease;
}

.cta-button:hover {
  background: #333333;
  transform: translateY(-2px);
}


/* ===================================================== */
/* ===== BOTÓN HOME (VOLVER) ===== */
/* ===================================================== */

.home-button {
  display: inline-block;
  margin-bottom: 30px;

  font-size: 14px;
  color: #6e6e73;
  text-decoration: none;

  transition: 0.2s ease;
}

.home-button:hover {
  color: #111111;
}


/* ===================================================== */
/* ===== RESPONSIVE (MOBILE) ===== */
/* ===================================================== */

@media (max-width: 900px) {

  /* HERO */
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 32px 24px;
    border-radius: 24px;
  }

  h1 {
    font-size: 36px;
  }

  .buttons {
    align-items: center;
  }

  .button {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }

  .right img {
    width: 260px;
  }

  /* CATALOGO */
  .catalog-container {
    padding: 36px 24px;
    border-radius: 24px;
  }

  .catalog h1 {
    font-size: 34px;
  }

  .gallery img {
    width: 100%;
    max-width: 260px;
  }
}

.notice {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
}

.gallery video {
  width: 100%;
  max-width: 200px;
  border-radius: 20px;
  background: #eee;
}
.gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;

  /* sombra suave como arriba */
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.card img,
.card video {
    opacity: 0.8;
  width: 120px;
  height: auto;
  display: block;
}

.top-nav {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 20px;
}

.top-nav a {
  text-decoration: none;
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.top-nav a:hover {
  color: #000;
}