/* ===== VARIABLES CSS ===== */
:root {
  /* Colores naturales y boscosos */
  --primary-color: #2d5016; /* Verde bosque oscuro */
  --primary-light: #4a7c23; /* Verde bosque medio */
  --primary-lighter: #6ba832; /* Verde bosque claro */
  --secondary-color: #8b4513; /* Marrón tierra */
  --secondary-light: #a0522d; /* Marrón claro */
  --accent-color: #228b22; /* Verde natural */
  --accent-light: #32cd32; /* Verde lima suave */

  /* Colores neutros */
  --white: #ffffff;
  --cream: #faf8f3; /* Crema natural */
  --light-gray: #f5f5f0; /* Gris muy claro con tinte cálido */
  --gray: #8a8a7a; /* Gris verdoso */
  --dark-gray: #4a4a40; /* Gris oscuro verdoso */
  --black: #2c2c24; /* Negro con tinte natural */

  /* Gradientes */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.8) 0%,
    rgba(74, 124, 35, 0.6) 100%
  );
  --gradient-card: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);

  /* Tipografía */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-secondary: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  /* Tamaños de fuente */
  --fs-xs: 0.75rem; /* 12px */
  --fs-sm: 0.875rem; /* 14px */
  --fs-base: 1rem; /* 16px */
  --fs-lg: 1.125rem; /* 18px */
  --fs-xl: 1.25rem; /* 20px */
  --fs-2xl: 1.5rem; /* 24px */
  --fs-3xl: 1.875rem; /* 30px */
  --fs-4xl: 2.25rem; /* 36px */
  --fs-5xl: 3rem; /* 48px */
  --fs-6xl: 3.75rem; /* 60px */

  /* Espaciado */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem; /* 8px */
  --spacing-md: 1rem; /* 16px */
  --spacing-lg: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 3rem; /* 48px */
  --spacing-3xl: 4rem; /* 64px */
  --spacing-4xl: 6rem; /* 96px */

  /* Bordes */
  --border-radius-sm: 0.375rem; /* 6px */
  --border-radius-md: 0.5rem; /* 8px */
  --border-radius-lg: 0.75rem; /* 12px */
  --border-radius-xl: 1rem; /* 16px */
  --border-radius-2xl: 1.5rem; /* 24px */
  --border-radius-full: 9999px;

  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(45, 80, 22, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(45, 80, 22, 0.1),
    0 2px 4px -1px rgba(45, 80, 22, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(45, 80, 22, 0.1),
    0 4px 6px -2px rgba(45, 80, 22, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(45, 80, 22, 0.1),
    0 10px 10px -5px rgba(45, 80, 22, 0.04);

  /* Transiciones */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* ===== RESET Y BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--cream);
  overflow-x: hidden;
}

/* ===== UTILIDADES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}

/* Animaciones de entrada */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-up.delay-1 {
  animation-delay: 0.2s;
}

.animate-fade-up.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== BOTONES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== NAVEGACIÓN ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(250, 248, 243, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo h2 {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--primary-color);
}

.nav-menu {
  display: none;
  list-style: none;
  gap: var(--spacing-xl);
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color var(--transition-normal);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--primary-color);
}

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

/* Hamburger menu */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

/* ===== SECCIÓN HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="forest" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="100" fill="%23f0f8e8"/><circle cx="20" cy="20" r="2" fill="%234a7c23" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%236ba832" opacity="0.4"/><circle cx="50" cy="70" r="2.5" fill="%232d5016" opacity="0.2"/></pattern></defs><rect width="1000" height="1000" fill="url(%23forest)"/></svg>')
    center/cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 1;
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: var(--fs-4xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-year {
  display: block;
  font-size: var(--fs-6xl);
  font-weight: 800;
  background: linear-gradient(45deg, var(--accent-light), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: var(--spacing-sm);
}

.hero-subtitle {
  font-size: var(--fs-lg);
  font-weight: 300;
  margin-bottom: var(--spacing-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: var(--fs-2xl);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--fs-5xl);
  }

  .hero-year {
    font-size: 5rem;
  }

  .hero-subtitle {
    font-size: var(--fs-xl);
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===== SECCIONES GENERALES ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title {
  font-family: var(--font-secondary);
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

section {
  padding: var(--spacing-4xl) 0;
}

/* ===== SECCIÓN ABOUT ===== */
.about {
  background: var(--white);
}

