/* -------------------------
   BOTONES PARA FORMULARIOS DEMO
-------------------------- */
.botones-demo {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 10px;
}

/* -------------------------
   WHATSAPP BOTÓN EN FORMULARIOS
-------------------------- */
.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 14px;
  font-size: 17px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
  background-color: #1da851;
  transform: scale(1.03);
}

/* -------------------------
   CONTENEDOR DE BOTONES EN PRODUCTOS
-------------------------- */
.botones-compra {
  width: 100%;
  margin-top: 10px;
}

/* -------------------------
   BOTÓN BASE GENERAL
-------------------------- */
.boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  padding: 12px;
  margin: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 48px;
}

/* -------------------------
   ESTILOS INDIVIDUALES POR TIPO DE BOTÓN
-------------------------- */
.boton-whatsapp {
  background-color: #00C853;
  color: white;
  font-size: 1.05rem;
  flex: 3;
  gap: 8px;
}

.boton-whatsapp i {
  font-size: 1.2rem;
}

.boton-info {
  background-color: #2979FF	;
  color: white;
  flex: 1;
  font-size: 1.2rem;
  min-width: 48px;
  max-width: 56px;
  padding: 0;
  border: none;
  border-radius: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.boton-info:hover {
  background-color: #e60073;
  transform: scale(1.05);
}

/* -------------------------
   ÍCONOS DENTRO DE BOTONES
-------------------------- */
.boton i {
  margin: 0;
}

/* -------------------------
   FILA DE 2 BOTONES (WhatsApp e Info)
-------------------------- */
.fila-dos-botones {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.fila-dos-botones .boton {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  height: 48px;
}

/* === CONTENEDOR DE BOTONES FLOTANTES (UNO ENCIMA DEL OTRO) === */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

/* === ESTILO BASE PARA CADA BOTÓN === */
.floating-buttons a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

/* === WHATSAPP (VERDE) === */
.floating-buttons .whatsapp {
  background-color: #25D366;
}

/* === TELEGRAM (AZUL) === */
.floating-buttons .telegram {
  background-color: #0088cc;
}

.floating-buttons a i {
  font-size: 26px;
}

/* -------------------------
   ANIMACIÓN DE FEEDBACK
-------------------------- */
@keyframes pulsar {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    transform: scale(0.96);
    box-shadow: 0 0 8px rgba(255, 0, 127, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
