/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f0fdf4;
  color: #333;
  font-size: 16px;
}

/* ======== ENCABEZADO ======== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: relative;
  z-index: 900;
}

header .logo-izq img { height: 60px; }
header .logo-der img { height: 80px; }

header .titulo h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #008000;
  font-weight: 700;
}

/* ================= MENÚ HAMBURGUESA ================= */
.menu-toggle {
  display: none;
  width: 100%;
  background: #008000;
  color: white;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  margin-right: 8px;
  font-size: 22px;
  vertical-align: middle;
}

/* MENÚ */
nav {
  background: #008000;
  position: relative;
  z-index: 900;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

nav ul li a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

nav ul li a:hover,
nav ul li a.activo {
  background: #006400;
}

/* ======== TARJETA FLOTANTE ======== */
.tarjeta-flotante {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 950;
}

.tarjeta-flotante img {
  width: 36px;
}

.tarjeta-flotante p {
  font-size: 13px;
}

/* MAPA */
#map {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

/* ======== POPUP LEAFLET ======== */
.leaflet-popup,
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  z-index: 999999 !important;
}

.popup-card {
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}

.popup-card h3 {
  margin: 5px 0;
  color: #008000;
}

.popup-card .popup-img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.popup-card button {
  margin-top: 8px;
  padding: 6px 12px;
  background: #008000;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.popup-card button:hover {
  background: #006400;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #008000;
  color: white;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 700px) {

  .menu-toggle { display: block; }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  nav ul.activo {
    display: flex;
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  header .logo-izq img,
  header .logo-der img {
    height: 60px;
  }

  .tarjeta-flotante {
    top: 260px;
    padding: 10px 14px;
  }

  /* Cuando el menú se abre, la tarjeta baja más */
  nav.abierto + .tarjeta-flotante {
    top: 360px !important;
  }

  .tarjeta-flotante img { width: 35px; }

  #map {
    height: calc(100vh - 300px);
  }
}
@import "mobile.css";
