/* =============================================
   POZO COLORADO – Comunidad Aborigen Kolla
   Diseño: cálido, cultural, institucional
   ============================================= */

:root {
  --ocre:      #c9762a;
  --ocre-dk:   #9e5718;
  --turquesa:  #3a9ba8;
  --turq-lt:   #e8f6f8;
  --tierra:    #8b3a1e;
  --sal:       #faf7f2;
  --crema:     #f2ead8;
  --noche:     #1c1a18;
  --text:      #2d2a26;
  --muted:     #6b6156;
  --radius:    8px;
  --tr:        .3s ease;
  --max-w:     1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; font-weight: 300; color: var(--text); background: #fff; line-height: 1.75; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 88px 0; }
.bg-sal      { background: var(--sal); }
.bg-crema    { background: var(--crema); }
.bg-turq     { background: var(--turq-lt); }

.label {
  display: inline-block;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ocre); margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--muted); max-width: 540px; margin: 0 auto; }

h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }

/* wiphala strip */
.wiphala-strip {
  height: 6px;
  background: linear-gradient(to right,
    #e63946 14.28%, #f4a261 14.28% 28.57%,
    #e9c46a 28.57% 42.86%, #2a9d8f 42.86% 57.14%,
    #457b9d 57.14% 71.43%, #6a0572 71.43% 85.71%,
    #1d3557 85.71%);
}

/* buttons */
.btn-primary { display: inline-block; padding: 14px 34px; background: var(--ocre); color: #fff; border-radius: 40px; font-weight: 500; font-size: .95rem; transition: var(--tr); box-shadow: 0 4px 16px rgba(201,118,42,.3); }
.btn-primary:hover { background: var(--ocre-dk); transform: translateY(-2px); }
.btn-outline { display: inline-block; padding: 13px 34px; border: 2px solid rgba(255,255,255,.8); color: #fff; border-radius: 40px; font-weight: 500; font-size: .95rem; transition: var(--tr); }
.btn-outline:hover { background: rgba(255,255,255,.15); }

/* header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; transition: var(--tr); }
.site-header.scrolled { background: rgba(28,26,24,.96); backdrop-filter: blur(10px); padding: 10px 0; box-shadow: 0 2px 24px rgba(0,0,0,.35); }
.header-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 50px; width: auto; }
.main-nav { display: flex; gap: 28px; }
.main-nav a { color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 400; letter-spacing: .04em; transition: var(--tr); position: relative; padding-bottom: 2px; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--ocre); transition: var(--tr); }
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(140deg, rgba(28,26,24,.78) 0%, rgba(58,155,168,.2) 100%); }
.hero-bottom-strip { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; }
.hero-content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 130px 28px 100px; color: #fff; }
.hero-eyebrow { font-size: .75rem; letter-spacing: .22em; text-transform: uppercase; color: #f4c97a; margin-bottom: 18px; font-weight: 600; }
.hero-title { color: #fff; margin-bottom: 22px; max-width: 720px; }
.hero-title em { font-style: italic; color: #a8dce3; }
.hero-sub { font-size: 1.12rem; color: rgba(255,255,255,.85); max-width: 500px; margin-bottom: 40px; font-weight: 300; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); font-size: 1.4rem; animation: bounce 2s infinite; z-index: 2; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* porque cards */
.porque-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.porque-card { text-align: center; padding: 40px 28px; background: #fff; border-radius: var(--radius); box-shadow: 0 4px 24px rgba(0,0,0,.07); border-top: 4px solid var(--ocre); transition: var(--tr); }
.porque-card:nth-child(2) { border-top-color: var(--turquesa); }
.porque-card:nth-child(3) { border-top-color: var(--tierra); }
.porque-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.porque-icon { font-size: 2.6rem; margin-bottom: 16px; }
.porque-card h3 { margin-bottom: 12px; color: var(--ocre); }
.porque-card:nth-child(2) h3 { color: var(--turquesa); }
.porque-card:nth-child(3) h3 { color: var(--tierra); }
.porque-card p { color: var(--muted); font-size: .93rem; }

/* intro */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.intro-text h2 { margin-bottom: 20px; }
.intro-text p  { margin-bottom: 16px; color: var(--muted); }
.intro-img { position: relative; }
.intro-img img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.intro-img::before { content: ''; position: absolute; inset: -12px -12px 12px 12px; border: 3px solid var(--ocre); border-radius: var(--radius); opacity: .3; z-index: -1; }
.link-arrow { color: var(--ocre); font-weight: 600; font-size: .93rem; display: inline-block; margin-top: 8px; transition: var(--tr); }
.link-arrow:hover { color: var(--ocre-dk); letter-spacing: .02em; }

/* guías */
.guias-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px,1fr)); gap: 28px; }
.guia-card { text-align: center; }
.guia-foto { width: 116px; height: 116px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; border: 4px solid var(--crema); box-shadow: 0 4px 16px rgba(0,0,0,.12); transition: var(--tr); }
.guia-card:hover .guia-foto { border-color: var(--ocre); transform: scale(1.05); }
.guia-foto img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.guia-nombre { font-family: 'Playfair Display', serif; font-size: .98rem; font-weight: 700; margin-bottom: 4px; }
.guia-rol { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ocre); font-weight: 600; }

