/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', system-ui, sans-serif;
  background: #ea8c68;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; font-weight: 800; text-wrap: balance; }
p { text-wrap: pretty; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* lucide icons sizing */
[data-icon] { display: inline-flex; }
[data-icon] svg { width: 1em; height: 1em; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1rem 0; transition: all 0.5s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(15, 27, 46, 0.95);
  backdrop-filter: blur(6px);
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.nav-container {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.nav-links { display: none; gap: 2rem; align-items: center; position: absolute; }
.nav-left { left: 1.5rem; }
.nav-right { right: 1.5rem; }
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: #ffffff; }
.nav-logo img { height: 3rem; transition: all 0.5s; }
.mobile-toggle { position: absolute; right: 1.5rem; color: rgba(255,255,255,0.85); font-size: 1.5rem; }
.mobile-menu {
  background: rgba(15, 27, 46, 0.95); backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem;
}
.mobile-menu a { color: rgba(255,255,255,0.85); font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 0; }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .mobile-toggle { display: none; }
  .nav-logo img { height: 3.5rem; }
}

/* ============ HERO SLIDER ============ */
.hero-section { width: 100%; }
.slider {
  position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden;
}
@media (min-width: 768px) { .slider { height: 70vh; } }
.slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1s;
}
.slide.active { opacity: 1; }
.slider-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.slider-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 1.5rem; max-width: 768px; margin: 0 auto;
  color: #ffffff;
}
.slider-content .eyebrow {
  font-size: 0.875rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 1.5rem;
}
.slider-content h1 {
  font-size: 1.875rem; font-weight: 800; line-height: 1.05; margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .slider-content h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .slider-content h1 { font-size: 3.75rem; } }
