/* Estilos específicos para la página de packs */

/* Banner Features */
.banner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.banner-features span {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

/* Packs grid */
.packs-section {
  padding: 5rem 0;
  background-color: var(--color-cream);
}

.packs-section h2,
.inspiracion-section h2,
.crea-pack-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.packs-section h2::after,
.inspiracion-section h2::after,
.crea-pack-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Pack card styling */
.pack-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pack-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pack-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.pack-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.pack-card:hover .pack-image img {
  transform: scale(1.05);
}

.pack-info {
  padding: 1.5rem;
  text-align: center;
}

.pack-info h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--color-olive);
  margin-bottom: 0.8rem;
}

.pack-summary {
  font-style: italic;
  color: var(--color-brown);
  margin-bottom: 0.8rem;
}

.pack-price {
  display: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-honey);
  margin-bottom: 1.2rem;
}

.ver-detalles {
  background: none;
  border: 2px solid var(--color-honey);
  color: var(--color-olive);
  font-family: var(--font-text);
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.ver-detalles:hover {
  background-color: var(--color-honey);
  color: white;
  transform: translateY(-3px);
}

/* Inspiración gallery */
.inspiracion-section {
  padding: 5rem 0;
  background-color: white;
}

.inspiracion-galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.galeria-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.galeria-item:hover {
  transform: translateY(-5px);
}

.galeria-imagen {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
  cursor: pointer;
}

.galeria-item:hover .galeria-imagen {
  transform: scale(1.05);
}

.galeria-item p {
  display: none;
}

/* Crea tu propio pack section */
.crea-pack-section {
  padding: 5rem 0;
  background-color: var(--color-cream);
}

.crea-pack-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.crea-description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.option-item {
  background-color: white;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.option-item:hover {
  transform: translateY(-5px);
}

.option-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.option-item h3 {
  font-family: var(--font-title);
  color: var(--color-olive);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.crea-contacto {
  background-color: white;
  padding: 2.5rem;
  border-radius: 15px;
  margin-top: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.crea-contacto p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.crea-email {
  font-weight: 600;
  font-size: 1.3rem !important;
  color: var(--color-olive);
  margin: 1.5rem 0 !important;
}

.crea-contacto .cta-button {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
}

/* Modal Styles */
.pack-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  width: 90%;
  max-width: 900px;
  border-radius: 12px;
  position: relative;
  animation: modalFadeIn 0.4s;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(-30px);}
  to {opacity: 1; transform: translateY(0);}
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-dark);
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--color-honey);
}

.modal-body {
  padding: 2rem;
}

.modal-pack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.modal-imagen {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.modal-imagen img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-detalles h2 {
  font-family: var(--font-title);
  color: var(--color-olive);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.modal-precio {
  display: none;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-honey);
  margin-bottom: 1.5rem;
}

.modal-contenido {
  margin-bottom: 1.5rem;
}

.modal-contenido h3 {
  font-family: var(--font-title);
  color: var(--color-honey);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.modal-contenido ul {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

.modal-contenido li {
  margin-bottom: 0.5rem;
}

.modal-contenido .ideal {
  font-style: italic;
  color: var(--color-brown);
  margin-top: 1rem;
  font-weight: 500;
}

.modal-cta {
  margin-top: 2rem;
  text-align: center;
}

.modal-cta p {
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .packs-grid,
  .inspiracion-galeria {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-pack {
    grid-template-columns: 1fr;
  }
  
  .modal-imagen {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .inspiracion-galeria {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .options-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto 2rem;
  }
  
  .crea-contacto {
    padding: 1.5rem;
  }
  
  .crea-email {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 576px) {
  .inspiracion-galeria {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .galeria-imagen {
    height: 200px;
  }
  
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-detalles h2 {
    font-size: 1.8rem;
  }
}