.elementor-12685 .elementor-element.elementor-element-33b2210{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-12685 .elementor-element.elementor-element-d706880{--display:flex;}.elementor-12685 .elementor-element.elementor-element-1098764{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-18c3f71 *//* General Styles */
form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Layout de 2 columnas */
.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-column {
    width: 48%;
}

input[type="email"],
input[type="text"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus {
    border-color: #64D8D3;
    outline: none;
}

/* Centrar los iconos en horizontal */
.form-footer {
    margin-top: 20px;
}

.form-icons {
    display: flex;
    justify-content: center;  /* Centra los iconos horizontalmente */
    gap: 30px;                /* Espacio entre los iconos */
    margin-bottom: 15px;
}

.form-icons i {
    font-size: 36px;
    color: #5cb85c;
}

.form-icons span {
    font-size: 16px;
    margin-left: 10px;
}

.privacy-policy {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px;
}

.submit {
    width: 100%;
    padding: 12px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.submit:hover {
    background-color: #4cae4c;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-column {
        width: 100%;
    }

    /* Asegurar que los iconos se mantengan en una fila centrada en móviles */
    .form-icons {
        flex-direction: row;
        gap: 20px;
    }
}/* End custom CSS */