/* =========================================
   ANINOHORA S.A.S – Stylesheet
   Theme: Organic Luxury / Natural Elegance
   ========================================= */

:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --green-pale: #95d5b2;
  --gold: #c9a84c;
  --cream: #f5f0e8;
  --white: #ffffff;
  --dark: #0d1f17;
  --text: #2c3e35;
  --text-light: #6b8e79;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --radius: 4px;
  --shadow: 0 8px 40px rgba(26,58,42,0.12);
  --shadow-lg: 0 20px 60px rgba(26,58,42,0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
}
em { font-style: italic; color: var(--green-mid); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-mid);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--green-mid);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,31,23,0.95);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(1) invert(0);
}
.nav-menu ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--green-pale);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.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;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,23,0.75) 0%,
    rgba(26,58,42,0.55) 50%,
    rgba(13,31,23,0.6) 100%
  );
  z-index: 1;
}
.slider-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  padding: 0 2rem;
  margin: 0 auto;
}
.slide {
  display: none;
  animation: fadeSlide 0.8s ease;
}
.slide.active { display: block; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-content {
  max-width: 680px;
}
.slide-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-pale);
  border: 1px solid rgba(149,213,178,0.4);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.05;
}
.slide-title em {
  color: var(--green-pale);
  font-style: italic;
}
.slide-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.2rem;
  line-height: 1.7;
  max-width: 520px;
}
.slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 2.5rem; left: 2rem;
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}
.slider-prev, .slider-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }
.slider-prev:hover, .slider-next:hover {
  background: rgba(255,255,255,0.25);
}
.scroll-indicator {
  position: absolute;
  right: 2rem;
  bottom: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--green-dark);
  padding: 2.5rem 0;
}
.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
  gap: 0.3rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-pale);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ===== NOSOTROS ===== */
.nosotros {
  padding: 7rem 0;
  background: var(--cream);
  overflow: hidden;
}
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nosotros .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.nosotros-text .btn-primary { margin-top: 2rem; }

/* Timeline */
.timeline {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.timeline-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.timeline-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
  margin-top: 0.45rem;
  box-shadow: 0 0 0 4px rgba(82,183,136,0.2);
}
.timeline-content h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.4rem;
}
.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Nosotros images */
.nosotros-images {
  position: relative;
  height: 500px;
}
.img-main {
  position: absolute;
  top: 0; right: 0;
  width: 85%; height: 80%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-main img { width: 100%; height: 100%; object-fit: cover; }
.img-secondary {
  position: absolute;
  bottom: 0; left: 0;
  width: 55%; height: 50%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.img-secondary img { width: 100%; height: 100%; object-fit: cover; }

/* ===== MISIÓN & VISIÓN ===== */
.mision-vision {
  background: var(--white);
  padding: 6rem 2rem;
}
.mv-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.mv-card {
  position: relative;
  padding: 3rem;
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}
.mv-card.vision {
  background: var(--green-dark);
  color: var(--white);
}
.mv-card.mision {
  background: var(--cream);
  border: 1px solid rgba(82,183,136,0.2);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  opacity: 0.12;
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}
.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: inherit;
}
.mv-card.mision h3 { color: var(--green-dark); }
.mv-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.85;
}
.mv-leaf {
  font-size: 2rem;
  margin-top: 1.5rem;
  display: block;
}
.mv-quote {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(82,183,136,0.2);
  max-width: 700px;
  margin: 0 auto;
}
.mv-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.mv-quote cite {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: normal;
  letter-spacing: 0.1em;
}

