:root {
  --brand-yellow: #FAC835;
  --brand-blue: #1472BA;
  --brand-blue-dark: #0f5f98;
  --brand-yellow-soft: #fff3c7;
  --brand-blue-soft: #e9f4fc;
  --ink: #0f3f66;
  --white: #ffffff;
  --max-width: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #ffffff;
}

img {
  width: 100%;
  display: block;
  height: auto;
}

.tc-container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  backdrop-filter: blur(10px);
  background: rgba(41, 46, 49, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.7rem;
}

.header-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
}

.header-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}

.brand {
  position: static;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  color: var(--brand-yellow);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: clamp(120px, 8vw, 150px);
  height: auto;
}

.brand-fallback {
  display: none;
}

.main-nav {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--brand-yellow);
}

.hero-slider {
  min-height: clamp(520px, 72vh, 780px);
  background: url("assets/slider1.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  transition: background-image 700ms ease;
}

.hero-overlay {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 8.5rem;
  padding-bottom: 3rem;
}

.hero-content {
  color: var(--white);
  width: min(100% - 2rem, var(--max-width));
  max-width: var(--max-width);
  margin-inline: auto;
  padding-bottom: 0;
}

.hero-intro {
  max-width: 700px;
  margin-inline: auto;
  padding: 1.2rem 1.5rem;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(3px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.hero-content h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  line-height: 1.05;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.hero-description {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #f3faff;
  max-width: 58ch;
  margin-inline: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.booking-widget-placeholder {
  background: rgba(255, 243, 199, 0.96);
  border: 1px dashed rgba(20, 114, 186, 0.55);
  border-radius: 16px;
  padding: 1.35rem;
  color: var(--ink);
  max-width: 560px;
  margin-inline: auto;
}

.booking-widget-placeholder h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.booking-widget-placeholder p {
  margin-top: 0;
}

.booking-widget-placeholder button {
  border: none;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 600;
  opacity: 0.55;
  cursor: not-allowed;
}

.slider-dots {
  display: none;
}

.slider-dot {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background-color 250ms ease;
}

.slider-dot.is-active {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

.hero-search-widget {
  position: static;
  width: 100%;
  margin: 1.2rem auto 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-search-widget h2 {
  margin: 0 0 0.8rem;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  color: #111111;
}

#TSh_TSearch_ParentDiv_5536_8070 {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto !important;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(24, 30, 35, 0.72);
  backdrop-filter: blur(4px);
}

#TSh_TSearch_ParentDiv_5536_8070 > * {
  margin-inline: auto !important;
}

.hero-search-widget,
.hero-search-widget * {
  color: #111111 !important;
}

.hero-search-widget a,
.hero-search-widget label,
#TSh_TSearch_ResultsDiv_5536_8070,
#TSh_TSearch_ResultsDiv_5536_8070 * {
  color: #111111 !important;
}

.hero-search-widget input,
.hero-search-widget select,
.hero-search-widget textarea {
  color: #111111 !important;
}

.hero-search-widget input::placeholder,
.hero-search-widget textarea::placeholder {
  color: #111111 !important;
  opacity: 1;
}

#TSh_TSearch_ResultsDiv_5536_8070 {
  width: 100%;
  margin-top: 0;
}

.search-results-section {
  background: #ffffff;
  padding-top: 2.6rem;
  padding-bottom: 4rem;
  margin-bottom: 2rem;
}

.search-results-wrap {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

#TSh_TSearch_ResultsDiv_5536_8070 {
  margin-bottom: 0;
}

.split-three {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.image-card img {
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 114, 186, 0.2);
}

.text-card {
  background: var(--white);
  border: 1px solid rgba(20, 114, 186, 0.2);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 16px 34px rgba(20, 114, 186, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-card h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: var(--brand-blue-dark);
  line-height: 1.05;
}

.whatsapp-link {
  align-self: center;
  display: inline-block;
  margin-top: 1rem;
  max-width: 250px;
}

.whatsapp-link img {
  width: 100%;
  height: auto;
}

.center-block {
  padding-block: clamp(3rem, 7vw, 6rem);
  background: var(--white);
}

.center-content {
  text-align: center;
  max-width: 800px;
}

.center-content h2 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brand-blue-dark);
  margin-bottom: 1rem;
}

.center-content p {
  margin: 0 auto 1rem;
  max-width: 70ch;
}

.center-content p:last-child {
  margin-bottom: 0;
}

.contact-form-section {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background: #ffffff;
}

.contact-form-wrap {
  max-width: 900px;
  background: var(--white);
  border: 1px solid rgba(20, 114, 186, 0.25);
  border-top: 4px solid var(--brand-yellow);
  border-radius: 18px;
  padding: clamp(1.2rem, 3vw, 2.1rem);
  box-shadow: 0 18px 34px rgba(20, 114, 186, 0.16);
}

.contact-form-wrap h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  color: var(--brand-blue-dark);
  text-align: center;
  letter-spacing: 0.01em;
}

.contact-form {
  display: grid;
  gap: 1.05rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.83rem;
  font-weight: 700;
  color: #314250;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(20, 114, 186, 0.28);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  color: #1f303b;
  background: #fbfdff;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(20, 114, 186, 0.5);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: #ffffff;
  box-shadow:
    0 0 0 3px rgba(250, 200, 53, 0.4),
    0 0 0 1px rgba(20, 114, 186, 0.25);
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-submit {
  justify-self: center;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--brand-yellow);
  color: #292E31;
  box-shadow: 0 10px 20px rgba(20, 114, 186, 0.2);
  cursor: pointer;
  transition: transform 150ms ease, filter 150ms ease, box-shadow 150ms ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  filter: brightness(0.97);
  box-shadow: 0 14px 24px rgba(20, 114, 186, 0.24);
}

.contact-submit:active {
  transform: translateY(0);
}

.site-footer {
  background: #292E31;
  color: #e7f3ff;
  padding-top: 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.footer-column h3 {
  color: var(--brand-yellow);
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
}

.payment-buttons {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.payment-buttons button {
  border: 1px solid rgba(250, 200, 53, 0.9);
  background: var(--brand-yellow);
  color: var(--brand-blue-dark);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-weight: 600;
}

.footer-list,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li,
.footer-list li + li {
  margin-top: 0.35rem;
}

.footer-links a,
.social-links a {
  color: #d9ecff;
  text-decoration: none;
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--brand-yellow);
}

.social-links {
  margin-top: 0.9rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 200, 53, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: all 180ms ease;
}

.social-links a:hover {
  background: rgba(250, 200, 53, 0.16);
}

.social-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 200, 53, 0.35);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

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

  .image-card img {
    max-height: 360px;
  }

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

@media (max-width: 700px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    padding-block: 0.55rem 0.75rem;
  }

  .header-bottom {
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    width: 132px;
  }

  .main-nav {
    justify-content: center;
  }

  .hero-overlay {
    padding-top: 10.5rem;
  }

  .slider-dot {
    width: 24px;
  }

  .booking-widget-placeholder {
    padding: 1rem;
  }

  .hero-search-widget {
    padding: 0.8rem;
    margin-top: 1rem;
  }

  .hero-search-widget h2 {
    font-size: 1.45rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

#bloque-reservas{
  display: flex;
  text-align: center;
}
