/* Popup */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.popup img {
  width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}
.popup .close {
  position: absolute;
  top: 30px; right: 50px;
  font-size: 2em;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

/* --- BOTÓN FIJO (izquierda) --- */
#cotizacion-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
}
#cotizacion-btn button {
  background-color: #42ba46;
  color: #001b44;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.15s ease;
}
#cotizacion-btn button:active { transform: translateY(1px); }
#cotizacion-btn img { width: 38px; height: 38px; }
@media (max-width: 600px) {
  #cotizacion-btn .btn-text { display: none; }
  #cotizacion-btn button { padding: 10px; border-radius: 50%; }
}

/* --- POPUP POSICIONADO ARRIBA DEL BOTÓN (izquierda) --- */
#popup-cotizacion {
  position: fixed;
  bottom: 95px;
  left: 20px;
  z-index: 11000;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform-origin: bottom left;
}
.popup-hidden {
  display: none;
  opacity: 0;
  transform: translateY(8px) scale(0.99);
}
.popup-content {
  background: linear-gradient(135deg, #008d00, #ecad15);
  color: white;
  border-radius: 12px;
  padding: 18px;
  width: 320px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  position: relative;
}
.popup-content h2 { 
  text-align: center;
  font-size: 22px;
  margin: 4px 0 12px 0;
  color: #ffffff;
}
.popup-content small { font-size: 13px; color: #cfe0ff; }
.popup-content label { display:block; margin-top:10px; font-weight:600; color: #f1f7ff; }
.popup-content input[type="text"],
.popup-content textarea {
  width:100%;
  padding:9px;
  border-radius:8px;
  border:none;
  margin-top:6px;
  resize:none;
  background: rgba(255,255,255,0.95);
  color:#001;
}
.popup-content textarea { height:90px; }
.adjuntar { display:block; margin-top:10px; font-size:14px; cursor:pointer; color:#eaf2ff; }
#cotizar-btn {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px; /* espacio entre texto y logo */
  margin-top: 12px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
}

#cotizar-btn img {
  width: 48px;
  height: 48px;
  vertical-align: middle;
}
.contacto { text-align:center; font-size:13px; margin-top:10px; color:#e7f2ff; }
#close-popup {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}
#popup-cotizacion.show {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