/* ===== PRODUCTOS ===== */
.productos {
  padding: 7rem 0;
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card.featured {
  border: 2px solid var(--green-light);
}
.product-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  z-index: 2;
}
.product-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,23,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-ver {
  background: var(--white);
  color: var(--green-dark);
  border: none;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-ver:hover { background: var(--green-pale); }
.product-info {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-info h3 {
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.7rem;
}
.product-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
}
.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.product-specs span {
  font-size: 0.8rem;
  color: var(--text-light);
}
.btn-product {
  background: transparent;
  border: 1.5px solid var(--green-mid);
  color: var(--green-mid);
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
  width: 100%;
}
.btn-product:hover {
  background: var(--green-mid);
  color: var(--white);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,31,23,0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: 4px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--cream);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.modal-close:hover { background: var(--green-mid); color: var(--white); }
.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-img {
  height: 400px;
  overflow: hidden;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-text {
  padding: 2.5rem;
}
.modal-text h2 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}
.modal-section h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream);
}
.modal-section p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.modal-specs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text);
}
.modal-specs span { display: flex; gap: 0.5rem; }
.modal-wa {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.modal-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ===== GALERÍA ===== */
.galeria {
  padding: 7rem 0 0;
  background: var(--white);
}
.galeria .section-header { padding: 0 2rem 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.large {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,31,23,0.8));
  color: var(--white);
  padding: 1.5rem 1rem 0.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ===== CONTACTO ===== */
.contacto {
  padding: 7rem 0;
  background: var(--cream);
}
.contacto-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contacto-info .section-title { margin-bottom: 2rem; }
.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.info-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.3rem;
}
.info-item p, .info-item a {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}
.info-item a:hover { color: var(--green-mid); }
.map-link {
  font-size: 0.8rem;
  color: var(--green-mid) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact Form */
.contacto-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.contacto-form h3 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(82,183,136,0.2);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}
.form-status.success { color: var(--green-mid); }
.form-status.error { color: #e74c3c; }

/* ===== MAPA ===== */
.mapa-section { line-height: 0; }
.mapa-section iframe { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 0;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand img {
  height: 52px;
  margin-bottom: 1.2rem;
  filter: brightness(1);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 1.2rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}
.footer ul a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.footer-contact a { color: var(--green-pale); transition: color 0.3s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--green-pale); }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  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;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-btn svg {
  width: 30px; height: 30px;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2s ease infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}
.whatsapp-btn:hover .wa-tooltip { opacity: 1; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .nosotros .section-container { grid-template-columns: 1fr; gap: 3rem; }
  .nosotros-images { height: 380px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
  .contacto-container { grid-template-columns: 1fr; gap: 3rem; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .mv-container { gap: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 220px); }
  .gallery-item.large { grid-column: span 2; }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar { padding: 0.8rem 0; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--dark);
    padding: 6rem 2.5rem 2.5rem;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  .nav-menu.open { right: 0; }
  .nav-menu ul { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .nav-link { font-size: 0.95rem; }
  .hamburger { display: flex; z-index: 1001; }

  .hero { min-height: 100svh; }
  .slide-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .slide-sub { font-size: 0.9rem; }
  .slide-actions { flex-direction: column; gap: 0.8rem; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .slider-prev, .slider-next { width: 38px; height: 38px; font-size: 0.9rem; }
  .slider-prev { left: 0.8rem; }
  .slider-next { right: 0.8rem; }
  .scroll-indicator { display: none; }

  .stats-container { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 1.5rem; }

  .products-grid { grid-template-columns: 1fr; }
  .product-card:last-child { grid-column: auto; max-width: 100%; }

  .mv-container { grid-template-columns: 1fr; }
  .mv-card { padding: 2rem; }

  .modal-inner { grid-template-columns: 1fr; }
  .modal-img { height: 220px; }
  .modal-text { padding: 1.5rem; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 180px);
  }
  .gallery-item.large { grid-column: span 2; }

  .contacto-form { padding: 2rem 1.5rem; }

  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }

  .whatsapp-btn { bottom: 1.5rem; right: 1.5rem; width: 54px; height: 54px; }
  .whatsapp-btn svg { width: 26px; height: 26px; }
  .wa-tooltip { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { height: 220px; }
  .gallery-item.large { grid-column: auto; }
  .nosotros-images { height: 300px; }
  .img-secondary { width: 65%; height: 45%; }
}
