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

body {
  color: #ffffff;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

/* ===========================
   SLIDES DE FONDO
=========================== */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* 👇 Reemplaza con tus imágenes */
.slide--1 {
  background-image: url('../images/01/hero-home-01.webp');
  opacity: 1; /* Primera imagen visible al inicio */
}

.slide--2 {
 background-image: url('../images/01/hero-home-02.webp');
}

.slide--3 {
 background-image: url('../images/01/hero-home-03.webp');
}


/* Clase activa controlada por JS */
.slide.active {
  opacity: 1;
}

.slide.inactive {
  opacity: 0;
}

/* ===========================
   OVERLAY
=========================== */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 40, 50, 0.92) 0%,
    rgba(10, 40, 50, 0.75) 45%,
    rgba(10, 40, 50, 0.10) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* ===========================
   CONTENIDO PRINCIPAL
=========================== */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Supertítulo */
.hero__supertitle {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #a8c8c0;
  text-transform: uppercase;
	margin-bottom: 0px
}

/* Título principal */
.hero__title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
	font-family: Newsreader, serif;
	width: 600px;
	line-height: 1
}


.hero__title span {
font-size: 44px;
	color:#fff!important
}

/* ===========================
   FORMULARIO DE RESERVA
=========================== */
.hero__booking {
  display: flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  height: 64px;
}

.booking__field {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  flex: 1;
}

.booking__field label {
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #555555;
  text-transform: uppercase;
  white-space: nowrap;
	margin-bottom: 0px
}

.booking__field input {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #222222;
  background: transparent;
  width: 100%;
  font-family: Arial, sans-serif;
}

.booking__field input[type="number"] {
  width: 50px;
}

.booking__divider {
  width: 1px;
  height: 36px;
  background-color: #cccccc;
}

.booking__btn {
  background-color: #b03a1e;
  color: #ffffff;
  border: none;
  padding: 18px 28px;
  height: 100%;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  border-radius: 0 4px 4px 0;
}

.booking__btn:hover {
  background-color: #8f2e14;
	color:#fff!important
}

/* ===========================
   NOTA INFORMATIVA
=========================== */
.hero__note {
  max-width: 520px;
}

.hero__note p {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #d0dfe0;
}

.hero__note strong {
  color: #ffffff;
  font-weight: 700;
}

.hero__note a {
  color: #7ec8c8;
  text-decoration: underline;
  cursor: pointer;
}

.hero__note a:hover {
  color: #a8e0e0;
}

/* ===========================
   STATS
=========================== */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  max-width: 1280px;
  margin-top: 10px;
	background: #10303d;
}

.stat__item {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stat__item:last-child {
  border-right: none;
}

.stat__item h3 {
  font-family: 'Newsreader', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 6px;
}

.stat__item p {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: #b0c8cc;
  line-height: 1.4;
	margin-bottom: 0px!important
}

/* ===========================
   INDICADORES (DOTS)
=========================== */
.hero__dots {
  position: absolute;
  bottom: 28px;
  left: 50px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot--active {
  background-color: #ffffff;
  transform: scale(1.3);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .hero__content {
    padding: 40px 24px;
    max-width: 100%;
  }
	
	

	
.hero__title {
 	font-size: clamp(2rem, 5vw, 4.2rem);
	width: 100%!important;
}
	
	.hero__title span {
font-size: 1.4rem;
	color:#fff!important
}


  .hero__booking {
    flex-direction: column;
    height: auto;
    padding: 16px;
    gap: 12px;
    border-radius: 8px;
  }

  .booking__divider {
    width: 100%;
    height: 1px;
  }

  .booking__btn {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
	  text-align: center;
  }
	
	.x3 h3 {
		font-size: 32px!important;
		 }


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

  .stat__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hero__dots {
    left: 24px;
  }
}

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