body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7faf9;
  margin: 0;
  color: #1a2226;
}

header {
  background: linear-gradient(90deg, #2ecc40 80%, #009688 100%);
  color: #fff;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 32px rgba(34, 60, 80, 0.10);
  min-height: 80px;
}
.header-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  padding: 0 2em;
  justify-content: flex-start;
  gap: 2em;
}
.logo-link { display: flex; align-items: center; }
.logo-img { width: 44px; height: 44px; border-radius: 50%; background: #fff; }
.logo-text {
  font-size: 1.7rem;
  font-weight: 800;
  margin-left: 0.55em;
  letter-spacing: 1.2px;
  display: inline-block;
}
.logo-text .resaltado { color: #ffd600; }
.logo-text .verde { color: #fff; }

nav { margin-left: auto; display: flex; align-items: center; }
nav .nav-list {
  display: flex;
  gap: 1.5em;
  list-style: none;
  background: none;
  margin: 0;
  padding: 0;
}
nav .nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.07em;
  padding: 0.5em 1.5em;
  border-radius: 99em;
  transition: background 0.18s, color 0.18s;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
nav .nav-list a.active, nav .nav-list a:hover {
  background: #ffd600;
  color: #2ecc40;
  font-weight: bold;
}
.nav-toggle { display: none; }

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.8em 2.5em 1.8em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Bloques principales */
.block {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(44, 204, 64, 0.10), 0 2px 8px rgba(44,204,64,0.09);
  width: 100%;
  margin: 2em 0;
  padding: 3em 3.5em 2.5em 3.5em;
  opacity: 0;
  transform: translateY(44px) scale(0.98);
  transition: opacity 0.75s cubic-bezier(.45,.05,.55,1), transform 0.75s cubic-bezier(.45,.05,.55,1);
  box-sizing: border-box;
  position: relative;
  font-size: 1.16em;
}
.block.visible {
  opacity: 1;
  transform: none;
}
.block-header {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 1.3em;
}
.block-title.green { color: #2ecc40; }
.block-icon { color: #2ecc40; font-size: 2em;}
.block-icon-lg { font-size: 2.4em; }
.block-secondary { color: #009688; font-weight: 600; margin: 1.2em 0 1.5em 0; font-size: 1.09em;}

/* Cuadro informativo reserva */
.info-box {
  background: #eaffec;
  border-left: 6px solid #2ecc40;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(44,204,64,0.08);
  padding: 1.3em 1.5em 1.1em 1.5em;
  margin-bottom: 2em;
  margin-top: 0.5em;
  color: #1a2226;
  animation: fadeInDown 0.7s;
}
.info-box-header {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.19em;
  color: #2ecc40;
  margin-bottom: 0.6em;
  gap: 0.7em;
}
.info-box-header i {
  font-size: 1.35em;
}
.info-box-content ol {
  margin: 0 0 0.6em 1.1em;
  padding-left: 0.9em;
}
.info-box-content li {
  margin-bottom: 0.35em;
}
.info-box-note {
  font-size: 0.97em;
  color: #009688;
  margin-top: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

/* === PRODUCTS GRID Y CARDS === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.4em;
  margin-top: 2.2em;
  margin-bottom: 1.7em;
}

.product-card {
  background: #fff;
  border-radius: 2.4em;
  box-shadow: 0 10px 36px rgba(44,204,64,0.14), 0 2px 8px rgba(44,204,64,0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  min-height: 485px;
  max-width: 440px;
  margin: 0 auto;
}
.product-card:focus-within,
.product-card:hover {
  box-shadow: 0 14px 40px rgba(44,204,64,0.17), 0 2px 8px rgba(44,204,64,0.10);
  z-index: 2;
  outline: 2px solid #ffd600;
  transform: scale(1.04);
}

.gallery-wrapper {
  padding: 1.3em 1.3em 0.7em 1.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.product-img.main-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 1.2em;
  background: #f7faf9;
  margin-bottom: 0.7em;
  box-shadow: 0 2px 8px rgba(44,204,64,0.045);
}
.gallery-thumbs {
  display: flex;
  gap: 0.35em;
  margin-bottom: 0.5em;
}
.thumb {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  object-fit: cover;
  border: 2px solid #e0e5e7;
  cursor: pointer;
  opacity: 0.7;
  transition: border 0.15s, opacity 0.15s;
}
.thumb.active,
.thumb:hover {
  border: 2px solid #2ecc40;
  opacity: 1;
}

/* Packs para productos */
.packs-list {
  margin-top: 0.6em;
  margin-bottom: 0.6em;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.pack-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  background: #eaffec;
  border-radius: 1em;
  box-shadow: 0 1px 6px rgba(44,204,64,0.07);
  padding: 0.55em 1em;
  font-weight: 500;
  flex-wrap: wrap;
}
.pack-name {
  display: flex;
  align-items: center;
  gap: 0.4em;
  color: #2ecc40;
  font-size: 1em;
  min-width: 0;
}
.pack-row .price {
  font-weight: bold;
  font-size: 1.05em;
  color: #009688;
  margin: 0 0.7em;
  min-width: 60px;
  text-align: right;
}
.btn-pack {
  background: #ffd600;
  color: #222;
  border-radius: 99em;
  padding: 0.35em 1.2em;
  font-size: 1em;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s;
  box-shadow: 0 1px 4px rgba(44,204,64,0.09);
  min-width: 90px;
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-pack:hover {
  background: #fff200;
  color: #009688;
  transform: translateY(-1px) scale(1.03);
}

.card-content {
  padding: 0 1.8em 1.8em 1.8em;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card-content h5 {
  font-size: 1.22em;
  color: #2ecc40;
  font-weight: bold;
  margin-bottom: 0.6em;
}
.price {
  background: #eaffec;
  color: #009688;
  border-radius: 1.5em;
  font-weight: 700;
  padding: 0.25em 1em;
  font-size: 1.12em;
  margin-bottom: 0.6em;
  display: inline-block;
}
.desc-preview {
  color: #222;
  font-size: 1.07em;
  margin: 0.7em 0 1.25em 0;
}

/* Botón reservar siempre visible y grande */
.btn,
.btn-primary,
.btn.btn-primary,
.btn-block,
.btn.btn-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  width: 100%;
  margin-top: 1em;
  font-size: 1.13em;
  font-weight: 700;
  padding: 0.8em 0;
  border-radius: 99em;
  border: none;
  background: linear-gradient(90deg, #2ecc40 80%, #009688 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(44,204,64,0.10);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background .18s, color .18s, box-shadow .18s, transform .14s;
}
.btn-primary:hover, .btn.btn-primary:hover {
  background: linear-gradient(90deg, #009688 80%, #2ecc40 100%);
  color: #ffd600;
  transform: translateY(-2px) scale(1.03);
}
.btn:disabled, .btn[disabled] {
  background: #f2f2f2;
  color: #bbb;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Modal Reserva */
.modal-reserva {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 60, 80, 0.16);
  z-index: 900;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.modal-reserva.open {
  display: flex;
}
.modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44, 204, 64, 0.16);
  padding: 2em 2.5em 1.5em 2.5em;
  min-width: 320px;
  min-height: 230px;
  max-width: 98vw;
  max-height: 98vh;
  position: relative;
  animation: fadeInDown 0.4s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.close-modal {
  position: absolute;
  top: 1em; right: 1em;
  background: none;
  border: none;
  color: #2ecc40;
  font-size: 2em;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.18s;
}
.close-modal:hover { color: #009688; }
.modal-content h3 {
  margin-top: 0.4em;
  margin-bottom: 1.2em;
  color: #009688;
  font-size: 1.3em;
}
.text-muted {
  color: #009688;
  font-size: 1em;
  margin-bottom: 1em;
}
.form-group {
  margin-bottom: 1.1em;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.form-group label {
  font-weight: 600;
  color: #009688;
  font-size: 1em;
}
.form-group input, .form-group select {
  padding: 0.7em;
  border-radius: 7px;
  border: 1px solid #eaffec;
  font-size: 1em;
  background: #f7faf9;
  color: #1a2226;
  transition: border 0.19s, background 0.19s;
}
.form-group.invalid input,
.form-group.invalid select {
  border-color: #d32f2f;
  background: #fff8f8;
}
.invalid-feedback {
  color: #d32f2f;
  font-size: .95em;
  display: none;
  margin-top: 0.2em;
}
.form-group.invalid .invalid-feedback {
  display: block;
}
.form-status {
  margin-top: 1em;
  font-size: 1em;
  font-weight: 700;
  color: #009688;
  min-height: 1.6em;
}
.btn-block {
  width: 100%;
}

@media (max-width: 700px) {
  .header-container { flex-direction: column; gap: 0.7em; align-items: flex-start; height: auto;}
  .logo-img { width: 38px; height: 38px;}
  .logo-text { font-size: 1.2rem;}
  .nav-toggle { display: block; position: absolute; top: 1.2em; right: 1.1em;}
  nav { width: 100%;}
  .nav-list {
    display: none;
    flex-direction: column;
    background: linear-gradient(90deg, #2ecc40 80%, #009688 100%);
    position: absolute;
    top: 3.4em;
    right: 1.1em;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(44,204,64,0.10);
    min-width: 140px;
    z-index: 99;
    padding: 0.8em 0;
  }
  .nav-list.open { display: flex;}
  .block { margin: 1.2em 0; }
  .products-grid { grid-template-columns: 1fr; gap: 1.2em;}
  .product-card { min-height: 440px; max-width: 98vw; }
  .gallery-wrapper { padding: 0.7em 0.7em 0.4em 0.7em; }
  .product-img.main-img { width: 140px; height: 140px; }
  .packs-list { gap: 0.2em; }
  .pack-row { font-size: 0.97em; padding: 0.4em 0.4em;}
  .pack-row .price { font-size: 0.97em; margin: 0 0.3em; min-width: 44px; }
  .btn-pack {
    font-size: 0.93em;
    min-width: 60px;
    max-width: 98px;
    padding: 0.33em 0.7em;
  }
}
@media (max-width: 430px) {
  .logo-img { width: 28px; height: 28px;}
  .logo-text { font-size: 1rem;}
  .block-title, .block-header { font-size: .98em;}
  .btn { font-size: 0.93em;}
}

/* FAQ */
.faq-section {
  margin-top: 2.5em;
  margin-bottom: 0.5em;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.faq-item {
  background: #eaffec;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(44,204,64,0.06);
  padding: 0.7em 1.3em 0.7em 1.3em;
}
.faq-question {
  background: none;
  border: none;
  color: #2ecc40;
  font-weight: 700;
  font-size: 1.09em;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.7em;
  outline: none;
  cursor: pointer;
  padding: 0.4em 0;
  transition: color 0.15s;
}
.faq-question i {
  transition: transform 0.24s;
}
.faq-item.open .faq-question {
  color: #009688;
}
.faq-item.open .faq-question i {
  transform: rotate(90deg);
}
.faq-answer {
  display: none;
  font-size: 1em;
  color: #333;
  margin: 0.6em 0 0.2em 2em;
  padding-right: 0.2em;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeInDown 0.4s;
}

/* Footer */
footer {
  background: #1a2226;
  color: #f3f6f7;
  text-align: center;
  padding: 1.5em 0;
  font-size: 1.11rem;
  border-radius: 32px 32px 0 0;
  letter-spacing: 0.08em;
  margin-top: 2.7em;
  box-shadow: 0 2px 8px rgba(44,204,64,0.10);
}

/* Botón volver arriba */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #009688;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.4em;
  box-shadow: 0 2px 8px rgba(44,204,64,0.10);
  cursor: pointer;
  z-index: 100;
  transition: background 0.23s, transform .3s, color .23s;
}
#scrollTopBtn.visible { display: block; }
#scrollTopBtn:hover {
  background: #2ecc40;
  color: #ffd600;
  transform: scale(1.12) rotate(-8deg);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-18px);}
  to { opacity: 1; transform: none;}
}
