.elementor-385 .elementor-element.elementor-element-d9fa3e5{--display:flex;}.elementor-385 .elementor-element.elementor-element-f8669d9{width:100%;max-width:100%;}.elementor-385 .elementor-element.elementor-element-271ea442{--display:flex;--margin-top:-1px;--margin-bottom:-1px;--margin-left:-1px;--margin-right:-1px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-385 .elementor-element.elementor-element-5fecaa82{width:100%;max-width:100%;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f8669d9 *//* Estilos personalizados para formulario de contacto - Bien Estar Salud IPS */

/* Contenedor principal del formulario */
.wpforms-container {
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

/* Elementos decorativos */
.wpforms-container::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 0;
}

.wpforms-container::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 30%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.05);
    z-index: 0;
}

/* Título del formulario si existe */
.wpforms-title {
    font-size: 28px;
    font-weight: 600;
    color: #102b4e;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Subtítulo del formulario si existe */
.wpforms-description {
    color: #6b7385;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

/* Etiquetas de los campos */
.wpforms-field-label {
    font-weight: 600 !important;
    color: #102b4e !important;
    margin-bottom: 8px !important;
    font-size: 16px !important;
}

/* Campos de entrada */
.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field input[type="number"],
.wpforms-field input[type="tel"],
.wpforms-field textarea {
    border: 1px solid #e0e6f0 !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    background-color: #f9fafc !important;
    color: #4a5568 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

/* Efecto hover en los campos */
.wpforms-field input[type="text"]:hover,
.wpforms-field input[type="email"]:hover,
.wpforms-field input[type="number"]:hover,
.wpforms-field input[type="tel"]:hover,
.wpforms-field textarea:hover {
    border-color: #cad5e8 !important;
    background-color: #ffffff !important;
}

/* Efecto focus en los campos */
.wpforms-field input[type="text"]:focus,
.wpforms-field input[type="email"]:focus,
.wpforms-field input[type="number"]:focus,
.wpforms-field input[type="tel"]:focus,
.wpforms-field textarea:focus {
    border-color: #0056b3 !important;
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1) !important;
    background-color: #ffffff !important;
}

/* Campos requeridos */
.wpforms-required-label {
    color: #ff6b6b !important;
}

/* Botón de envío */
.wpforms-submit {
    background-color: #0056b3 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 25px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.2) !important;
}

/* Efecto hover en el botón */
.wpforms-submit:hover {
    background-color: #004494 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.3) !important;
}

/* Efecto active en el botón */
.wpforms-submit:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 5px rgba(0, 86, 179, 0.2) !important;
}

/* Contenedor del botón */
.wpforms-submit-container {
    text-align: center !important;
    margin-top: 15px !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Spinner de carga */
.wpforms-submit-spinner {
    margin-left: 10px !important;
}

/* Mensajes de error */
.wpforms-error {
    color: #ff6b6b !important;
    font-size: 14px !important;
    margin-top: 5px !important;
}

/* Contenedor del reCAPTCHA */
.wpforms-recaptcha-container {
    margin-top: 20px !important;
    display: flex !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Espacio entre campos */
.wpforms-field {
    margin-bottom: 20px !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Placeholder text */
.wpforms-field input::placeholder,
.wpforms-field textarea::placeholder {
    color: #a0aec0 !important;
    opacity: 0.8 !important;
}

/* Ocultar spinner de número en Chrome, Safari, Edge, Opera */
.wpforms-field input[type=number]::-webkit-inner-spin-button,
.wpforms-field input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Ocultar spinner de número en Firefox */
.wpforms-field input[type=number] {
    -moz-appearance: textfield !important;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .wpforms-container {
        padding: 20px !important;
    }
    
    .wpforms-submit {
        width: 100% !important;
    }
}

/* Añadir un borde superior estilizado */
.wpforms-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    z-index: 2;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5fecaa82 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: #f0f2f5; 
        }
        
        .footer-container {
            background-color: #f8f9fa; 
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin-top: 40px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            padding: 40px 20px;
            position: relative;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            padding: 0 20px;
            margin-bottom: 30px;
            position: relative;
        }
        
        .footer-section h3 {
            color: #1e3a8a;
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
            border-radius: 10px;
        }
        
        .footer-links a {
            display: block;
            color: #4b5563;
            text-decoration: none;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links a::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #3b82f6;
        }
        
        .footer-links a:hover {
            color: #2563eb;
            transform: translateX(5px);
        }
        
        .contact-info {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            color: #4b5563;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: #3b82f6;
            font-size: 18px;
            min-width: 20px;
        }
        
        .social-icons {
            display: flex;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: #e5e7eb;
            color: #3b82f6;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: #3b82f6;
            color: white;
            transform: translateY(-3px);
        }
        
        .about-text {
            color: #4b5563;
            line-height: 1.6;
        }
        
        .footer-bottom {
            background-color: #4383e2;
            padding: 20px;
            text-align: center;
            color: #ffffff;
            border-top: 1px solid #e5e7eb;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .logo-section img {
            height: 40px;
            margin-right: 10px;
        }
        
        .certification-badge {
            display: inline-block;
            padding: 5px 10px;
            background-color: #f0fdf4;
            border: 1px solid #d1fae5;
            border-radius: 5px;
            color: #059669;
            font-size: 0.8rem;
            margin-top: 15px;
        }
        
        .certification-badge i {
            margin-right: 5px;
        }
        
        .highlight {
            color: #3b82f6;
            font-weight: 600;
        }
        
        .decoration-element {
            position: absolute;
            z-index: 0;
        }
        
        .decoration-dots {
            top: 20px;
            right: 20px;
            width: 80px;
            height: 80px;
            opacity: 0.1;
        }
        
        .decoration-wave {
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            opacity: 0.1;
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .footer-section {
                flex: 100%;
            }
        }/* End custom CSS */