
/* =========================
   1. TIPOGRAFÍAS Y VARIABLES
========================= */
@font-face {
  font-family: "T1 Zribal Trial";
  src: url("../FONTS/T1ZirbalTrial-Bold.ttf") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Acumin Pro";
  src: url("../FONTS/Acumin-BdPro.otf") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Acumin Pro Regular";
  src: url("../FONTS/Acumin-RPro.otf") format("woff2");
  font-display: swap;
}

:root {
  --text: #333333;
  --pink: #f298c0;
  --orange: #ec6338;
  --paper: #ffffff;
  --amarillo: #fff6a5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--text);
  font-family: "Acumin Pro", Arial, sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-family: "T1 Zribal Trial", sans-serif;
  font-weight: 900;
  line-height: 0.98;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  padding: 0 26px;
  border-radius: 50px;
  color: var(--text);
  text-decoration: none;
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  background: linear-gradient(135deg, var(--pink), var(--orange), var(--amarillo));
  box-shadow: 0 10px 25px rgba(236, 99, 56, 0.2);
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(236, 99, 56, 0.3);
}

/* =========================
   HEADER MOBILE
========================= */
.mobile-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);

  width: calc(100% - 24px);
  max-width: 430px;

  height: 62px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.88);
  border-radius: 50px;

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  z-index: 2000;
}

.header-logo img {
  width: 78px;
  height: auto;
}

.menu-toggle {
  width: 32px;
  height: 24px;
  border: none;
  background: transparent;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: #111111;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100vh;

  background: #ffffff;
  z-index: 3000;

  padding: 120px 28px 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: "Acumin Pro Regular", Arial, sans-serif;
  font-size: 22px;

  padding: 12px 24px;
  border-radius: 50px;
}

.mobile-menu a.active {
  background: var(--amarillo);
  font-family: "Acumin Pro", Arial, sans-serif;
}

.desktop-header {
  display: none;
}

