/*
 * Proyecto: semillaselpotrero.com
 * Archivo: distribuidores.css
 * Autor: Javier Dávila
 * Fecha creación: 18.11.2025
 * ------------------------------
 * Versión: 0.0.1
 */

/* ==============================
   SECCIÓN: HERO DISTRIBUIDORES
================================= */
.hero-distribuidores {
  position: relative;
  background: url("../img/distribuidores/campo-de-arroz.png") center/cover no-repeat;
  color: var(--color-brand);
  min-height: 500px;
  /*padding: 1rem 0;*/
}

/* Capa blanca translúcida sobre la foto para mejorar legibilidad */
.hero-distribuidores::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0); /* nivel de transparencia */
}

.hero-distribuidores .container {
  position: relative; /* asegura que el contenido esté sobre la capa translúcida */
  z-index: 1;
}

/* Texto principal */
.hero-text {
  font-size: var(--text-xxxxl);
  font-weight: var(--fuente-heavy);
  line-height: 1.3;
  color: var(--color-brand);
}

.hero-text span {
  font-size: var(--text-xxxxxl);
  font-weight: var(--fuente-heavy);
  color: var(--color-secundario-oscuro); /* verde más intenso */
}

/* Imagen del mapa */
.hero-map {
  max-width: 100%;
  height: auto;
}

/* Adaptación móvil */
@media (max-width: 768px) {
  .hero-distribuidores {
    text-align: center;
    padding: 2rem 0;
  }

  .hero-text {
    font-size: var(--text-xxxl);
  }

  .hero-map {
    max-width: 80%;
  }
}

/* ==============================
   SECCIÓN: BUSCADOR DE DISTRIBUIDORES
================================= */
.buscador-section {
  background-color: var(--color-brand-alt); /* verde secundario corporativo */
  color: #fff;
}

.buscador-titulo {
  font-size: var(--text-xxl);
  font-weight: var(--fuente-bold);
  color: #fff;
}

/* Caja select personalizada */
.buscador-select {
  width: 220px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  color: var(--color-fuente-principal);
  font-size: var(--text-base);
  font-weight: var(--fuente-regular);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Al pasar el mouse */
.buscador-select:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Botón Buscar */
.btn-buscar {
  background-color: var(--color-secundario-oscuro);
  border: none;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-weight: var(--fuente-bold);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-buscar:hover {
  background-color: var(--color-secundario-vivo);
  transform: translateY(-2px);
}

.btn-buscar:active {
  background-color: var(--color-brand);
  transform: translateY(0);
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .buscador-select {
    width: 100%;
    max-width: 280px;
  }

  .btn-buscar {
    width: 100%;
    justify-content: center;
  }
}

/* ==============================
   SECCIÓN: RESULTADOS DEL BUSCADOR (centrada)
================================= */
.resultados-section {
  background-color: #fff;
  text-align: center;            /* centra título y contenido */
}

/* Centrado del título */
.resultados-titulo {
  font-size: var(--text-xxl);
  font-weight: var(--fuente-heavy);
  color: var(--color-brand);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Cada resultado */
.resultado-item {
  justify-content: center;       /* centra internamente imagen y texto */
  margin-bottom: 1.5rem;
}

/* Imagen de tienda */
.resultado-img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  margin-right: 1rem;
}

/* Bloque de información */
.resultado-datos {
  flex: 0 0 360px;               /* mantiene ancho uniforme */
  text-align: left;              /* mantiene legibilidad del texto */
}

.resultado-nombre {
  color: var(--color-brand);
  font-weight: var(--fuente-heavy);
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
}

/* Detalles (dirección / teléfono) */
.resultado-info {
  font-size: var(--text-base);
  color: var(--color-fuente-principal);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.resultado-info i {
  color: var(--color-secundario-vivo);
  margin-right: 0.4rem;
}

/* Separador */
.resultados-section hr {
  border: 0;
  border-top: 1px solid var(--color-fondo-suave);
  margin: 1.25rem auto;
  max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
  .resultado-item {
    flex-direction: column;
    align-items: center;
  }

  .resultado-img {
    margin: 0 0 0.75rem 0;
  }

  .resultado-datos {
    flex: 1 1 100%;
    /*text-align: center;*/
  }
}

/* ==============================
   PARA LA IMAGEN EN LOS RESULTADOS
================================= */
.img-clickable {
  cursor: pointer;
  transition: transform 0.5s ease;
}

.img-clickable:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Modal de imagen */
.img-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  inset: 0;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.img-modal img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}