/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --terracota: #A0522D;
  --terracota-dark: #7f3f23;
  --terracota-soft: #c98962;
  --arena: #F5DEB3;
  --arena-light: #fcf7ef;
  --negro: #2B2B2B;
  --gris-texto: #5f5a56;
  --gris-linea: rgba(43, 43, 43, 0.08);
  --blanco: #ffffff;
  --shadow-soft: 0 18px 45px rgba(43, 43, 43, 0.08);
  --shadow-card: 0 12px 30px rgba(43, 43, 43, 0.10);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --transition: all 0.35s ease;
}

/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--blanco);
  color: var(--negro);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--negro);
  line-height: 1.15;
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  object-fit: cover;
}

a {
  text-decoration: none;
}

ul {
  padding-left: 1.1rem;
}

section {
  position: relative;
}

/* CONTAINER */
.container {
  width: min(90%, 1180px);
  margin: 0 auto;
}

/* HEADER */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius: 16px;
  background: white;
  padding: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
}

.nav a {
  color: var(--blanco);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--arena);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--arena);
}

.nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  min-height: 100vh;
  background-image: url('Hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
  padding: 120px 20px 80px;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.38), rgba(0,0,0,0.52)),
    linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 20px;
}

.hero-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.92);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  margin-bottom: 18px;
  color: var(--blanco);
  text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero-location {
  margin-bottom: 28px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}

/* BOTONES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--terracota), var(--terracota-soft));
  color: var(--blanco);
  border: none;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: var(--transition);
  box-shadow: 0 15px 30px rgba(160, 82, 45, 0.26);
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--terracota-dark), var(--terracota));
  box-shadow: 0 20px 34px rgba(160, 82, 45, 0.35);
}

/* SECCIONES */
.section {
  padding: 110px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.section > .container > p:not(.quote):not(.subtitle) {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  color: var(--gris-texto);
  font-size: 1.02rem;
}

.subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
  color: var(--gris-texto);
  font-size: 1.02rem;
}

