@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  color: #1a1a1a;
  line-height: 1.6;
  background: #fff;
}

/* ── HEADER ── */
header {
  background: #004743;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

header img {
  width: 35vw;
  max-width: 160px;
  min-width: 100px;
  height: auto;
}

nav { display: flex; align-items: center; }

nav a {
  color: rgb(208, 157, 115);
  margin-left: 24px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

nav a:hover { opacity: 0.75; }

nav a.nav-active {
  border-bottom: 1.5px solid rgb(208, 157, 115);
  padding-bottom: 2px;
}

.menu-toggle,
.menu-toggleX {
  display: none;
  font-size: 28px;
  color: rgb(208, 157, 115);
  cursor: pointer;
}

@media (max-width: 768px) {
  header { padding: 14px 20px; }

  .nav-links {
    position: absolute;
    top: 62px;
    left: 0;
    width: 100%;
    background: #004743;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 10px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links a { margin: 14px 0; font-size: 15px; }
  .menu-toggle { display: block; }
  .nav-links.active { display: flex; }
  .menu-toggle.open { display: none; }
  .menu-toggleX.open { display: block; }
}

/* ── LABELS ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b07d50;
  background: #fdf0e6;
  border: 0.5px solid #d9a878;
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.section-label-light {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d9a878;
  background: rgba(217,168,120,0.15);
  border: 0.5px solid rgba(217,168,120,0.4);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

/* ── HERO ── */
.hero {
  position: relative;
  background-image: url("Media/vista-cocina-final-02-YyvDxNQXOxieZKrw.webp");
  background-size: cover;
  background-position: center;
  height: 95vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 80px 60px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(208, 157, 115);
  border: 0.5px solid rgba(208,157,115,0.5);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(52px, 8vw, 90px);
  font-weight: 700;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-botones {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #004743;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  border: 1.5px solid #004743;
}

.btn-primary:hover { background: #016863; border-color: #016863; }

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll i { animation: bounce 1.8s infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 768px) {
  .hero { padding: 0 24px 60px; align-items: flex-end; }
  .hero-scroll { display: none; }
}

/* ── STATS FLOTANTES ── */
.stats-flotantes {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  margin: -40px auto 0;
  max-width: 800px;
  position: relative;
  z-index: 10;
  padding: 24px 40px;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.stat-num {
  font-size: 22px;
  font-weight: 700;
  color: #004743;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: #999;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: #e0e0e0;
}

@media (max-width: 600px) {
  .stats-flotantes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: -30px 20px 0;
    padding: 20px;
  }
  .stat-divider { display: none; }
}

/* ── PROYECTO ── */
.proyecto-section {
  padding: 100px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.proyecto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .proyecto-section { padding: 80px 24px 60px; }
  .proyecto-grid { grid-template-columns: 1fr; gap: 30px; }
}

.proyecto-imagen {
  position: relative;
}

.proyecto-imagen img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 460px;
  display: block;
}

.imagen-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.proyecto-texto h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.proyecto-texto p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #004743;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1.5px solid #004743;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.btn-link:hover { opacity: 0.7; }

/* ── FEATURES ── */
.features-section {
  background: #f7f9f9;
  padding: 80px 40px;
}

.features-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.features-header h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: #1a1a1a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border: 0.5px solid #d8e8e7;
  border-top: 3px solid #004743;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,71,67,0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: #e6f0ef;
  color: #004743;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-section { padding: 60px 24px; }
}

/* ── GALERÍA ── */
.galeria-section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.galeria-header {
  text-align: center;
  margin-bottom: 36px;
}

.galeria-header h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.galeria-header p {
  font-size: 14px;
  color: #999;
}

.galeria-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 460px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.galeria-grande {
  grid-row: 1 / 3;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.galeria-item:hover img { transform: scale(1.04); }

.galeria-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
  font-size: 12px;
  padding: 20px 14px 12px;
  letter-spacing: 0.5px;
}

.galeria-cta {
  text-align: center;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .galeria-section { padding: 60px 24px; }
  .galeria-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .galeria-grande { grid-row: auto; }
  .galeria-item { height: 200px; }
}

/* ── AMENIDADES ── */
.amenidades-section {
  background: #004743;
  padding: 80px 40px;
}

.amenidades-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .amenidades-section { padding: 60px 24px; }
  .amenidades-inner { grid-template-columns: 1fr; gap: 36px; }
}

.amenidades-texto h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.3;
}

.amenidades-lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.amenidad-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.amenidad-item i {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  color: rgb(208,157,115);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.btn-primary-light {
  display: inline-block;
  background: rgb(208,157,115);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-primary-light:hover { background: rgb(185,135,95); }

.amenidades-imagen img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 420px;
  display: block;
  opacity: 0.85;
}

/* ── NOSOTROS MINI ── */
.nosotros-mini {
  padding: 80px 40px;
  background: #f7f9f9;
}

.nosotros-mini-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .nosotros-mini { padding: 60px 24px; }
  .nosotros-mini-inner { grid-template-columns: 1fr; gap: 36px; }
}

.nosotros-mini-texto h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.nosotros-mini-texto p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}

.nosotros-mini-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-stat {
  background: #fff;
  border: 0.5px solid #d8e8e7;
  border-left: 4px solid #004743;
  border-radius: 10px;
  padding: 16px 20px;
}

.mini-num {
  font-size: 26px;
  font-weight: 700;
  color: #004743;
  line-height: 1;
}

.mini-label {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, #004743 0%, #006b65 100%);
  padding: 80px 40px;
}

.cta-final-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-final-inner h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-final-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

.cta-botones {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-whatsapp:hover { background: #1dbb57; }

@media (max-width: 768px) {
  .cta-final { padding: 60px 24px; }
}

/* ── FOOTER ── */
.footer-container {
  background-color: #002e2b;
  color: rgb(208,157,115);
  padding: 60px 10%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column { flex: 1; min-width: 180px; }

.footer-column .logo { width: 180px; margin-bottom: 16px; }

.footer-column h3 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ccc;
  letter-spacing: 0.5px;
}

.footer-column p {
  color: #888;
  line-height: 1.7;
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a,
.footer-column p a {
  color: #888;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-column ul li a:hover,
.footer-column p a:hover { color: #fff; }

.social-icons { display: flex; gap: 10px; margin-top: 16px; }

.social-icons .icon {
  width: 34px;
  height: 34px;
  background-color: rgb(208,157,115);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s;
}

.social-icons .icon:hover { background-color: rgb(148,112,82); }

.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #555;
}