/* ════════════════════════════════════════
   ACTUALIZAR: colores en :root para cambiar
   toda la paleta de la pagina de una vez
════════════════════════════════════════ */
:root {
  --green-dark:   #1a3a2a;
  --green-main:   #2d7a4f;
  --green-mid:    #3a9463;
  --accent:       #5cb87a;
  --accent-light: #a8e0bc;
  --bg-light:     #f4f9f6;
  --text:         #1a2e22;
  --text-light:   #4a6357;
  --white:        #ffffff;
  --shadow-sm:    0 2px 12px rgba(26,58,42,0.08);
  --shadow-md:    0 6px 28px rgba(26,58,42,0.13);
  --shadow-lg:    0 16px 48px rgba(26,58,42,0.18);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }

/* ── Utilities ── */
.container    { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 0.7rem;
  max-width: 560px;
  margin-inline: auto;
}
.section-tag {
  display: inline-block;
  background: rgba(45,122,79,0.1);
  color: var(--green-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 1rem;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--green-dark);
  line-height: 1.2;
}
.highlight { color: var(--green-main); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--green-main);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 99px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 20px rgba(45,122,79,0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45,122,79,0.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 99px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-large { padding: 1.05rem 2.8rem; font-size: 1.1rem; }

/* ════════════════════════════════════════
   WHATSAPP FLOTANTE
════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.5s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  animation: none;
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--green-dark);
  border-right: 0;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.15); }
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(26,58,42,0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 2.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.logo-leaf { font-size: 1rem; color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a:hover::after { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 99px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-mid) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
/* ACTUALIZAR: cambia el gradiente por background-image con foto real
   background-image: url('img/hero-bg.jpg'); background-size: cover; */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0f2318 0%, #1a4a30 35%, #2d7a4f 70%, #4aaa6e 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(92,184,122,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45,122,79,0.3) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 99px;
  backdrop-filter: blur(6px);
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero-highlight {
  color: var(--accent-light);
  position: relative;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.4rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator span {
  display: block;
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 99px;
  position: relative;
}
.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar {
  background: var(--green-dark);
  padding: 3rem 1.5rem;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-suffix {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--accent);
  font-weight: 700;
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.about-photo { position: relative; }
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--bg-light), #d4edde);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--green-main);
  font-size: 5rem;
  border: 2px dashed var(--accent-light);
}
/* ACTUALIZAR: cuando agregues foto real, el img tendra estos estilos */
.about-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.photo-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--green-main);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-md);
}
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.check-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.check-list i { color: var(--green-main); font-size: 1.1rem; }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services { background: var(--bg-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-main), var(--accent));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-main), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 14px rgba(45,122,79,0.28);
  transition: transform var(--transition);
}
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.7rem;
}
.card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}
.card-tag {
  display: inline-block;
  margin-top: 1.2rem;
  background: rgba(45,122,79,0.1);
  color: var(--green-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 99px;
}

/* ════════════════════════════════════════
   WHY CHOOSE ME
════════════════════════════════════════ */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover {
  background: var(--bg-light);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--green-main), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,122,79,0.3);
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery { background: var(--bg-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item.g-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: unset;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(145deg, #c8e6d4, #a8d4bc);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--green-main);
  font-size: 2.5rem;
  border: 2px dashed rgba(45,122,79,0.3);
  transition: background var(--transition);
}
.gallery-placeholder span {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.6;
}
/* ACTUALIZAR: cuando agregues fotos, el img tendra estos estilos */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img,
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials { background: var(--green-dark); }
.testimonials .section-tag { background: rgba(255,255,255,0.1); color: var(--accent-light); }
.testimonials h2 { color: var(--white); }

.testi-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.testi-avg {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.testi-avg span { font-size: 1.2rem; color: rgba(255,255,255,0.5); }
.testi-stars-big { color: #fbbf24; font-size: 1.6rem; letter-spacing: 0.05em; }
.testi-total { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* Carrusel */
.testi-carousel {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.testi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem;
  flex: 0 0 calc(33.333% - 0.84rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.testi-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--accent);
  transform: translateY(-5px);
}
.testi-top { display: flex; align-items: center; justify-content: space-between; }
.testi-stars { color: #fbbf24; font-size: 0.95rem; letter-spacing: 0.06em; }
.testi-date  { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.testi-card > p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--white); flex-shrink: 0;
}
.testi-author strong { color: var(--white); font-size: 0.88rem; display: block; line-height: 1.3; }
.testi-author span   { color: var(--accent-light); font-size: 0.72rem; }

/* Controles */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}
.testi-arrow {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.testi-arrow:hover:not(:disabled) { background: var(--green-main); border-color: var(--green-main); }
.testi-arrow:disabled { opacity: 0.25; cursor: default; }
.testi-dots {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
}
.testi-dot {
  width: 7px; height: 7px;
  border-radius: 99px;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s, transform 0.3s;
}
.testi-dot.active { background: var(--accent); width: 22px; }

@media (max-width: 900px) {
  .testi-card { flex: 0 0 calc(50% - 0.63rem); }
}
@media (max-width: 600px) {
  .testi-card { flex: 0 0 100%; }
}

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-main) 0%, var(--accent) 100%);
  padding: 80px 1.5rem;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.8rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--green-main);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.cta-banner .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.25);
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact { background: var(--bg-light); }
.contact-sub { color: var(--text-light); font-size: 1rem; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-main);
  flex-shrink: 0;
  transition: background var(--transition);
}
.contact-icon.whatsapp  { color: #25d366; }
.contact-icon.instagram { color: #e1306c; }
.contact-icon.facebook  { color: #1877f2; }
.contact-icon.zelle     { color: #6d1ed4; }
.contact-card:hover .contact-icon { background: rgba(45,122,79,0.08); }
.contact-info strong { display: block; font-size: 0.82rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-info span   { font-size: 0.92rem; color: var(--text); font-weight: 500; word-break: break-all; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: var(--green-dark); padding: 3rem 1.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-inner > p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; justify-content: center; gap: 1.2rem; margin-bottom: 2rem; }
.footer-socials a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-socials a:hover {
  background: var(--green-main);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ════════════════════════════════════════
   CARRITO FLOTANTE
════════════════════════════════════════ */
.cart-float {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 998;
  width: 56px; height: 56px;
  background: var(--green-dark);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), background var(--transition);
}
.cart-float:hover { background: var(--green-main); transform: scale(1.08); }
.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: #e53e3e;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.cart-badge.show { display: flex; }

/* ════════════════════════════════════════
   CARRITO DRAWER (panel lateral)
════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 100%;
  max-width: 400px;
  background: var(--white);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
}
.cart-drawer.open { transform: translateX(0); }

/* Header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: var(--green-dark);
  color: var(--white);
  flex-shrink: 0;
}
.drawer-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
}
.drawer-title i { font-size: 1.1rem; }
.drawer-count {
  background: rgba(255,255,255,0.15);
  font-size: 0.72rem;
  padding: 2px 10px;
  border-radius: 99px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.drawer-close {
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.drawer-close:hover { background: rgba(255,255,255,0.25); }

/* Vacío */
.drawer-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  gap: 0.6rem;
}
.drawer-empty-icon {
  width: 80px; height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}
.drawer-empty p { font-size: 1rem; font-weight: 600; color: var(--text); }
.drawer-empty small { font-size: 0.85rem; color: var(--text-light); }
.drawer-browse {
  margin-top: 0.8rem;
  background: var(--green-main);
  color: var(--white);
  border: none;
  border-radius: 99px;
  padding: 0.6rem 1.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.drawer-browse:hover { background: var(--green-mid); }

/* Items */
.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}
.drawer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--bg-light);
  transition: background var(--transition);
}
.drawer-item:hover { background: var(--bg-light); }
.drawer-item-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-main), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.drawer-item-info { flex: 1; }
.drawer-item-name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.drawer-item-sub { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }
.drawer-item-remove {
  background: none;
  border: 1.5px solid #fed7d7;
  color: #e53e3e;
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.drawer-item-remove:hover { background: #fff5f5; border-color: #e53e3e; }

/* Footer */
.drawer-footer {
  flex-shrink: 0;
  border-top: 2px solid var(--bg-light);
  padding: 1.2rem 1.5rem 1.5rem;
  background: var(--white);
}
.drawer-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--bg-light);
}
.drawer-summary span:last-child {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1rem;
}
.drawer-pay { margin-bottom: 1.1rem; }
.drawer-pay-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.drawer-pay-label i { color: var(--green-main); }
.drawer-pay-options { display: flex; flex-direction: column; gap: 0.5rem; }
.drawer-pay-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 0.55rem 1rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
}
.drawer-pay-chip i { color: var(--green-main); font-size: 1rem; }
.drawer-pay-chip.zelle i { color: #6d1ed4; }
.drawer-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  margin-bottom: 0.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: background var(--transition), transform var(--transition);
}
.drawer-checkout:hover { background: #1ea855; transform: translateY(-1px); }
.drawer-checkout i:last-child { margin-left: auto; }
.drawer-clear {
  width: 100%;
  background: none;
  border: 1.5px solid #e2e8f0;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.drawer-clear:hover { background: #fff5f5; color: #e53e3e; border-color: #fed7d7; }

/* ════════════════════════════════════════
   CARD — VER MAS + AGREGAR
════════════════════════════════════════ */
.card { cursor: pointer; }
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.1rem;
  gap: 0.5rem;
}
.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--green-main);
  color: var(--white);
  border: none;
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.btn-add-cart:hover { background: var(--green-mid); transform: scale(1.04); }
.btn-add-cart.added { background: #38a169; }
.card-see-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-main);
  letter-spacing: 0.02em;
  transition: gap var(--transition), color var(--transition);
}
.card:hover .card-see-more { gap: 0.7rem; color: var(--green-mid); }