/* =========================
   FOOTER
========================= */
.contact.footer-card {
  width: calc(100% - 24px);
  margin: 60px auto 24px;
  padding: 40px 24px;

  background: rgba(255,255,255,0.85);
  border-radius: 40px;

  backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.contact-info h3 {
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-info p {
  font-family: "Acumin Pro Regular";
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-cta h2 {
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-logo img {
    position: relative;
    left: -50px;      /* hace que sobresalga por la izquierda */
    bottom: -50px;    /* hace que sobresalga por abajo */
    width: 140%;
  }

  .footer-logo img {
    width: 100%;
    max-width: none;
    transform: rotate(-7deg);
  }

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-info a:hover {
  opacity: 0.8;
}
/* =========================
   DESKTOP
========================= */
@media (min-width: 1024px) {

  .mobile-header,
  .mobile-menu,
  .menu-overlay {
    display: none;
  }

  .desktop-header {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    padding: 0 4vw;
    z-index: 2000;
    display: block;
  }

  .desktop-nav-bar {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    height: 64px;

    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 30px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .desktop-logo img {
    width: 85px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .desktop-nav a {
    padding: 10px 22px;
    color: var(--text);
    text-decoration: none;
    font-family: "Acumin Pro Regular", Arial, sans-serif;
    font-size: 15px;
    border-radius: 50px;
  }

  .desktop-nav a.active {
    background: var(--amarillo);
    font-family: "Acumin Pro", Arial, sans-serif;
  }

  .contact.footer-card {
    width: calc(100% - 8vw);
    min-height: 760px;
    margin: 120px auto 60px;
    padding: 0;
    position: relative;
    border-radius: 38px;
  }

  .footer-top {
    position: absolute;
    top: 78px;
    right: 7vw;
    width: 420px;

    flex-direction: column-reverse;
    gap: 95px;
    z-index: 5;
  }

  .contact-info h3 {
    font-size: 32px;
    margin-bottom: 42px;
  }

  .contact-info p {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .footer-cta h2 {
    font-size: 32px;
    margin-bottom: 34px;
  }

  .footer-cta .btn {
    min-width: 250px;
    height: 68px;
    font-size: 20px;
  }

  .footer-logo {
    position: absolute;
    left: -3vw;
    bottom: -46px;
    width: 58%;
  }

  .footer-logo img {
    max-width: 760px;
    transform: rotate(-7deg);
    position: relative;
    left: -50px;      /* hace que sobresalga por la izquierda */
    bottom: -10px;    /* hace que sobresalga por abajo */
    width: 140%;
  }
}
.hero-fullscreen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('../IMG/fotoHome.jpg') no-repeat center center/cover;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 24px 32px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  min-height: 100vh;
}

.hero-content {
  width: 100%;
  max-width: 100%;
  margin-bottom: 28px;
  color: #ffffff;
}

.hero-content h1 {
  color: #ffffff;
  font-size: clamp(36px, 9vw, 60px);
  line-height: 0.92;
  margin-bottom: 18px;
  max-width: 92%;
}

.hero-content p {
  font-family: "Acumin Pro Regular", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 24px;
  max-width: 92%;
  color: #ffffff;
}

.hero-content .btn {
  background: var(--amarillo);
}

.benefits-cards {
  display: flex;
  gap: 16px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  padding-bottom: 10px;
}

.benefits-cards::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 84%;
  min-height: 170px;

  padding: 24px;
  border-radius: 28px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.3);

  box-shadow: 0 8px 32px rgba(0,0,0,0.15);

  scroll-snap-align: start;
}

.card h2 {
  color: #ffffff;
  font-size: 28px;
  line-height: 0.95;
  margin-bottom: 12px;
}

.card p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.3;
  font-family: "Acumin Pro Regular", Arial, sans-serif;
}

.card-yellow {
  background: linear-gradient(135deg, rgba(255, 255, 153, 0.772), rgba(255, 255, 153, 0));
}

.card-pink {
  background: linear-gradient(135deg, rgb(242, 152, 192), rgba(242, 152, 192, 0));
}

.card-orange {
  background: linear-gradient(135deg, rgb(236, 98, 56), rgba(236, 98, 56, 0));
}

@media (min-width: 1024px) {

  .hero-container {
    padding: 0 5vw 40px 5vw;
  }

  .hero-content {
    max-width: 520px;
    margin-bottom: 60px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 4.5vw, 42px);
    max-width: 100%;
  }

  .hero-content p {
    font-size: clamp(16px, 1.2vw, 20px);
    max-width: 60%;
  }

  .benefits-cards {
    overflow: visible;
  }

  .card {
    flex: 1;
    min-height: 180px;
  }
}

.servicios-page {
  width: 100%;
  min-height: 100vh;
  background: #f5f5f5;
  overflow-x: hidden;
}

.servicios-hero {
  padding: 120px 24px 34px;
  text-align: center;
}

.servicios-hero h1 {
  font-size: clamp(38px, 10vw, 58px);
  margin-bottom: 14px;
}

.servicios-hero p {
  font-family: "Acumin Pro Regular", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
}

.servicios-slider-section {
  padding: 12px 0 20px;
}

.servicios-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 24px 20px;
}

.servicios-track::-webkit-scrollbar {
  display: none;
}

.servicio-slide,
.servicio-slide-wide {
  flex: 0 0 86%;
  height: auto;
  min-height: 500px;
  border-radius: 30px;
  overflow: hidden;
  scroll-snap-align: start;
}

.servicio-img {
  height: 320px;
}

.servicio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servicio-content {
  padding: 24px;
}

.servicio-content h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.servicio-content p {
  font-family: "Acumin Pro Regular", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

.card-pink {
  background: linear-gradient(
    135deg,
    rgba(242, 152, 192, 0.95),
    rgba(242, 152, 192, 0.18)
  );
}

.card-yellow {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 153, 1),
    rgba(255, 255, 153, 0.18)
  );
}

.card-orange {
  background: linear-gradient(
    135deg,
    rgba(236, 99, 56, 0.95),
    rgba(236, 99, 56, 0.18)
  );
}

.sobre-page {
  width: 100%;
  min-height: 100vh;
  background: #f5f5f5;
  overflow-x: hidden;
}

.sobre-slider-section {
  padding: 112px 20px 28px;
}

.sobre-intro {
  text-align: center;
  margin-bottom: 22px;
}

