.ocultar-en-movil{
  display: none !important;
}


.ocultar-en-escritorio{
  display: none !important;
}

@media (max-width: 767px) {
  .ocultar-en-escritorio { display: flex !important;}
}

@media (min-width: 767px) {
  .ocultar-en-movil { display: flex !important;}
}

/* Estilo para el select de Contact Form 7 */
.wpcf7-form select {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    padding: 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    margin: 5px 0 15px 0 !important;
    box-sizing: border-box !important;
    background-color: #f9f9f9 !important;
    height: auto !important;
}

/* Contenedor padre para consistencia */
.wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
}

Versión mejorada (con transición suave)
css

/* Estilo profesional para selects */
.wpcf7-form select {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #d1d1d1 !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    background-color: #fff !important;
    background-image: none !important;
    margin: 8px 0 20px 0 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

/* Efecto hover/focus */
.wpcf7-form select:hover, 
.wpcf7-form select:focus {
    border-color: #a0a0a0 !important;
    outline: none !important;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1) !important;
}


/* Botón flotante central inferior */
.floating-button {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    
    /* Estilo del botón */
    background-color: #25D366; /* Color de WhatsApp (cambiable) */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* Centrar icono */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efectos al interactuar */
.floating-button:hover {
    background-color: #128C7E; /* Color más oscuro al pasar el mouse */
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Versión móvil (opcional) */
@media (max-width: 768px) {
    .floating-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
    }
}