/* cards */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: var(--tr); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 44px rgba(0,0,0,.14); }
.card-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: var(--tr); }
.card:hover .card-img img { transform: scale(1.04); }
.card-img { overflow: hidden; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--muted); font-size: .93rem; flex: 1; }
.card-link { margin-top: 18px; color: var(--ocre); font-weight: 600; font-size: .88rem; }

/* galería */
.galeria-strip { display: grid; grid-template-columns: repeat(6,1fr); height: 250px; }
.galeria-strip img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.82) saturate(1.1); transition: var(--tr); }
.galeria-strip img:hover { filter: brightness(1) saturate(1.2); z-index: 1; }

/* testimonio */
.testimonio-box { background: var(--crema); border-radius: var(--radius); padding: 48px; text-align: center; max-width: 680px; margin: 0 auto; position: relative; }
.testimonio-box::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 8rem; color: var(--ocre); opacity: .12; position: absolute; top: -10px; left: 24px; line-height: 1; }
.testimonio-foto { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 4px solid var(--ocre); }
.testimonio-foto img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.testimonio-texto { font-size: 1.05rem; color: var(--text); font-style: italic; line-height: 1.85; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonio-nombre { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; }
.testimonio-origen { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ocre); font-weight: 600; }

/* video */
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.15); }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* two col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* page hero */
.page-hero { height: 320px; position: relative; display: flex; align-items: flex-end; }
.page-hero-img { position: absolute; inset: 0; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,26,24,.82) 0%, rgba(28,26,24,.22) 100%); }
.page-hero-content { position: relative; z-index: 2; color: #fff; padding: 40px 28px; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.page-hero-content .label { color: #f4c97a; }
.page-hero-content h1 { font-size: clamp(1.9rem, 4vw, 3rem); }

/* content */
.content-section { padding: 80px 0; }
.content-section h2 { margin-bottom: 20px; }
.content-section h3 { margin: 32px 0 12px; color: var(--ocre); }
.content-section p { color: var(--muted); margin-bottom: 16px; line-height: 1.85; }
.content-section ul, .content-section ol { margin: 16px 0 24px 24px; color: var(--muted); }
.content-section li { margin-bottom: 8px; }
.content-section strong { color: var(--text); font-weight: 500; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 14px; }
.gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); transition: var(--tr); }
.gallery-grid img:hover { opacity: .85; transform: scale(1.02); }

/* contact box */
.contact-box { background: var(--crema); border-left: 4px solid var(--ocre); border-radius: var(--radius); padding: 28px 32px; margin: 32px 0; }
.contact-box h3 { margin-bottom: 10px; }
.contact-box p { color: var(--muted); margin: 0; }
.contact-box a { color: var(--ocre); font-weight: 500; }

/* parador list */
.parador-list { list-style: none; margin-bottom: 32px; }
.parador-list li { padding: 9px 0 9px 22px; position: relative; color: var(--muted); border-bottom: 1px solid #e8dfd0; font-size: .93rem; }
.parador-list li::before { content: "✦"; position: absolute; left: 0; color: var(--ocre); font-size: .6rem; top: 13px; }

/* map */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.map-wrap iframe { display: block; width: 100%; }

/* footer */
.site-footer { background: var(--noche); color: rgba(255,255,255,.65); padding: 0; }
.footer-inner { padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 44px; margin-bottom: 16px; }
.footer-grid p { font-size: .9rem; line-height: 1.85; }
.footer-grid h4 { color: #fff; font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: .9rem; transition: var(--tr); }
.footer-nav a:hover { color: var(--ocre); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: .8rem; color: rgba(255,255,255,.35); }

/* artesania */
.art-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 14px; margin-top: 28px; }
.art-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; transition: var(--tr); }
.art-gallery img:hover { opacity: .85; transform: scale(1.02); }
.artesania-section { padding: 72px 0; }
.artesania-section + .artesania-section { border-top: 1px solid #e8dfd0; }

/* responsive */
@media (max-width: 960px) {
  .intro-grid, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .porque-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .galeria-strip { grid-template-columns: repeat(3,1fr); height: 200px; }
}
@media (max-width: 640px) {
  .main-nav { display: none; position: fixed; inset: 0; background: rgba(28,26,24,.97); flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 99; }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1.3rem; }
  .nav-toggle { display: flex; z-index: 100; }
  .cards-grid, .porque-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .galeria-strip { grid-template-columns: repeat(2,1fr); height: 200px; }
  .hero-cta { flex-direction: column; }
  .testimonio-box { padding: 32px 24px; }
}