.slider-content .subtitle { font-size: 1.125rem; font-weight: 300; max-width: 36rem; opacity: 0.9; }
.slider-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 3;
}
.slider-dots button {
  width: 0.625rem; height: 0.625rem; border-radius: 999px;
  background: rgba(255,255,255,0.5); transition: all 0.3s;
}
.slider-dots button.active { background: #ffffff; width: 2rem; }

/* ============ CATEGORÍAS ACCORDION ============ */
.categories { display: flex; flex-direction: column; min-height: 300px; }
@media (min-width: 768px) { .categories { flex-direction: row; height: 30vh; } }
.cat-item {
  position: relative; flex: 1; overflow: hidden; cursor: pointer;
  height: 200px; transition: flex 0.5s;
}
@media (min-width: 768px) { .cat-item { height: 100%; } .cat-item:hover { flex: 3; } }
.cat-item img { width: 100%; height: 100%; object-fit: cover; }
.cat-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.cat-overlay h3 { color: #fff; font-weight: 800; font-size: 1.125rem; }
.cat-overlay p { color: rgba(255,255,255,0.9); font-size: 0.875rem; opacity: 0; transition: opacity 0.3s; }
@media (min-width: 768px) { .cat-item:hover .cat-overlay p { opacity: 1; } }

/* ============ UBICACIÓN ============ */
.location { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .location { grid-template-columns: 3fr 2fr; } }
.location-text {
  background: #ffffff; color: #684633;
  padding: 5rem 1.5rem; display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 768px) { .location-text { padding: 5rem 4rem; } }
.location-text h2 { font-size: 1.875rem; line-height: 1.2; margin-bottom: 2rem; }
@media (min-width: 768px) { .location-text h2 { font-size: 3rem; } }
.location-text .underline { text-decoration: underline; text-decoration-color: rgba(104,70,51,0.4); text-underline-offset: 4px; }
.lugares { display: flex; flex-direction: column; gap: 1rem; }
.lugares li { display: flex; align-items: center; gap: 0.5rem; font-size: 1.125rem; }
.lugar-left { display: inline-flex; align-items: center; gap: 0.75rem; }
.lugar-left svg { width: 20px; height: 20px; }
.dotted {
  flex: 1; height: 0; margin: 0 0.5rem 4px;
  border-bottom: 2px dotted rgba(104,70,51,0.3);
}
.distance {
  flex-shrink: 0; padding: 0.25rem 0.75rem; border-radius: 4px;
  font-size: 0.875rem; font-weight: 600; color: #fff; background: #ea8c68;
}
.location-image {
  background: #684633; padding: 5rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.location-image img { width: 100%; height: auto; }

/* ============ BENEFICIOS ============ */
.benefits { background: #ffffff; padding: 5rem 1.5rem; color: #0f1b2e; }
.benefits-inner { max-width: 1100px; margin: 0 auto; }
.benefits-head { text-align: center; margin-bottom: 4rem; }
.eyebrow-brown {
  color: #684633; font-size: 0.875rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 500; margin-bottom: 1rem;
}
.benefits-head h2 { font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .benefits-head h2 { font-size: 3rem; } }
.benefits-grid {
  display: grid; grid-template-columns: 2fr; gap: 2rem;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
.benefit-card {
  background: #faf7f4; border-radius: 0.5rem; padding: 1.0rem;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: box-shadow 0.3s;

}
.benefit-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.benefit-ico {
  width: 6.5rem; height: 6.5rem; 
 color: #e78871;
  display: flex; align-items: center; justify-content: center;

}
.benefit-card h3 { font-size: 1.50rem; margin: 0rem; margin-bottom: 0.5rem; padding: 0; color: #0f1b2e; }
.benefit-card p { font-size: 1rem; line-height: 1.6; font-weight: 300; color: rgba(15,27,46,0.7); }

/* ============ MODELOS ============ */
.models { background: #ffffff; color: #0f1b2e; padding: 6rem 0; }
.models-head {
  max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem;
}
.eyebrow-dark {
  font-size: 0.875rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 0.75rem; color: #0f1b2e;
}
.models-head h2 { font-size: 1.875rem; font-weight: 600; }
@media (min-width: 768px) { .models-head h2 { font-size: 3rem; } }
.models-arrows { display: none; gap: 0.5rem; }
@media (min-width: 768px) { .models-arrows { display: flex; } }
.models-arrows button {
  width: 2.75rem; height: 2.75rem; border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.2); color: #0f1b2e;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.125rem; transition: background 0.2s;
}
.models-arrows button:hover { background: rgba(0,0,0,0.05); }
.models-scroll {
  display: flex; gap: 1.25rem; overflow-x: auto;
  padding: 0 1.5rem 1rem; scroll-behavior: smooth;
  scrollbar-width: none;
}
.models-scroll::-webkit-scrollbar { display: none; }
.model-card { flex-shrink: 0; width: 300px; cursor: pointer; }
.model-card .img-wrap {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; margin-bottom: 1rem;
}
.model-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.model-card:hover img { transform: scale(1.05); }
.model-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.model-meta { display: flex; gap: 1rem; font-size: 0.875rem; color: rgba(0,0,0,0.6); }
.model-meta span { display: inline-flex; align-items: center; gap: 0.375rem; }
.model-meta i { color: #0f1b2e; }

/* ============ FOOTER ============ */
.footer { background: #ffffff; color: #0f1b2e; padding: 4rem 1.5rem; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-logo { height: 3.5rem; margin-bottom: 1.5rem; }
.footer p { font-size: 0.875rem; color: rgba(0,0,0,0.6); line-height: 1.6; max-width: 18rem; }
.footer h4 {
  font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1.5rem;
}
.footer ul { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; color: rgba(0,0,0,0.7); }
.footer ul li { display: flex; align-items: center; gap: 0.75rem; }
.footer-links li { display: block; }
.footer-links a { color: rgba(0,0,0,0.7); transition: color 0.2s; }
.footer-links a:hover { color: #0f1b2e; }
.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0;
  border-top: 1px solid rgba(0,0,0,0.1); padding-top: 2rem; text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(0,0,0,0.4); letter-spacing: 0.05em; margin: 0 auto; }

/* ============ WHATSAPP BUTTON ============ */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 3.5rem; height: 3.5rem; border-radius: 999px;
  background: #1faa45; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  font-size: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.05); box-shadow: 0 14px 30px rgba(0,0,0,0.3); }