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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #333;
  background-color: #faf7f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e3d7c8;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.navbar-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #c58b5b;
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25)), 
    url("img/jardin-cuernavaca-fachada.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-overlay {
  position: relative;
  max-width: 800px;
  padding: 4rem 1.5rem 3.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.8rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, #c58b5b, #d7a774);
  color: #fff;
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.35);
}

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
}

.section {
  padding: 3.5rem 1.5rem;
}

.section-alt {
  background: #f3ece3;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #c58b5b;
  font-weight: 600;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 600;
}

.section-description {
  font-size: 0.95rem;
  color: #555;
  max-width: 620px;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid-2 {
  grid-template-columns: minmax(0,1.1fr);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px dashed #d9c9b5;
  font-size: 0.8rem;
  background: #fff;
}

.card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.14);
}

.card-soft {
  background: #fff7f2;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid #f2dfcf;
}

.icon-bullet-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.1rem;
  font-size: 0.92rem;
}

.icon-bullet {
  display: flex;
  gap: 0.65rem;
}

.icon-bullet-marker {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c58b5b;
  margin-top: 0.4rem;
}

.highlight-text {
  font-weight: 500;
  color: #4b3b2b;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.6rem;
}

.gallery-item {
  border-radius: 0.9rem;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  filter: saturate(1.02);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.28), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.26);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.fb-wrapper {
  position: relative;
  width: 100%;
  padding-top: 130%;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
}

.fb-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-details {
  display: grid;
  gap: 0.9rem;
  font-size: 0.95rem;
}

.contact-details p span {
  font-weight: 600;
  color: #4b3b2b;
}

.contact-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.14);
}

form {
  display: grid;
  gap: 0.85rem;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #4b3b2b;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid #d8c7b4;
  font: inherit;
  background: #fffdfa;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #c58b5b;
  box-shadow: 0 0 0 1px rgba(197,139,91,0.25);
}

.footer {
  padding: 2rem 1.5rem 2.5rem;
  background: #2d2117;
  color: #f7eee5;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer a {
  color: #f0d1a6;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-bottom {
  font-size: 0.78rem;
  opacity: 0.85;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 1.5rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.6);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}

/* WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 90;
}

.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
  font-size: 1.5rem;
}

/* Call button for mobile */
.call-mobile {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 90;
}

.call-mobile a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: #c58b5b;
  color: #fff;
  font-size: 0.85rem;
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
  .section {
    padding: 4rem 2rem;
  }
  .hero-overlay {
    padding-top: 5rem;
  }
  .fb-wrapper {
    padding-top: 80%;
  }
  .gallery-item img {
    height: 160px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
}