/* FONDOS POR SECCIÓN */
.lugar {
  background:
    radial-gradient(circle at top left, rgba(245, 222, 179, 0.45), transparent 35%),
    linear-gradient(to bottom, #fffaf5, #ffffff);
}

.experiencia {
  background:
    linear-gradient(to bottom, #ffffff, #fbf5ef);
}

.alojamiento {
  background:
    linear-gradient(135deg, rgba(245,222,179,0.28), rgba(255,255,255,1) 38%, rgba(245,222,179,0.22));
}

.purmamarca {
  background:
    linear-gradient(to bottom, #fffdf9, #f8efe3);
}

.galeria {
  background:
    linear-gradient(to bottom, #ffffff, #faf5ef);
}

.contacto {
  background:
    linear-gradient(to bottom, #fffaf4, #ffffff);
}

/* LUGAR */
.lugar-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 42px;
}

.lugar-main img {
  min-height: 430px;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.lugar-main p {
  text-align: left !important;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(160,82,45,0.12);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  font-size: 1.08rem;
  color: var(--gris-texto);
}

.lugar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 18px;
}

.lugar-cards div {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(160,82,45,0.10);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
  padding: 28px 24px;
  transition: var(--transition);
}

.lugar-cards div:hover {
  transform: translateY(-4px);
}

.lugar-cards h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.lugar-cards p {
  color: var(--gris-texto);
  font-size: 0.98rem;
}

.quote {
  text-align: center;
  margin-top: 34px;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--terracota-dark);
  opacity: 0.95;
}

/* EXPERIENCIA */
.experiencia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.exp-item {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(43,43,43,0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.exp-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(43, 43, 43, 0.12);
}

.exp-item img {
  height: 245px;
  border-radius: 0;
}

.exp-item h3 {
  font-size: 1.7rem;
  margin: 22px 22px 10px;
}

.exp-item p {
  font-size: 0.98rem;
  color: var(--gris-texto);
  padding: 0 22px 24px;
}

/* ALOJAMIENTO */
.alojamiento-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.alojamiento-img {
  position: relative;
}

.alojamiento-img img {
  min-height: 420px;
  box-shadow: var(--shadow-soft);
  border-radius: 28px;
}

.alojamiento-info {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(160,82,45,0.10);
  box-shadow: var(--shadow-soft);
  border-radius: 28px;
  padding: 42px 40px;
}

.alojamiento-info h2 {
  text-align: left;
  margin-bottom: 18px;
}

.alojamiento-info p {
  color: var(--gris-texto);
  font-size: 1rem;
}

.alojamiento-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 22px 0 16px;
  color: var(--negro);
}

.alojamiento-info ul {
  margin: 0 0 22px;
}

.alojamiento-info li {
  margin-bottom: 10px;
  color: var(--gris-texto);
  font-size: 1rem;
}

.detalle {
  margin-bottom: 24px;
  color: var(--terracota-dark) !important;
  font-weight: 500;
}

/* PURMAMARCA */
.purmamarca > .container > p {
  margin-bottom: 42px !important;
}

.purma-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr;
  gap: 18px;
  margin-top: 10px;
}

.purma-grid img {
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.purma-grid img:hover {
  transform: translateY(-4px);
}

.purma-grid .big {
  grid-row: span 2;
  min-height: 520px;
}

.purma-grid img:not(.big) {
  min-height: 250px;
}

/* GALERÍA */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.galeria-grid img {
  height: 245px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.galeria-grid img:hover {
  transform: scale(1.02);
}

/* CTA */
.cta {
  background:
    linear-gradient(135deg, rgba(20,20,20,0.96), rgba(43,43,43,0.92)),
    radial-gradient(circle at center, rgba(160,82,45,0.22), transparent 45%);
  color: var(--blanco);
  text-align: center;
  padding: 95px 20px;
}

.cta .container {
  max-width: 860px;
}

.cta h2 {
  color: var(--blanco);
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.cta p {
  margin-bottom: 28px;
  color: rgba(255,255,255,0.82);
  font-size: 1.04rem;
}

/* CONTACTO */
.contacto {
  text-align: center;
}

.contacto .container {
  max-width: 780px;
}

.contacto h2 {
  margin-bottom: 20px;
}

.contacto p {
  color: var(--gris-texto);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .lugar-main,
  .alojamiento-grid {
    grid-template-columns: 1fr;
  }

  .lugar-main p,
  .alojamiento-info {
    padding: 30px 26px;
  }

  .purma-grid {
    grid-template-columns: 1fr;
  }

  .purma-grid .big {
    grid-row: auto;
    min-height: 380px;
  }

  .purma-grid img:not(.big) {
    min-height: 260px;
  }
}

@media (max-width: 900px) {
  .header {
    padding: 14px 0;
  }

  .header-container {
    justify-content: center;
  }

  .nav {
    display: none;
  }

  .logo {
    width: 64px;
    height: 64px;
  }

  .section {
    padding: 82px 0;
  }

  .lugar-cards,
  .experiencia-grid,
  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .lugar-main img,
  .alojamiento-img img,
  .exp-item img,
  .galeria-grid img {
    min-height: unset;
    height: auto;
  }

  .hero {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    max-width: 95%;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(92%, 1180px);
  }

  .logo {
    width: 58px;
    height: 58px;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .hero-name {
    font-size: 0.82rem;
  }

  .hero-location {
    font-size: 0.92rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
  }

  .section h2,
  .cta h2 {
    font-size: 2.15rem;
  }

  .lugar-main {
    gap: 26px;
  }

  .lugar-main p,
  .alojamiento-info {
    padding: 24px 20px;
  }

  .lugar-cards div,
  .exp-item {
    border-radius: 20px;
  }

  .exp-item h3 {
    font-size: 1.45rem;
  }

  .galeria-grid {
    gap: 14px;
  }

  .galeria-grid img {
    height: auto;
  }
}

.contacto {
  background:
    linear-gradient(to bottom, #f8efe3, #fffaf4 45%, #ffffff);
  padding: 120px 0;
}

.contacto-wrap {
  max-width: 1100px;
}

.contacto-top {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.contacto-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(160, 82, 45, 0.10);
  color: var(--terracota-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contacto-top h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.contacto-top p {
  color: var(--gris-texto);
  font-size: 1.02rem;
  line-height: 1.8;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contacto-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(160,82,45,0.12);
  border-radius: 28px;
  padding: 38px 34px;
  box-shadow: 0 18px 45px rgba(43,43,43,0.08);
  transition: all 0.35s ease;
}

.contacto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(43,43,43,0.12);
}

.contacto-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--terracota);
}

.contacto-card h3 {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.contacto-card p {
  color: var(--gris-texto);
  font-size: 1rem;
  line-height: 1.9;
}

.contacto-btn {
  margin-top: 22px;
}

@media (max-width: 900px) {
  .contacto-grid {
    grid-template-columns: 1fr;
  }

  .contacto {
    padding: 90px 0;
  }

  .contacto-card {
    padding: 28px 24px;
    border-radius: 22px;
  }
}

.contacto {
  background: linear-gradient(to bottom, #f8efe3, #ffffff);
  padding: 120px 0;
}

.contacto-top {
  text-align: center;
  margin-bottom: 50px;
}

.contacto-kicker {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(160,82,45,0.1);
  color: var(--terracota);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.contacto-top h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.contacto-top p {
  color: #666;
}

/* GRID */
.contacto-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* MAPA */
.mapa {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* INFO CARD */
.contacto-info {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-item {
  margin-bottom: 25px;
}

.info-item span {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--terracota);
  margin-bottom: 8px;
}

.info-item p {
  font-size: 15px;
  color: #333;
}

/* BOTÓN */
.contacto-info .btn {
  margin-top: 10px;
  display: inline-block;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contacto-grid {
    grid-template-columns: 1fr;
  }

  .mapa {
    height: 300px;
  }
}

.ubicacion-full iframe {
  width: 600px;
  height: 600px;
  border: none;
}

.identidad-contenido {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.identidad-contenido {
  display: flex;
  justify-content: center; /* 🔥 centra horizontal */
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  width: 100%;
}

.img-izquierda {
  flex: 1;
}

.img-derecha {
  flex: 1;
}

.identidad-bloques {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  text-align: center;
  gap: 20px;
}

.bloque {
  flex: 1;
}

.bloque h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.bloque p {
  font-size: 14px;
  color: #666;
}

.identidad-bloques {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.bloque {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  background: #fffdf8;
  padding: 28px 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bloque:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
}

.bloque h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #4b3425;
}

.bloque p {
  font-size: 15px;
  line-height: 1.6;
  color: #6f6257;
}

/* CONTENEDOR DE IMÁGENES */
.identidad-contenido {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 50px auto 0 auto;
  max-width: 1200px;
  width: 100%;
}

/* IMÁGENES */
.identidad-contenido img {
  width: 100%;
  max-width: 600px;
  border-radius: 18px;
  object-fit: cover;
}

.img-izquierda,
.img-derecha {
  flex: 1;
}

/* BLOQUES / TARJETAS */
.identidad-bloques {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 45px;
  flex-wrap: wrap;
  text-align: center;
}

.bloque {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  background: #fffdf8;
  padding: 28px 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bloque:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
}

.bloque h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #4b3425;
}

.bloque p {
  font-size: 15px;
  line-height: 1.6;
  color: #6f6257;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .identidad-contenido {
    flex-direction: column;
    gap: 25px;
  }

  .identidad-contenido img {
    max-width: 100%;
  }

  .identidad-bloques {
    flex-direction: column;
    align-items: center;
  }
}

.servicios-complejo {
  padding: 110px 20px;
  background: #f9f5ef;
}

.servicios-header {
  max-width: 800px;
  margin: 0 auto 55px auto;
  text-align: center;
}

.servicios-header h2 {
  font-size: 52px;
  color: #4b3425;
  margin-bottom: 16px;
}

.servicios-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #6f6257;
}

.servicios-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.servicio-card {
  background: #fffdf8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.servicio-slider {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #ddd;
}

.servicio-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.servicio-slider img.active {
  opacity: 1;
}

.servicio-info {
  padding: 26px 24px 30px;
}

.servicio-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(160, 82, 45, 0.10);
  color: #8a5a3b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.servicio-info h3 {
  font-size: 28px;
  color: #4b3425;
  margin-bottom: 12px;
}

.servicio-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #6f6257;
}

@media (max-width: 1024px) {
  .servicios-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .servicios-header h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .servicios-complejo {
    padding: 85px 18px;
  }

  .servicios-header h2 {
    font-size: 34px;
  }

  .servicios-header p {
    font-size: 16px;
  }

  .servicio-slider {
    height: 240px;
  }

  .servicio-info h3 {
    font-size: 24px;
  }

  .servicio-info p {
    font-size: 15px;
  }
}

.servicio-slider {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #ddd;
}

.servicio-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.servicio-slider img.active {
  opacity: 1;
}

.servicios-complejo {
  padding: 110px 20px;
  background: #f9f5ef;
}

.servicios-header {
  max-width: 800px;
  margin: 0 auto 55px auto;
  text-align: center;
}

.servicios-header h2 {
  font-size: 52px;
  color: #4b3425;
  margin-bottom: 16px;
}

.servicios-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #6f6257;
}

.servicios-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.servicio-card {
  background: #fffdf8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.servicio-slider {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #ddd;
}

.servicio-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.servicio-slider img.active {
  opacity: 1;
}

.servicio-info {
  padding: 26px 24px 30px;
}

.servicio-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(160, 82, 45, 0.10);
  color: #8a5a3b;
  font-size: 13px;
  font-weight: 600;
}

.servicio-info h3 {
  font-size: 28px;
  color: #4b3425;
  margin-bottom: 12px;
}

.servicio-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #6f6257;
}

@media (max-width: 1024px) {
  .servicios-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .servicios-header h2 {
    font-size: 34px;
  }

  .servicio-slider {
    height: 240px;
  }
}

.servicios-complejo {
  padding: 110px 20px;
  background: #f9f5ef;
}

.servicios-header {
  max-width: 800px;
  margin: 0 auto 55px auto;
  text-align: center;
}

.servicios-header h2 {
  font-size: 52px;
  color: #4b3425;
  margin-bottom: 16px;
}

.servicios-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #6f6257;
}

.servicios-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.servicio-card {
  background: #fffdf8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.servicio-img-wrap {
  position: relative;
  height: 300px;
  cursor: pointer;
  overflow: hidden;
}

.servicio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.servicio-img-wrap:hover img {
  transform: scale(1.05);
}

.servicio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  color: white;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.4px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.servicio-img-wrap:hover .servicio-overlay {
  opacity: 1;
}

.servicio-info {
  padding: 26px 24px 30px;
}

.servicio-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(160, 82, 45, 0.10);
  color: #8a5a3b;
  font-size: 13px;
  font-weight: 600;
}

.servicio-info h3 {
  font-size: 28px;
  color: #4b3425;
  margin-bottom: 12px;
}

.servicio-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #6f6257;
}

