
/* :root {
    --cream: #f5f0e8;
    --dark-brown: #3a1f0d;
    --warm-brown: #7b3f1a;
    --gold: #c8922a;
    --light-gold: #e8b84b;
    --text: #2c1a0e;
    --text-light: #6b4c35;
    --white: #ffffff;
    --card-bg: #ffffff;
    --section-bg: #f2ece0;
  } */


.cfafasf{
  color: #BFA182  ;
  color:  #5C753C ;
  color: #62B1DF ;

}

:root {
    --cream: #d4ccc4;
    --dark-brown: #24370e;
    --warm-brown: #0c5c37;
    --gold: #5b7b30;
    --light-gold: #7eb03c;
    --text: #2c1a0e;
    --text-light: #6b4c35;
    --white: #ffffff;
    --card-bg: #ffffff;
    --section-bg: #f2ece0;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 48px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200,146,42,0.15);
    transition: background 0.3s;
  }

  .nav-logo {
    display: flex; flex-direction: column; align-items: flex-start;
  }
  .nav-logo .logo-script {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 28px;
    color: var(--dark-brown);
    line-height: 1;
  }
  .nav-logo .logo-sub {
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--warm-brown);
    margin-top: 2px;
  }

  .nav-links {
    display: flex; align-items: center; gap: 28px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--warm-brown); }
  .nav-links .has-arrow::after { content: ' ▾'; font-size: 10px; }

  .btn-reservar {
    background: var(--warm-brown);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s, transform 0.1s;
  }
  .btn-reservar:hover { background: var(--dark-brown); transform: translateY(-1px); }


  /* ── HERO ── */
  /* .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(
      135deg,
      #1a0a00 0%,
      #36491d 20%,
      #4b6728 40%,
      #719442 60%,
      #98c460 75%,
      #5c8527 85%,
      #1a0800 100%
    );
  }

  

  /* Simulated pool/mountain silhouette overlay */
