:root {
  --ice-white: #f8fcff;
  --ice-blue: #dff5ff;
  --ice-blue-2: #bfe9fa;
  --warm-light: #ffe8c5;
  --cream: #fff7ed;
  --sand: #d9b38c;
  --wood: #6a4634;
  --wood-dark: #3f2b23;
  --glass: rgba(248, 253, 255, 0.76);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(191, 233, 250, 0.35), transparent 30%),
    linear-gradient(180deg, #fafdff 0%, #f3f9fc 45%, #fff7ed 100%);
  color: var(--wood-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 253, 255, 0.72);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 10px 40px rgba(150, 200, 220, 0.16),
    0 20px 60px rgba(210, 180, 145, 0.08);
}

.navbar {
  max-width: 1240px;
  margin: auto;
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--wood);
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow:
    0 0 10px rgba(255, 235, 205, 0.95),
    0 0 24px rgba(191, 233, 250, 0.65);
}

.logo small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  text-align: right;
  color: #8a6a58;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #5c4438;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: #4aa3c9;
}

.btn-nav {
  padding: 10px 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(223, 245, 255, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 20px rgba(191, 233, 250, 0.45),
    inset 0 0 18px rgba(255, 255, 255, 0.55);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--wood);
  font-size: 2rem;
}

/* DROPDOWN */

