*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #fffafc;
  color: #3b2f3a;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 100% - 2.5rem);
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 249, 252, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 182, 193, 0.35);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo__circle {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffb6c1, #ffd1dc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #3b2f3a;
  box-shadow: 0 4px 10px rgba(255, 182, 193, 0.5);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__title {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo__subtitle {
  font-size: 0.7rem;
  color: #93788a;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav a {
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  border-color: #ff9fb5;
  color: #e26b8a;
}

.header__cta {
  font-size: 0.85rem;
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero__text h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
  margin: 0 0 0.75rem;
  color: #3b2f3a;
}

.hero__text p {
  margin: 0 0 1.5rem;
  color: #6e4f61;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero__hint {
  font-size: 0.9rem;
  color: #93788a;
}

.hero__card {
  background: linear-gradient(145deg, #ffe6ef, #e8f8f5);
  border-radius: 24px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 50px rgba(214, 142, 164, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 1.2rem;
  color: #c2567b;
}

.hero__cookies {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 1.3rem;
}

.cookie {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 10px 25px rgba(173, 108, 138, 0.35);
}

.cookie::before,
.cookie::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(150, 92, 110, 0.22);
}

.cookie::before {
  width: 12px;
  height: 12px;
  top: 20%;
  left: 20%;
}

.cookie::after {
  width: 10px;
  height: 10px;
  bottom: 25%;
  right: 18%;
}

.cookie--pink {
  background: radial-gradient(circle at 30% 20%, #ffe5ee, #ffb6c1);
}

.cookie--mint {
  background: radial-gradient(circle at 30% 20%, #e4fffb, #b6f2de);
  transform: translateY(10px);
}

.cookie--cream {
  background: radial-gradient(circle at 30% 20%, #fff5df, #ffd8a8);
  transform: translateY(-8px);
}

.hero__note {
  font-size: 0.85rem;
  color: #6e4f61;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #ff9fb5, #ffb6c1);
  color: #3b2f3a;
  box-shadow: 0 10px 20px rgba(255, 159, 181, 0.5);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 159, 181, 0.6);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid #ffb6c1;
  color: #e26b8a;
  box-shadow: 0 6px 14px rgba(255, 182, 193, 0.35);
}

.btn--outline:hover {
  background: rgba(255, 245, 249, 0.9);
}

.btn--ghost {
  background: #ffffff;
  border: 1px solid rgba(255, 182, 193, 0.4);
  color: #6e4f61;
}

.btn--ghost:hover {
  background: #fff3f7;
}

.btn--full {
  width: 100%;
}

.section {
  padding: 3rem 0;
}

.section--alt {
  background: #fff3f7;
}

.section__title {
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
  text-align: center;
}

.section__subtitle {
  margin: 0 0 2rem;
  text-align: center;
  color: #93788a;
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.3rem 1.25rem 1.2rem;
  box-shadow: 0 12px 30px rgba(224, 175, 190, 0.3);
  position: relative;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
  color: #6e4f61;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

.tag--pink {
  background: rgba(255, 182, 193, 0.2);
  color: #c2567b;
}

.tag--red {
  background: rgba(255, 158, 158, 0.18);
  color: #c24949;
}

.tag--mint {
  background: rgba(182, 242, 222, 0.25);
  color: #2f7e64;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem 1.15rem 1.1rem;
  box-shadow: 0 10px 24px rgba(226, 163, 182, 0.28);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(140deg, #ffb6c1, #ffd1dc);
  font-size: 0.85rem;
  font-weight: 700;
  color: #3b2f3a;
  margin-bottom: 0.7rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: #6e4f61;
}

.reservar {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.list {
  padding-left: 1.1rem;
  margin: 0;
  list-style: disc;
  color: #6e4f61;
  font-size: 0.92rem;
}

.list li + li {
  margin-top: 0.4rem;
}

.form {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem 1.4rem 1.3rem;
  box-shadow: 0 16px 36px rgba(216, 147, 173, 0.4);
}

.form__group {
  margin-bottom: 0.85rem;
}

.form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #6e4f61;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  border: 1px solid #ffd1dc;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: #fff9fb;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: #ff9fb5;
  box-shadow: 0 0 0 3px rgba(255, 159, 181, 0.25);
  background: #ffffff;
}

.form__hint {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #93788a;
  text-align: center;
}

.contacto {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.contacto__items {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.contacto__item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contacto__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b18a9f;
}

.contacto__value,
.contacto__item a {
  font-size: 0.95rem;
  font-weight: 500;
}

.contacto__item a {
  color: #e26b8a;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contacto__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contacto__panel {
  background: linear-gradient(145deg, #ffe6ef, #fef3ff);
  border-radius: 20px;
  padding: 1.4rem 1.3rem 1.3rem;
  box-shadow: 0 16px 36px rgba(211, 138, 175, 0.45);
  font-size: 0.92rem;
  color: #543748;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contacto__panel--map {
  padding: 0;
  overflow: hidden;
}

.contacto__panel--map iframe {
  border: 0;
  width: 100%;
  height: 220px;
  border-radius: 20px;
  display: block;
}

.footer {
  padding: 1.2rem 0 1.4rem;
  border-top: 1px solid rgba(255, 209, 220, 0.7);
  background: #fff9fc;
  font-size: 0.8rem;
  color: #93788a;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer__by {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__card {
    order: -1;
  }

  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservar,
  .contacto {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 2.5rem;
  }

  .grid--3,
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .form {
    padding: 1.2rem 1.05rem 1.1rem;
  }

  .footer__content {
    flex-direction: column;
    align-items: flex-start;
  }
}

