		
  /* Contenedor del formulario flotante (inicialmente oculto) */
  .floating-form {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 350px;
    height: 500px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none; /* Oculto por defecto */
    transform: translateY(20px);
    opacity: 10;
  }
  
  .floating-form.visible {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }
  
  /* BotÃ³n circular para mostrar/ocultar */
  .form-toggle {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #0066cc;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
  }
  
  .form-toggle:hover {
    background: #004d99;
    transform: scale(1.1);
  }
  
  /* Responsive: ajustes para mÃ³viles */
  @media (max-width: 768px) {
    .floating-form {
      width: 90%;
      right: 5%;
      height: 400px;
      bottom: 10px;
    }
    
    .form-toggle {
      right: 15px;
      bottom: 15px;
      width: 50px;
      height: 50px;
      font-size: 20px;
    }
  }
		
	.hide-on-mobile {
    display: block; /* Visible por defecto */
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important; /* Oculta en m¨®viles */
    }
}
	
		