/* ════════════════════════════════════════
   MODAL DE SERVICIO
════════════════════════════════════════ */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-modal.open {
  pointer-events: all;
  opacity: 1;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,28,18,0.75);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.service-modal.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-light);
  color: var(--text-light);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: var(--green-main); color: var(--white); }
.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.modal-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-main), var(--accent));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}
.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  line-height: 1.2;
}
.modal-section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 0.9rem;
}
.modal-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}
.modal-videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.media-placeholder {
  background: linear-gradient(145deg, var(--bg-light), #d4edde);
  border: 2px dashed var(--accent-light);
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--green-main);
  font-size: 1.8rem;
}
.media-placeholder span {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.6;
  letter-spacing: 0.04em;
}
.video-placeholder { aspect-ratio: 16/9; font-size: 2.5rem; }
/* Fotos/videos reales en el modal */
.modal-photos img,
.modal-videos video,
.modal-videos iframe {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  display: block;
}
.modal-videos iframe { aspect-ratio: 16/9; border: none; }
.modal-wa { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ════════════════════════════════════════
   ANIMACIONES (manejadas por script.js)
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .photo-placeholder { aspect-ratio: 16/9; }
  .photo-badge { bottom: -1rem; right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.g-large { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(26,58,42,0.98);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .navbar { padding: 1rem 1.5rem; }
  .section { padding: 70px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.g-large { grid-column: auto; }
  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