/* 
  
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 110%, rgba(0,0,0,0.7) 0%, transparent 60%),
      radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.4) 0%, transparent 50%);
  } */

  /* Mountain shapes using clip-path */
  /* .mountain-left {
    position: absolute; bottom: 0; left: 0;
    width: 55%; height: 75%;
    background: linear-gradient(180deg, #1a0d00 0%, #0d0600 100%);
    clip-path: polygon(0 100%, 0 60%, 15% 30%, 30% 45%, 45% 15%, 60% 40%, 100% 0%, 100% 100%);
  }
  .mountain-right {
    position: absolute; bottom: 0; right: 0;
    width: 55%; height: 70%;
    background: linear-gradient(180deg, #150b00 0%, #0a0400 100%);
    clip-path: polygon(0 0%, 40% 35%, 55% 20%, 70% 40%, 85% 25%, 100% 45%, 100% 100%, 0 100%);
  }  */

  /* Pool reflection */
  /* .pool-area {
    position: absolute; bottom: 0; left: 0%; right: 0%; height: 35%;
    background: linear-gradient(180deg, rgb(66, 39, 13) 0%, rgba(20,10,5,0.9) 100%);
    border-top: 1px solid rgba(200,130,40,0.3);
  } */

  /* Hut shapes */


  .hero {
    /* margin-top: 69px; */
  }

  .hero-content{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                    url('./img/background.jpg');
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
  }

  .hut {
    position: absolute;
    bottom: 35%;
  }

  .hut::before {
    content: '';
    display: block;
    width: 60px; height: 30px;
    background: #2a1505;
    clip-path: polygon(0 100%, 50% 0%, 100% 100%);
    margin-bottom: -2px;
  }
  .hut::after {
    content: '';
    display: block;
    width: 40px; height: 20px;
    background: #1a0d03;
    margin: 0 auto;
  }
  .hut-1 { left: 8%; }
  .hut-2 { left: 22%; transform: scale(1.3); }
  .hut-3 { right: 20%; transform: scale(1.1); }

  .hero-content {
    position: relative; z-index: 10;
    text-align: center;
  }

  .hero-title {
    padding-top: 15%;
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
    margin-bottom: 8px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
  }
  .hero-title span {
    color: var(--light-gold);
    display: block;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-buttons {
    display: flex; gap: 16px; justify-content: center;
    margin-top: 40px;
    animation: fadeUp 1s 0.3s ease forwards;
    opacity: 0;
  }

  .btn-primary {
    background: var(--warm-brown);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
  }
  .btn-primary:hover { background: var(--dark-brown); transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 15px 30px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

  .hero-scroll {
    position: absolute;
    width: 100%;
    bottom: 120px; 
    animation: fadeUp 1s 0.6s ease forwards;
  }

  .hero-scroll p {
    color: rgba(255,255,255,0.7);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .scroll-circle {
    width: 40px; height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    animation: bounce 2s infinite;
  }
  .scroll-circle::after { content: '↓'; color: white; font-size: 16px; }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }
  

  /* ── EXPERIENCIAS TRANSFORMACIONALES ── */
  .section-experiences {
    background: var(--section-bg);
    padding: 100px 60px;
    padding-bottom: 50px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 16px;
  }
  .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 300;
    max-width: 760px;
    margin: 0 auto 60px;
    line-height: 1.7;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(60,20,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(60,20,0,0.15);
  }

  .card-img {
    width: 100%; height: 260px;
    object-fit: cover;
    display: block;
    background: #c8a070;
  }

  /* Placeholder gradient images */
  .card-img-refugios {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c25 40%, #8fad50 70%, #6b4a20 100%);
    height: 260px;
    position: relative;
    overflow: hidden;
  }
  .card-img-refugios::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect width='100' height='100' fill='none'/%3E%3C/svg%3E");
  }

  .card-img-gastro {
    background: linear-gradient(135deg, #1a0d00 0%, #4a2800 30%, #8b4513 60%, #c87940 100%);
    height: 260px;
  }

  .card-img-bienestar {
    background: linear-gradient(135deg, #2a1a08 0%, #6b4010 40%, #c89060 70%, #8b6040 100%);
    height: 260px;
  }

  .card-body { padding: 28px; }
  .card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 12px;
  }
  .card-body p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
  }
/* mover un tab a la derecha */
  .card-body ul {
    margin-bottom: 24px;
    margin-left: 20px;
  }

/* menos espacio entre cada linea */

.card-body ul li {
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .btn-card {
    display: block;
    background: var(--warm-brown);
    color: white;
    text-align: center;
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-card:hover { background: var(--dark-brown); }

  /* ── PERSONALIZA ── */
  .section-personaliza {
    padding: 50px 60px;
    background: var(--section-bg);
    
  }

  .experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .exp-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s;
  }
  .exp-card:hover { transform: scale(1.02); }

  .exp-bg {
    position: absolute; inset: 0;
    transition: transform 0.4s;
  }
  .exp-card:hover .exp-bg { transform: scale(1.05); }

  .exp-bg-sendero { background: linear-gradient(180deg, #2a5a70 0%, #1a3a50 50%, #0d2030 100%); }
  .exp-bg-yoga { background: linear-gradient(180deg, #1a1a2e 0%, #2d2d50 50%, #0d0d1a 100%); }
  .exp-bg-sound { background: linear-gradient(180deg, #1a1010 0%, #3d1a1a 50%, #0d0808 100%); }
  .exp-bg-aguas { background: linear-gradient(180deg, #0a1a0a 0%, #1a3a1a 50%, #050d05 100%); }
  .exp-bg-ritual { background: linear-gradient(180deg, #1a0d20 0%, #2d1a3d 50%, #0d0510 100%); }
  .exp-bg-desayuno { background: linear-gradient(180deg, #1a3a1a 0%, #2d5a2d 50%, #0d200d 100%); }

  .exp-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  }

  .exp-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px;
  }
  .exp-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: white;
    margin-bottom: 6px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }
  .exp-content p {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .exp-price {
    font-size: 14px;
    color: var(--light-gold);
    font-weight: 600;
  }
  .exp-price span { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.7); }
  .exp-included {
    font-size: 12px;
    color: var(--light-gold);
    font-weight: 500;
  }
  .exp-included::before { content: '✓ '; }

  /* Active card highlight */
  .exp-card.active .exp-content h3 { color: var(--light-gold); }

  /* ── RESEÑAS ── */
  .section-reviews {
    padding: 100px 60px;
    background: var(--cream);
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
  }

  .review-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(60,20,0,0.06);
  }

  .review-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
  }
  .stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }

  .platform-badge {
    display: flex; align-items: center; gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .badge-tripadvisor { background: #00aa6c; color: white; }
  .badge-airbnb { background: #ff5a5f; color: white; }
  .badge-google { background: #4285f4; color: white; }

  .review-text {
    font-size: 13.5px;
    color: #5a3a25;
    line-height: 1.75;
    margin-bottom: 20px;
    font-weight: 300;
    font-style: italic;
  }
  .review-link {
    font-size: 12px;
    color: var(--warm-brown);
    text-decoration: none;
    font-weight: 500;
  }
  .review-author { margin-top: 16px; }
  .review-author strong { font-size: 13px; color: var(--dark-brown); font-weight: 600; }
  .review-author span { display: block; font-size: 12px; color: var(--text-light); margin-top: 2px; }

  .reviews-nav {
    display: flex; justify-content: center; gap: 12px;
    margin-bottom: 30px;
  }
  .nav-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid #c8a070;
    background: white;
    cursor: pointer;
    font-size: 14px;
    color: var(--warm-brown);
    transition: all 0.2s;
  }
  .nav-btn:hover { background: var(--warm-brown); color: white; }

  .verified-bar {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    flex-wrap: wrap;
  }
  .verified-bar a {
    text-decoration: none;
    font-weight: 600;
  }
  .verified-bar a.google-link { color: #4285f4; }
  .verified-bar a.ta-link { color: #00aa6c; }
  .verified-bar a.airbnb-link { color: #ff5a5f; }
  .verified-bar a.booking-link { color: #003580; }
  .verified-bar .dot { color: #c8a070; }

  /* ── FOOTER ── */
  footer {
    background: var(--dark-brown);
    color: rgba(255,255,255,0.7);
    padding: 20px 60px;
    text-align: center;
  }
  footer .footer-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 36px;
    color: white;
    margin-bottom: 6px;
  }
  footer .footer-sub {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--light-gold);
    margin-bottom: 32px;
  }
  footer .footer-links {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 24px;
    margin-bottom: 32px;
    list-style: none;
  }
  footer .footer-links a {
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
  }
  footer .footer-links a:hover { color: var(--light-gold); }
  footer .divider {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 0 auto 32px;
  }
  footer p { font-size: 12px; color: rgba(255,255,255,0.4); }

  /* ── DECORATIVE LINE ── */
  .ornament {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-bottom: 20px;
  }
  .ornament::before, .ornament::after {
    content: '';
    flex: 1; max-width: 80px;
    height: 1px;
    background: var(--gold);
  }
  .ornament-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

  /* ── IMAGE PLACEHOLDERS with visual texture ── */
  .img-placeholder {
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
  }

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 14px 24px; }
    .nav-links { display: none; }
    .section-experiences, .section-personaliza, .section-reviews { padding: 60px 24px; }
    .cards-grid, .experiences-grid, .reviews-grid { grid-template-columns: 1fr; }
    footer { padding: 40px 24px; }
  }