.about-content {
  display: grid;
  gap: var(--spacing-3xl);
  align-items: center;
}

.about-description {
  font-size: var(--fs-lg);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-weight: 500;
  color: var(--primary-color);
}

.feature-item i {
  font-size: var(--fs-xl);
  color: var(--accent-color);
}

.about-image {
  position: relative;
}

.image-placeholder {
  background: var(--light-gray);
  border: 2px dashed var(--gray);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-3xl);
  text-align: center;
  color: var(--gray);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image-placeholder i {
  font-size: var(--fs-4xl);
  margin-bottom: var(--spacing-md);
  opacity: 0.5;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: var(--fs-4xl);
  }
}

/* ===== SECCIÓN ACTIVIDADES ===== */
.activities {
  background: var(--light-gray);
}

.activities-grid {
  display: grid;
  gap: var(--spacing-xl);
}

.activity-card {
  background: var(--gradient-card);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  text-align: center;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.activity-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
}

.activity-icon i {
  font-size: var(--fs-2xl);
  color: var(--white);
}

.activity-title {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.activity-description {
  color: var(--gray);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.activity-image .image-placeholder {
  min-height: 200px;
}

@media (min-width: 768px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .activities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== SECCIÓN PAQUETES ===== */
.packages {
  background: var(--white);
}

.packages-grid {
  display: grid;
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.package-card {
  background: var(--gradient-card);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  text-align: center;
  border: 2px solid transparent;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.package-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.package-header {
  margin-bottom: var(--spacing-xl);
}

.package-name {
  font-family: var(--font-secondary);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--spacing-xs);
}

.package-price .currency {
  font-size: var(--fs-lg);
  color: var(--gray);
}

.package-price .amount {
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--primary-color);
}

.package-price .period {
  font-size: var(--fs-base);
  color: var(--gray);
}

.package-features {
  margin-bottom: var(--spacing-xl);
}

.package-features ul {
  list-style: none;
  text-align: left;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  color: var(--dark-gray);
}

.package-features i {
  color: var(--accent-color);
  font-size: var(--fs-sm);
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== SECCIÓN TESTIMONIOS ===== */
.testimonials {
  background: var(--light-gray);
}

.testimonials-grid {
  display: grid;
  gap: var(--spacing-xl);
}

.testimonial-card {
  background: var(--gradient-card);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-content {
  margin-bottom: var(--spacing-lg);
}

.testimonial-text {
  font-size: var(--fs-lg);
  font-style: italic;
  line-height: 1.7;
  color: var(--dark-gray);
  position: relative;
}


.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  flex-shrink: 0;
}

.author-image .image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  min-height: auto;
}

.author-image i {
  font-size: var(--fs-xl);
  color: var(--gray);
}

.author-name {
  font-family: var(--font-secondary);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.author-age {
  font-size: var(--fs-sm);
  color: var(--gray);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== SECCIÓN UBICACIÓN ===== */
.location {
  background: var(--white);
}

.location-content {
  display: grid;
  gap: var(--spacing-3xl);
  align-items: start;
}

.location-info {
  display: grid;
  gap: var(--spacing-xl);
}

.info-card {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: var(--gradient-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: var(--fs-xl);
  color: var(--white);
}

.info-content h3 {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.info-content p {
  color: var(--gray);
  line-height: 1.6;
}

.location-map .map-placeholder {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .location-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== SECCIÓN CONTACTO ===== */
.contact {
  background: var(--light-gray);
}

.contact-content {
  display: grid;
  gap: var(--spacing-3xl);
}

.contact-info h3 {
  font-family: var(--font-secondary);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xl);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  font-size: var(--fs-lg);
}

.contact-item i {
  width: 24px;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--fs-xl);
  transition: all var(--transition-normal);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Formulario */
.contact-form {
  background: var(--gradient-card);
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius-lg);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  transition: all var(--transition-normal);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

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

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
  display: grid;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo h3 {
  font-family: var(--font-secondary);
  font-size: var(--fs-2xl);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-secondary);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-sm);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ===== BOTÓN FLOTANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: var(--spacing-xl);
  right: var(--spacing-xl);
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: var(--border-radius-full);
  color: var(--white);
  font-size: var(--fs-2xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== RESPONSIVE ADICIONAL ===== */
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: var(--spacing-3xl);
    transition: left var(--transition-normal);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin-bottom: var(--spacing-lg);
  }

  .nav-link {
    font-size: var(--fs-lg);
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOADING STATES ===== */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.nav-menu {
  display: none;
  flex-direction: column;
  /* otros estilos para móvil */
}

.nav-menu.active {
  display: flex;
}
@media (min-width: 1024px) {
  .activities-grid {
    justify-content: center;
  }
}
.hero-logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero-background {
  background-image: url("https://raw.githubusercontent.com/serviciosbs/assets/refs/heads/main/SUMMERCAMP_MIOTROYO/BACKGROUND.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.nav-logo-img {
  height: 50px; /* ajusta según el tamaño que desees */
  display: block;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0b3d2e; /* gris muy oscuro */
  backdrop-filter: blur(
    10px
  ); /* opcional: puedes quitarlo si ya no quieres transparencia */
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
  z-index: 1000;
  transition: all var(--transition-normal);
}
.navbar.scrolled {
  background: #0b3d2e;
  box-shadow: var(--shadow-md);
}
.image-placeholder {
  width: 100%;
  margin: 0 auto; /* centra el contenedor */
  text-align: center;
}

.image-placeholder img {
  width: 100%; /* la imagen ocupará el 100% del 80% del contenedor */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px; /* opcional */
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.activity-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 1rem;
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Por defecto: 1 en móvil */
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablets: 2 */
  }
}

@media (min-width: 1024px) {
  .activities-grid {
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 */
  }
}
.activity-img {
  width: 100%;
  aspect-ratio: 1 / 1; /* cuadrado */
  object-fit: cover;
  border-radius: 12px;
  margin-top: 1rem;
  display: block;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr; /* Móvil: 1 columna */
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columnas */
  }
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.author-image img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #f3a712; /* color dorado para marco */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto 1rem;
}
.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
  color: #333;
}
.author-image {
  width: 96px;
  height: 96px;
  margin: 0 auto; /* centra el contenedor de la imagen */
  overflow: hidden; /* para que no se salga nada */
  border-radius: 50%;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* para que tome todo el alto disponible */
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.testimonial-content {
  /* Que el texto quede arriba */
  margin-bottom: 2rem; /* espacio abajo */
  color: #555;
  font-style: italic;
  flex-grow: 1; /* para que ocupe el espacio disponible */
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.author-image img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  /* border: 3px solid; */
  /* border-image-slice: 1; */
  /* border-image-source: linear-gradient(135deg, #7bc142, #1c3b0e); */
  display: block;
  margin: 0 auto;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center; /* centra horizontalmente */
  gap: 1rem;
}

.map-placeholder iframe {
  width: 100%;
  max-width: 400px;
  height: 300px;
  border: 0;
  border-radius: 12px;
}
.contact-item span {
  color: inherit; /* usa el color normal del texto */
  text-decoration: none; /* quita subrayado */
  cursor: default; /* opcional: quita el cursor de enlace */
}
select {
  color: #1c3b0e; /* verde bosque para el texto */
  -webkit-appearance: none; /* para quitar estilo nativo en Safari */
  -moz-appearance: none; /* para Firefox */
  appearance: none; /* estándar */
  background: url('data:image/svg+xml;utf8,<svg fill="%231C3B0E" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>')
    no-repeat right 10px center;
  background-size: 16px 16px;
  padding-right: 30px; /* espacio para la flecha */
  border: 1px solid #1c3b0e; /* opcional, para combinar */
  border-radius: 4px; /* opcional */
}
.social-link {
  text-decoration: none; /* quita subrayado */
  border: none; /* elimina bordes */
  box-shadow: none; /* elimina sombras */
  outline: none; /* quita outline al enfocar si no quieres */
  display: inline-block;
  color: inherit; /* para que tome el color padre */
  position: relative; /* si usas pseudo-elementos */
}
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex; /* para centrar el ícono */
  align-items: center;
  justify-content: center;
  width: 48px; /* tamaño del botón */
  height: 48px;
  border-radius: 50%; /* círculo */
  background-color: #1c3b0e; /* verde bosque */
  color: #fff; /* color ícono */
  font-size: 24px; /* tamaño ícono */
  text-decoration: none; /* sin subrayado */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  background-color: #7bc142; /* verde pasto al hover */
  color: #fff;
}
.packages-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.package-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  max-width: 400px; /* opcional para que no crezcan demasiado */
}

.package-features {
  flex-grow: 1;
}

.package-card a.btn {
  margin-top: auto;
}