/* MODAL */
.galeria-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 30px;
}

.galeria-modal.activa {
  display: flex;
}

.galeria-contenido {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.galeria-contenido img {
  width: 100%;
  max-width: 900px;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 18px;
}

.galeria-cerrar {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  border: none;
  color: white;
  font-size: 42px;
  cursor: pointer;
}

.galeria-flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: white;
  font-size: 48px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.galeria-flecha:hover {
  background: rgba(255, 255, 255, 0.22);
}

.galeria-prev {
  left: 24px;
}

.galeria-next {
  right: 24px;
}

@media (max-width: 1024px) {
  .servicios-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .servicios-header h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .servicios-complejo {
    padding: 85px 18px;
  }

  .servicios-header h2 {
    font-size: 34px;
  }

  .servicios-header p {
    font-size: 16px;
  }

  .servicio-img-wrap {
    height: 240px;
  }

  .servicio-info h3 {
    font-size: 24px;
  }

  .servicio-info p {
    font-size: 15px;
  }

  .galeria-flecha {
    width: 48px;
    height: 48px;
    font-size: 38px;
  }

  .galeria-prev {
    left: 12px;
  }

  .galeria-next {
    right: 12px;
  }
}

.huella-section {
  padding: 110px 20px;
  background: #fff;
}

.huella-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.huella-logo {
  width: 160px;
  margin-bottom: 20px;
}

.huella-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #4b3425;
}