.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: "▾";
  font-size: 0.65rem;
  margin-left: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 245px;
  padding: 12px;
  list-style: none;
  background: rgba(248, 253, 255, 0.96);
  backdrop-filter: blur(24px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 50px rgba(170, 210, 235, 0.24),
    0 28px 70px rgba(215, 185, 150, 0.14),
    inset 0 0 20px rgba(255, 255, 255, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.22s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 11px 14px;
  border-radius: 15px;
  color: #5c4438;
  font-size: 0.92rem;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background:
    linear-gradient(135deg, rgba(223, 245, 255, 0.9), rgba(255, 232, 197, 0.35));
  color: #2e8bb4;
}

/* HERO */

.hero {
  min-height: 100vh;
  background:
    linear-gradient(
      rgba(220, 243, 255, 0.2),
      rgba(63, 43, 35, 0.46)
    ),
    url("Image1b.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 6% 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 45%, rgba(255, 235, 205, 0.36), transparent 32%),
    radial-gradient(circle at 70% 22%, rgba(191, 233, 250, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(30, 20, 16, 0.18), transparent 55%);
  pointer-events: none;
}

.hero-content {
  max-width: 780px;
  color: #fffaf4;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--ice-blue-2);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
}
/* TÍTULO PRINCIPAL */

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 0.92;
  margin-bottom: 22px;
  letter-spacing: -2px;
  max-width: 650px;

  text-shadow:
    0 0 18px rgba(223, 245, 255, 0.55),
    0 0 38px rgba(255, 232, 197, 0.38),
    0 18px 60px rgba(30, 20, 16, 0.35);
}

/* TÍTULOS DEL RESTO DE LA WEB */

.section h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero p {
  max-width: 640px;
  font-size: 1.15rem;
  text-shadow: 0 10px 30px rgba(30, 20, 16, 0.35);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* BOTONES */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn-primary {
  color: #4a342a;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #e6f8ff 38%,
      #ffe8c5 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 25px rgba(195, 235, 255, 0.65),
    0 0 70px rgba(255, 235, 205, 0.42),
    inset 0 0 20px rgba(255, 255, 255, 0.65);
}

.btn-secondary {
  color: #fffaf4;
  background: rgba(248, 253, 255, 0.15);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.btn:hover {
  transform: translateY(-4px);
}

/* SECCIONES */

.section {
  padding: 100px 6%;
  position: relative;
}

.section h2 {
  color: var(--wood-dark);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.section-text p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.intro,
.trabaja {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* TARJETAS */

.highlight-card,
.local-card,
.contact-grid div,
.form {
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  box-shadow:
    0 18px 60px rgba(170, 210, 235, 0.18),
    0 35px 80px rgba(215, 185, 150, 0.12),
    inset 0 0 30px rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.highlight-card {
  padding: 48px;
}

.highlight-card h3,
.local-card h3,
.contact-grid h3 {
  color: var(--wood);
  margin-bottom: 12px;
}

/* LOCALES */

.locales,
.contacto {
  background:
    linear-gradient(180deg, #fafdff 0%, #f3f9fc 60%, #fff7ed 100%);
}

.cards-grid,
.contact-grid {
  max-width: 1240px;
  margin: auto;
  display: grid;
  gap: 24px;
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.local-card {
  padding: 34px;
}

.local-card a {
  display: inline-block;
  margin-top: 22px;
  color: #4aa3c9;
  font-weight: 900;
}

/* CARTA */

.carta {
  background:
    radial-gradient(circle at 15% 20%, rgba(191, 233, 250, 0.42), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 232, 197, 0.38), transparent 30%),
    linear-gradient(180deg, #fafdff, #f5fbfe 45%, #fff8f2);
}

.cartas-buttons {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cartas-buttons .btn {
  min-width: 240px;
  text-align: center;
}

/* DESCUENTOS */

.descuentos {
  background:
    linear-gradient(
      rgba(220, 243, 255, 0.18),
      rgba(63, 43, 35, 0.56)
    ),
    url("Image1b_000.jpg") center/cover fixed no-repeat;
  color: #fffaf4;
  text-align: center;
}

.promo-content {
  max-width: 820px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.promo-content h2 {
  color: #fffaf4;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

/* FORMULARIO */

.form {
  padding: 34px;
  display: grid;
  gap: 16px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(180, 220, 238, 0.75);
  border-radius: 18px;
  font: inherit;
  background: rgba(255, 255, 255, 0.72);
  color: var(--wood-dark);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox {
  font-size: 0.9rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.file-label {
  padding: 16px 18px;
  border: 1px dashed rgba(104, 183, 214, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--wood-dark);
  font-weight: 800;
  cursor: pointer;
}

.file-label input {
  margin-top: 10px;
  display: block;
  width: 100%;
}

.form-note {
  font-size: 0.85rem;
  color: #5c4438;
}

.form-note a,
.contact-grid a {
  color: #2e8bb4;
  font-weight: 800;
}

/* CONTACTO */

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid div {
  padding: 30px;
  text-align: center;
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  z-index: 1200;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 35px rgba(37, 211, 102, 0.35),
    0 0 40px rgba(223, 245, 255, 0.45);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}

.whatsapp-float img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

/* FOOTER */

.footer {
  background:
    linear-gradient(135deg, #3f2b23, #5c4438);
  color: #fff7ed;
  padding: 30px 6%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer div {
  display: flex;
  gap: 18px;
}

.footer a:hover {
  color: var(--ice-blue);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(248, 253, 255, 0.95);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 28px;
    display: none;
    box-shadow: 0 24px 70px rgba(150, 200, 220, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
    min-width: auto;
    width: 100%;
    padding: 8px 0 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-menu {
    transform: none;
  }

  .dropdown-menu li a {
    text-align: center;
  }

  .intro,
  .trabaja,
  .cards-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 92vh;
    background-position: center;
  }

  .section {
    padding: 76px 6%;
  }
}

@media (max-width: 520px) {
  .navbar {
    padding: 14px 5%;
  }

  .logo {
    font-size: 1.45rem;
  }

  .hero {
    padding: 110px 5% 60px;
  }

  .hero-buttons,
  .cartas-buttons {
    flex-direction: column;
  }

  .btn,
  .cartas-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .highlight-card,
  .local-card,
  .form {
    border-radius: 24px;
    padding: 26px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-float img {
    width: 36px;
    height: 36px;
  }
}