.sobre-intro h1 {
  font-size: clamp(34px, 9vw, 58px);
  line-height: 0.9;
}

.swipe-hint {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}

.sobre-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.sobre-track::-webkit-scrollbar {
  display: none;
}

.sobre-card {
  flex: 0 0 88%;
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  scroll-snap-align: start;
}

.sobre-card-image {
  position: relative;
}

.sobre-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-text {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.image-text h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 12px;
}

.image-text p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  font-family: "Acumin Pro Regular", Arial, sans-serif;
}

.sobre-card-split {
  display: flex;
  flex-direction: column;
}

.sobre-card-content {
  padding: 28px;
}

.sobre-card-content h2 {
  font-size: 30px;
  line-height: 0.95;
}

.sobre-card-content p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.35;
  font-family: "Acumin Pro Regular", Arial, sans-serif;
}

.sobre-card-media {
  height: 280px;
  margin: 0 18px 18px;
  border-radius: 24px;
  overflow: hidden;
}

.sobre-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.actividades-page {
  width: 100%;
  min-height: 100vh;
  background: #f5f5f5;
}

.actividades-section {
  padding: 112px 20px 32px;
}

.actividades-intro {
  text-align: center;
  margin-bottom: 24px;
}

.actividades-intro h1 {
  font-size: clamp(36px, 9vw, 58px);
}

.swipe-hint {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 14px;
}

.actividades-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.actividad-principal {
  position: relative;
  height: 520px;
  border-radius: 30px;
  overflow: hidden;
}

.actividad-principal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.actividad-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2),
    transparent
  );
}

.actividad-overlay h2 {
  color: #ffffff;
  font-size: 34px;
  margin-bottom: 12px;
}

.actividad-overlay p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  font-family: "Acumin Pro Regular", Arial, sans-serif;
}

.carteles-slider {
  display: flex;
  gap: 16px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  padding-bottom: 10px;
}

.carteles-slider::-webkit-scrollbar {
  display: none;
}

.cartel-card {
  flex: 0 0 78%;
  height: 480px;

  border-radius: 28px;
  overflow: hidden;

  background: #ffffff;
  scroll-snap-align: start;
}

.cartel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reserva-page {
  width: 100%;
  min-height: 100vh;
  background: #f5f5f5;
  overflow-x: hidden;
}

.reserva-hero {
  padding: 112px 20px 32px;
}

.reserva-intro {
  text-align: center;
  margin-bottom: 28px;
}

.reserva-intro h1 {
  font-size: clamp(38px, 10vw, 60px);
  margin-bottom: 14px;
}

.reserva-intro p {
  font-size: 16px;
  line-height: 1.35;
  font-family: "Acumin Pro Regular", Arial, sans-serif;
}

.reserva-card {
  display: flex;
  flex-direction: column;
  gap: 18px;

  padding: 18px;
  border-radius: 32px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 153, 0.72) 0%,
    rgba(242, 152, 192, 0.76) 48%,
    rgba(236, 99, 56, 0.78) 100%
  );
}

.reserva-card-info {
  padding: 28px;
  border-radius: 26px;

  background: rgba(255,255,255,0.38);
  backdrop-filter: blur(18px);
}

.reserva-card-info h2 {
  font-size: 34px;
  line-height: 0.95;
}

.reserva-card-info p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.35;
  font-family: "Acumin Pro Regular", Arial, sans-serif;
}

.reserva-mini-info {
  margin-top: 28px;
}

.reserva-mini-info p {
  margin-bottom: 10px;
  font-size: 16px;
}

.reserva-form {
  display: flex;
  flex-direction: column;
  gap: 18px;

  padding: 26px;
  border-radius: 26px;

  background: rgba(255,255,255,0.88);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reserva-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;

  font-size: 15px;
}

.reserva-form input,
.reserva-form textarea {
  width: 100%;
  border: none;
  outline: none;

  background: #e7e7e7;
  border-radius: 20px;

  padding: 16px 18px;

  font-size: 16px;
  font-family: "Acumin Pro Regular", Arial, sans-serif;
}

.reserva-form textarea {
  min-height: 140px;
  resize: none;
}

.reserva-btn {
  width: 100%;
  height: 54px;
}