.huella-header p {
  font-size: 18px;
  color: #6f6257;
  line-height: 1.6;
}

.huella-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.huella-card {
  background: #fffdf8;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  text-align: center;
  transition: 0.3s;
}

.huella-card:hover {
  transform: translateY(-5px);
}

.huella-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.huella-card h3 {
  font-size: 20px;
  margin: 15px 10px;
}

.huella-card p {
  font-size: 14px;
  padding: 0 15px 15px;
  color: #666;
}

.huella-card .btn {
  margin-bottom: 20px;
}

.huella-beneficios {
  text-align: center;
  margin-top: 70px;
}

.beneficios-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.beneficios-grid span {
  background: #f3eee7;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.huella-cta {
  text-align: center;
  margin-top: 60px;
}

.huella-cta h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.huella-logo {
  display: block;
  margin: 0 auto 20px auto;
  width: 140px;
}

.alojamiento-slider {
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: 22px;
  overflow: hidden;
}

.alojamiento-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.alojamiento-slide.active {
  opacity: 1;
}

.alojamiento-flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.alojamiento-flecha.prev {
  left: 15px;
}

.alojamiento-flecha.next {
  right: 15px;
}

.footer {
  background: #2b2b2b;
  color: #ffffff;
  padding: 70px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #f5deb3;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FIX MOBILE FINAL
========================= */

@media (max-width: 900px) {
  .huella-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .huella-card img {
    height: 200px;
  }

  .alojamiento-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .alojamiento-slider {
    width: 100%;
    max-width: 100%;
    height: 420px;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mapa,
  .ubicacion-full,
  .ubicacion-full iframe {
    width: 100%;
    max-width: 100%;
  }

  .mapa,
  .ubicacion-full iframe {
    height: 320px;
  }

  .contacto-info,
  .contacto-card {
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
  }
}

@media (max-width: 600px) {
  .huella-section {
    padding: 85px 18px;
  }

  .huella-header h2 {
    font-size: 32px;
  }

  .huella-header p {
    font-size: 15px;
  }

  .huella-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .huella-card {
    width: 100%;
  }

  .huella-card img {
    height: 220px;
  }

  .huella-card h3 {
    font-size: 22px;
    margin: 16px 12px 10px;
  }

  .huella-card p {
    font-size: 15px;
    padding: 0 16px 18px;
  }

  .huella-card .btn {
    width: calc(100% - 32px);
    max-width: none;
    margin: 0 16px 20px;
  }

  .alojamiento {
    overflow: hidden;
  }

  .alojamiento-slider {
    height: 260px;
    border-radius: 18px;
  }

  .alojamiento-img,
  .alojamiento-info {
    width: 100%;
    max-width: 100%;
  }

  .alojamiento-info {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .alojamiento-info h2 {
    font-size: 2rem;
    text-align: left;
  }

  .alojamiento-info h4 {
    font-size: 1.1rem;
  }

  .alojamiento-info p,
  .alojamiento-info li {
    font-size: 0.96rem;
  }

  .alojamiento-flecha {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .alojamiento-flecha.prev {
    left: 10px;
  }

  .alojamiento-flecha.next {
    right: 10px;
  }

  .contacto {
    padding: 85px 0;
  }

  .contacto-top {
    margin-bottom: 30px;
  }

  .contacto-top h2 {
    font-size: 30px;
  }

  .contacto-top p {
    font-size: 15px;
    line-height: 1.7;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mapa,
  .ubicacion-full iframe {
    width: 100%;
    height: 260px;
    border-radius: 18px;
  }

  .ubicacion-full iframe {
    display: block;
    border: none;
  }

  .contacto-info,
  .contacto-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .info-item {
    margin-bottom: 18px;
  }

  .info-item p {
    font-size: 14px;
    line-height: 1.6;
  }

  .contacto-info .btn,
  .contacto-card .btn {
    width: 100%;
    max-width: none;
  }
}

/* =========================
   FIX ALOJAMIENTO MOBILE
========================= */

.alojamiento-grid {
  align-items: stretch;
}

.alojamiento-img {
  width: 100%;
  max-width: 100%;
}

.alojamiento-slider {
  width: 100%;
  max-width: 100%;
}

.alojamiento-info {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 900px) {
  .alojamiento {
    overflow: hidden;
  }

  .alojamiento-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .alojamiento-img,
  .alojamiento-slider,
  .alojamiento-info {
    width: 100%;
    max-width: 100%;
  }

  .alojamiento-slider {
    height: 380px;
  }

  .alojamiento-info {
    padding: 28px 22px;
  }
}

@media (max-width: 600px) {
  .alojamiento {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .alojamiento .container {
    width: 92%;
  }

  .alojamiento-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .alojamiento-img {
    width: 100%;
  }

  .alojamiento-slider {
    width: 100%;
    height: 240px;
    border-radius: 18px;
  }

  .alojamiento-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .alojamiento-info {
    width: 100%;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .alojamiento-info h2 {
    font-size: 1.95rem;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .alojamiento-info h4 {
    font-size: 1.05rem;
    margin: 18px 0 12px;
  }

  .alojamiento-info p,
  .alojamiento-info li,
  .detalle {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .alojamiento-info ul {
    padding-left: 1rem;
    margin-bottom: 18px;
  }

  .alojamiento-flecha {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .alojamiento-flecha.prev {
    left: 8px;
  }

  .alojamiento-flecha.next {
    right: 8px;
  }
}

/* CENTRAR LOGO FOOTER / SECCIÓN FINAL */
.footer-logo,
.logo-final,
.contacto-logo {
  display: block;
  margin: 0 auto 20px auto;
}