:root {
  --verde-musgo-profundo: #457724;
  --verde-olivo: #75aa52;
  --naranja-quemado: #D98335;
  --beige-roca: #E8E2D9;
  --beige-claro: #f5f1eb;
  --gris-pizarra: #262626;
  --blanco: #ffffff;
  --sombra: rgba(0, 0, 0, 0.1);
  --borde: #e0e0e0;
}

/* Hero Section - Compacto */
.hero-geoescazu {
  background-color: var(--beige-roca);
  color: var(--gris-pizarra);
  padding: 2rem 2rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-contenido {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-imagen {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--blanco);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-imagen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.8);
  background-color: var(--blanco);
}

.hero-geoescazu h1 {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
  color: var(--verde-musgo-profundo);
  text-shadow: none;
}

.hero-geoescazu .subtitulo {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 0.5rem;
  font-weight: 400;
  color: var(--gris-pizarra);
  opacity: 0.9;
}

/* Contenedor Principal */
.contenedor-principal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.seccion-destacada {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 0;
}

.seccion-destacada:nth-child(odd) .texto-destacado {
  order: 1;
}

.seccion-destacada:nth-child(odd) .imagen-destacada {
  order: 2;
}

.texto-destacado h2 {
  color: var(--verde-musgo-profundo);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 3px solid var(--verde-olivo);
  padding-bottom: 0.5rem;
  margin-top: 0;
}

.texto-destacado p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gris-pizarra);
  margin-bottom: 1.8rem;
  text-align: justify;/
}

.btn-secundario {
  display: inline-block;
  background-color: var(--verde-olivo);
  color: var(--blanco);
  padding: 0.7rem 1.3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-secundario:hover {
  background: var(--verde-musgo-profundo);
  color: var(--blanco);
}


.imagen-destacada {
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen-destacada img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;

  transition: transform 0.5s ease;
}

.imagen-destacada:hover img {
  transform: scale(1.05);
}

/* Características */
.caracteristicas-geo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 3rem 0;
}

.tarjeta-caracteristica {
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--sombra);
  border-top: 5px solid var(--verde-olivo);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta-caracteristica:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.icono-tarjeta {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.tarjeta-caracteristica h3 {
  color: var(--verde-musgo-profundo);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.tarjeta-caracteristica p {
  color: var(--gris-pizarra);
  line-height: 1.5;
  margin-bottom: 0;
}

.seccion-mapa-preview {
  padding: 3rem;
  margin: 2rem 0 3rem 0;
  text-align: center;
}

.seccion-mapa-preview h2 {
  color: var(--verde-musgo-profundo);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.seccion-mapa-preview p {
  max-width: 700px;
  margin: 0 auto 1.8rem;
  font-size: 1.1rem;
  color: var(--gris-pizarra);
}

.btn-primario {
  display: inline-block;
  background: var(--verde-olivo);
  color: var(--blanco);
  padding: 0.7rem 1.3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--verde-olivo);
}

.btn-primario:hover {
  background: var(--verde-musgo-profundo);
  border-color: var(--verde-musgo-profundo);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(58, 90, 64, 0.2);
}

/* Realizados Por - Con fondo beige */
.realizados-por {
  text-align: center;
  margin: 2rem 0 1rem 0;
  padding: 2.5rem;
  background-color: var(--beige-roca);
  border-radius: 12px;
}

.realizados-por h3 {
  color: var(--verde-musgo-profundo);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Apoyados Por - Con fondo beige */
.instituciones-apoyo {
  text-align: center;
  margin: 1rem 0 3rem 0;
  padding: 2.5rem;
  background-color: var(--beige-roca);
  border-radius: 12px;
}

.instituciones-apoyo h3 {
  color: var(--verde-musgo-profundo);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Logos comunes para ambas secciones */
.logos-instituciones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.institucion-logo {
  height: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.institucion-logo img {
  max-height: 100%;
  max-width: 180px;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.institucion-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* RESPONSIVE - Móvil */
@media (max-width: 992px) {
  .seccion-destacada {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  /* En móvil: resetear el orden para que todo esté en columna */
  .seccion-destacada:nth-child(odd) .texto-destacado,
  .seccion-destacada:nth-child(odd) .imagen-destacada {
    order: unset;
  }

  .imagen-destacada {
    text-align: center;
  }

  .imagen-destacada img {
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-geoescazu h1 {
    font-size: 2.3rem;
  }

  .hero-geoescazu .subtitulo {
    font-size: 1.2rem;
  }

  .texto-destacado h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .hero-geoescazu {
    padding: 1.5rem 1rem 0.5rem;
  }

  .hero-geoescazu h1 {
    font-size: 1.9rem;
  }

  .hero-geoescazu .subtitulo {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .hero-imagen {
    width: 140px;
    height: 140px;
    margin-bottom: 1rem;
  }

  .contenedor-principal {
    padding: 0.5rem 1rem;
  }

  .seccion-destacada {
    gap: 1.5rem;
  }

  .texto-destacado h2 {
    font-size: 1.7rem;
    text-align: center;
  }

  .texto-destacado p {
    text-align: center;
  }

  .imagen-destacada img {
    max-width: 100%;
  }

  .caracteristicas-geo {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .seccion-mapa-preview {
    padding: 2rem 1rem;
    margin: 1.5rem 0;
  }

  .seccion-mapa-preview h2 {
    font-size: 1.7rem;
  }

  .realizados-por,
  .instituciones-apoyo {
    padding: 2rem 1rem;
    margin: 1rem 0;
  }

  .logos-instituciones {
    gap: 1.5rem;
  }

  .institucion-logo {
    height: 50px;
  }

  .institucion-logo img {
    max-width: 150px;
  }
}

/* Animaciones mejoradas */
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}