:root {
    --primary: #2C3E30; /* Verde inglés */
    --gold: #C5A059;    /* Dorado mate */
    --text: #555555;
    --bg-light: #F9F9F7; /* Beige muy claro */
    --white: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}


/* Tipografía General */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); color: var(--primary); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.small-container { max-width: 800px; text-align: center; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 5%; position: fixed; width: 100%; top: 0; z-index: 1000;
    transition: 0.4s; color: #fff;
}
.navbar.scrolled { background: rgba(44, 62, 48, 0.95); padding: 1rem 5%; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.logo { font-family: var(--font-serif); font-size: 1.5rem; letter-spacing: 2px; font-weight: 700; }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.btn-reserva { border: 1px solid #fff; padding: 8px 20px; border-radius: 2px; }
.btn-reserva:hover { background: #fff; color: var(--primary); }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #fff;
}

/* Video fondo */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;

    min-width: 100%;
    min-height: 100%;

    transform: translate(-50%, -50%);
    object-fit: cover;

    z-index: 0;
}

/* Overlay oscuro */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

#sobre-nosotros {
    scroll-margin-top: 100px; /* ajustá al alto de tu nav */
}


.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 { font-size: 5rem; color: #fff; margin: 10px 0; font-weight: 400; }
.pre-title { letter-spacing: 5px; text-transform: uppercase; font-size: 0.9rem; }
.subtitle { font-size: 1.2rem; font-weight: 300; margin-bottom: 2rem; font-style: italic; }
.scroll-down { font-size: 2rem; animation: bounce 2s infinite; display: block; margin-top: 2rem; }

@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

/* Intro */
.intro-section { padding: 5rem 0; }
.intro-section h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.gold-line { width: 50px; height: 3px; background: var(--gold); border: none; margin: 0 auto 1.5rem; }

/* Cabañas Grid */
.cabins-section { padding: 6rem 0; }
.section-header { margin-bottom: 4rem; }
.section-header h3 { font-size: 3rem; margin-bottom: 0.5rem; }
.section-header p { font-style: italic; color: #777; font-family: var(--font-serif); }

.cabins-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.cabin-card {
    background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.cabin-card:hover { transform: translateY(-10px); }
.card-img { height: 250px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.cabin-card:hover .card-img img { transform: scale(1.05); }
.tag {
    position: absolute; top: 15px; right: 15px;
    background: var(--white); color: var(--primary);
    padding: 5px 15px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
}
.card-body { padding: 2rem; text-align: center; }
.card-body h4 { font-size: 1.5rem; margin-bottom: 1rem; }
.desc { font-size: 0.9rem; color: #666; margin-bottom: 1.5rem; font-weight: 300; }
.amenities {
    list-style: none; display: flex; justify-content: center; gap: 1rem;
    border-top: 1px solid #eee; padding-top: 1rem;
}
.amenities li { font-size: 0.8rem; color: #999; }
.amenities i { color: var(--gold); margin-right: 5px; }

/* Actividades (Layout limpio) */
.activities-section { padding: 6rem 0; background: #fff; }
.grid-activities { display: grid; grid-template-columns: 1fr 0.8fr; gap: 4rem; align-items: center; }
.activities-text h3 { font-size: 2.5rem; margin-bottom: 1rem; }
.lead { margin-bottom: 3rem; font-size: 1.1rem; color: #777; }

.activity-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.icon-box {
    width: 60px; height: 60px; background: var(--bg-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-box i { font-size: 1.5rem; color: var(--primary); }
.act-desc h5 { font-size: 1.2rem; margin-bottom: 0.5rem; font-family: var(--font-sans); font-weight: 500; }
.act-desc p { font-size: 0.9rem; color: #666; }

.activities-image { height: 500px; position: relative; }
.activities-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }

/* Ubicación y Mapa */
.location-section { padding: 6rem 0; }
.map-wrapper {
    margin: 3rem 0; border: 10px solid #fff; box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
/* Truco visual Premium para el mapa: Escala de grises */
iframe { filter: grayscale(85%) invert(5%) contrast(110%); transition: filter 0.5s; }
iframe:hover { filter: grayscale(0%); }

.location-details { display: flex; justify-content: center; gap: 3rem; color: #666; }
.location-details i { color: var(--primary); margin-right: 10px; }

/* Footer */
footer { background: var(--primary); color: #fff; padding: 4rem 0 2rem; }
.contact-info { margin: 2rem 0; }
.btn-whatsapp{
    background: linear-gradient(135deg,#c5a059,#b89145);
    color:#fff;
    padding:16px 38px;
    border-radius:40px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
    letter-spacing:1px;
    font-size:15px;
    text-align: center;
    box-shadow:0 8px 25px rgba(197,160,89,0.4);
    transition:all .25s ease;

    animation:pulseReserve 2.5s infinite;
}

.btn-whatsapp:hover{
    transform:translateY(-3px) scale(1.04);
    box-shadow:0 15px 40px rgba(197,160,89,0.55);
}

.btn-whatsapp i{
    font-size:18px;
}
@keyframes pulseReserve {

    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.6);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(197, 160, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }

}
.small-text { margin-top: 1rem; color: rgba(255,255,255,0.6); }
.social-links { margin: 2rem 0; }
.social-links a { color: #fff; margin: 0 10px; font-size: 1.2rem; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* Responsive móvil */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
    .grid-activities { grid-template-columns: 1fr; }
    .activities-image { height: 300px; order: -1; margin-bottom: 2rem; }
    .location-details { flex-direction: column; gap: 1rem; align-items: center; }
}

/* --- Estilo para Actividades Complementarias --- */
.extra-activities {
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.extra-box {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.extra-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.extra-box i {
    display: block;
    font-size: 1.8rem;
    color: #C19A6B; /* El color cobre que venimos usando */
    margin-bottom: 15px;
}

.extra-box span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

/* Ajuste móvil */
@media (max-width: 600px) {
    .extra-grid {
        grid-template-columns: 1fr 1fr; /* Dos columnas en celular para que no sea una lista eterna */
        gap: 15px;
    }
}

/* --- MAP PROMO SECTION --- */
.map-promo-section {
    padding: 80px 0;
    background-color: #fff;
}

.map-promo-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #fdfdfd;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden;
    align-items: center;
}

.map-promo-content {
    padding: 60px;
}

.map-promo-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #222;
    margin: 15px 0;
    line-height: 1.2;
}

.gold-line-left {
    width: 50px;
    height: 2px;
    background: #C19A6B;
    border: none;
    margin: 20px 0;
}

.map-promo-content p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-map-interactive {
    display: inline-block;
    padding: 15px 30px;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-map-interactive:hover {
    background: #C19A6B;
    transform: translateY(-3px);
}

/* Visual del Mapa */
.map-promo-visual {
    height: 100%;
    min-height: 400px;
    position: relative;
}

.map-preview-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.3);
    transition: 0.5s ease;
}

.map-promo-card:hover .map-preview-img {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Efecto Pulso */
.map-pulse-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pulse-overlay .dot {
    width: 15px;
    height: 15px;
    background: #C19A6B;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(193, 154, 107, 0.4);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(193, 154, 107, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(193, 154, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(193, 154, 107, 0); }
}

/* --- RESPONSIVE ADAPTATION (400px - 480px) --- */
@media (max-width: 768px) {
    .map-promo-card {
        grid-template-columns: 1fr;
    }
    .map-promo-visual {
        height: 250px;
        min-height: 250px;
        order: 1;
    }
    .map-promo-content {
        padding: 40px 25px;
        order: 2;
        text-align: center;
    }
    .gold-line-left {
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .map-promo-content h2 {
        font-size: 1.8rem;
    }
    .map-promo-content p {
        font-size: 14px;
    }
    .btn-map-interactive {
        width: 100%;
        box-sizing: border-box;
    }
}

.extra-img{
  width:100%;
  height:50%;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:8px;
  opacity:0.85;
  transition: transform .3s ease;
}

.extra-box:hover .extra-img{
  transform:scale(1.05);
}

.activities-image.collage{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:6px;

  height:80%;
  width:100%;
}

.activities-image.collage img{
  width:100%;
  height:100%;
  object-fit:cover;

  border-radius:10px;

  transition:transform .35s ease;
}

.activities-image.collage img:hover{
  transform:scale(1.12);
  z-index:2;
}
.activities-image.collage video{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
}
.activities-image.collage video{
  transition: transform .35s ease;
}

.activities-image.collage video:hover{
  transform: scale(1.1);
}


.booking-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:5000;
}

.booking-modal.active{
  display:flex;
}

.booking-content{
  background:#fff;
  padding:40px;
  border-radius:16px;
  width:90%;
  max-width:520px;
}

.booking-title{
  text-align:center;
}

.booking-sub{
  text-align:center;
  color:#777;
  margin-bottom:25px;
}

.plans{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:25px;
}

.plan-card{
  border:1px solid #e5e5e5;
  border-radius:12px;
  padding:18px;
  cursor:pointer;
  transition:.25s;
}

.plan-card:hover{
  border-color:#c49a6c;
  transform:translateY(-2px);
}

.plan-card{
  cursor:pointer;
  position:relative;
}

.plan-card input{
  position:absolute;
  opacity:0;
}

.plan-card.featured{
  border:2px solid #c49a6c;
  background:#faf7f3;
}

.plan-card.selected{
  border:2px solid #c49a6c;
  background:#faf7f3;
  transform:translateY(-2px);
}

.plan-body h4{
  margin-bottom:10px;
}

.plan-body ul{
  list-style:none;
  padding:0;
  margin:0;
  font-size:14px;
  color:#555;
}

.plan-body li{
  margin-bottom:6px;
}

.booking-dates{
  display:flex;
  gap:12px;
  margin-bottom:20px;
}

.booking-dates input{
  width:100%;
  padding:10px;
  border:1px solid #ddd;
  border-radius:6px;
}

.btn-whatsapp{
  width:100%;
  margin-bottom:10px;
}

.btn-close{
  width:100%;
  background:#eee;
  border:none;
  padding:10px;
  border-radius:8px;
}

@media (max-width: 600px){

  .booking-content{
    width:95%;
    padding:25px 18px;
    max-height:90vh;
    overflow-y:auto;
  }

  .booking-content h3{
    font-size:22px;
  }

  .plan-card{
    padding:14px;
  }

  .plan-body h4{
    font-size:18px;
  }

  .plan-body ul{
    font-size:13px;
  }

  .booking-dates{
    flex-direction:column;
  }

  .booking-dates input{
    font-size:16px;
  }

  .btn-whatsapp{
    font-size:15px;
    padding:14px;
  }

}