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

/* BASE */
body {
  font-family: Arial, sans-serif;
}

/* CONTENEDOR */
.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  border-bottom: 2px solid #007936;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* LOGO */
.logo {
  color: #007936;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
}

.menu a {
  margin-left: 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

/* HOVER */
.menu a:hover {
  color: #007936;
}

/* BOTÓN PRINCIPAL */
.btn-main {
  background: #007936;
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 6px;
}

/* BOTÓN DESTACADO */
.btn-highlight {
  background: #e5f5ec;
  color: #007936 !important;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
}

/* TOGGLE MOBILE */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 900px) {

  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    border-top: 1px solid #eee;
    padding: 10px 15px;
  }


  .menu a {
    display: block;
    padding: 12px 15px;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 6px;
    margin-bottom: 8px;

  }



  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

}


  /* EFECTO BOTONES */
  .menu a.btn-main,
  .menu a.btn-highlight {
    transition: all 0.2s ease;
    cursor: pointer;
    padding-left: 15px;
    padding-right: 15px;

  }

  /* HOVER VERDE */
  .menu a.btn-main:hover {
    background: #00994d; /* verde un poco más claro */
    transform: translateY(-1px);
  }

  /* HOVER CLARO */
  .menu a.btn-highlight:hover {
    background: #d4efe2;
    transform: translateY(-1px);
  }


.footer {
  background: #0d3f2f; /* verde oscuro */
  color: #ffffff;
  margin-top: 40px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 0;
}

/* COLUMNAS */
.footer-col h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  color: #cfe9dc;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col a:hover {
  color: #ffffff;
}

/* LOGO */
.footer-logo {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

/* TEXTO */
.footer-col p {
  font-size: 14px;
  color: #cfe9dc;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  padding: 15px;
  background: #06261c;
}

/* RESPONSIVE */
@media (max-width: 900px) {

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

}

/* BREADCRUMB */

.breadcrumb-section {
    margin-top: 0;
    padding: 14px 0;
    background: #f8faf9;
    border-bottom: 1px solid #e6e6e6;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: #4b587c;
}

.breadcrumb a {
  color: #007936;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}


/* BALNEARIO HERO */

.balneario-hero {
  padding: 30px 0 20px;
}

.balneario-hero-title {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.balneario-hero h1 {
  color: #007936;
  font-size: 32px;
  line-height: 1.2;
}

.stars {
  color: #f2b705;
  font-size: 16px;
  letter-spacing: 2px;
}

.balneario-location {
  margin-top: 12px;
  color: #4b587c;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-svg {
  color: #355c9c;
  flex-shrink: 0;
}

.balneario-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

/* BOTONES FICHA BALNEARIO */
.btn-primary,
.btn-secondary {
  background: #007936;
  color: #ffffff;
  border: 1px solid #007936;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* HOVER BOTONES FICHA */
.btn-primary:hover,
.btn-secondary:hover {
  background: #00994d;
  border-color: #00994d;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 121, 54, 0.22);
}


/* GALERÍA LIGERA */

.balneario-gallery-section {
  padding: 15px 0 35px;
}

.balneario-gallery {
  width: 100%;
}

.gallery-main-image {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-main-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.gallery-main-image span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  color: #111;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
}


/* MODAL GALERÍA */

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  display: none;
  padding: 20px;
  overflow-y: auto;
}

.gallery-modal.active {
  display: block;
}

.gallery-modal-content {
  max-width: 1100px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.gallery-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border: 0;
  background: #007936;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}

.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-modal-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}


/* DESCRIPCIÓN */

.balneario-description {
  padding: 35px 0;
}

.balneario-description h2,
.reviews-summary-section h2,
.faq-section h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #001442;
}

.content-text {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
}

.content-text p {
  margin-bottom: 18px;
}


/* OPINIONES RESUMEN */

.reviews-summary-section {
  padding: 35px 0;
}

.reviews-summary {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: start;
}

.reviews-score-card {
  background: #f3f5ff;
  padding: 35px 25px;
  border-radius: 4px;
}

.reviews-score {
  color: #4057d8;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  background: #0b65d8;
  color: #fff;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 13px;
}

.reviews-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 30px;
}

.review-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  font-size: 14px;
}

.review-bar > div {
  grid-column: 1 / 3;
  height: 4px;
  background: #e5eefc;
  border-radius: 4px;
  overflow: hidden;
}

.review-bar > div span {
  display: block;
  height: 100%;
  background: #07143f;
}


/* OPINIONES INDIVIDUALES */

.reviews-list-section {
  padding: 20px 0 35px;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.review-card {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 28px 30px;
}

.review-card h3 {
  font-size: 18px;
  margin-bottom: 30px;
  color: #001442;
}

.review-card-score {
  color: #4057d8;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 25px;
}

.review-card ul {
  list-style: none;
  margin: 15px 0 25px;
}

.review-card li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.review-small-bars {
  margin-top: 20px;
}

.review-bar.small {
  margin-bottom: 8px;
}

.review-date {
  color: #5d6680;
  font-size: 14px;
  margin-top: 15px;
}


/* FAQ */

.faq-section {
  padding: 40px 0 60px;
}

.faq-container {
  border-top: 1px solid #ddd;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: #3446ff;
  font-weight: bold;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 0 18px;
  color: #222;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}


/* RESPONSIVE BALNEARIO */

@media (max-width: 900px) {

  .balneario-hero h1 {
    font-size: 26px;
  }

  .balneario-actions {
    flex-direction: column;
    align-items: stretch;
  }


  .btn {
    width: 100%;
  }

  .gallery-main-image img {
    aspect-ratio: 4 / 3;
  }

  .gallery-modal-grid {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
  }

  .reviews-bars {
    grid-template-columns: 1fr;
  }

  .reviews-list {
    grid-template-columns: 1fr;
  }

}
/* PRECIO FICHA BALNEARIO */
.balneario-price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f2fbf6;
  border: 1px solid #c8e8d7;
  border-radius: 8px;
  padding: 11px 16px;
  min-height: 50px;
}

.price-label {
  font-size: 18px;
  color: #2b3a33;
  white-space: nowrap;
}

.price-value {
  font-size: 28px;
  color: #007936;
  font-weight: 700;
  white-space: nowrap;
}
