/* ---------------- botones -------------------- */

.btn-norm .elementor-button-link.elementor-button,
.btn-enviar input {
    border: solid 3px var(--main-txt-color);
    border-radius: 0px;
    background-color: #fff;
    color: var(--main-txt-color);
    transition: all 0.4s ease;
    text-transform: uppercase;
    padding: 20px 30px;
    font-weight: 500;
    box-shadow: inset 0 0 0 0 var(--loscos-c-greyblue);
    transition: all 0.4s ease;
}

.btn-inv .elementor-button-link.elementor-button {
    border: solid 2px #FFF !important;
    border-radius: 0px;
    background-color: transparent;
    color:  #FFF !important;
    transition: all 0.4s ease;
    text-transform: uppercase;
    padding: 20px 30px;
    font-weight: 500;
    box-shadow: inset 0 0 0 0 var(--loscos-c-greyblue);
    transition: all 0.4s ease;
}

.btn-enviar input {
    padding: 15px 70px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.btn-norm .elementor-button-link.elementor-button:hover,
.btn-norm .elementor-button-link.elementor-button:focus,
.btn-inv .elementor-button-link.elementor-button:hover,
.btn-inv .elementor-button-link.elementor-button:focus,
.btn-enviar input:hover {
    background-color: var(--main-txt-color);
    color: #fff;
    border-radius: 50px;
    transition: all 0.4s ease;
    transform: translateY(-3px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.btn-norm.btn-light .elementor-button-link.elementor-button:hover,
.btn-norm.btn-light .elementor-button-link.elementor-button:focus,
.btn-enviar.btn-light input:hover {
    background-color: var(--loscos-c-greyblue);
    border: solid 3px #fff;
}

.btn-cita .elementor-button-link.elementor-button {
    min-width: 300px;
    min-height: 50px;
    text-transform: uppercase;
    color: var(--main-txt-color);
    background: #fff;
    border: none;
    border: 3px solid var(--main-txt-color);
    /* border-radius: 1000px; */
    transition: all 0.4s ease;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 20px 30px;
    font-weight: 500;
}

.btn-cita .elementor-button-link.elementor-button::before {
    content: "";
    /* border-radius: 1000px; */
    /* min-width: calc(300px + 12px);
    min-height: calc(50px + 12px); */
    min-width: 300px;
    min-height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    font-weight: 500;
}

.btn-cita .elementor-button-link.elementor-button:hover,
.btn-cita .elementor-button-link.elementor-button:focus {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.15);
    border-radius: 1000px;
    transition: all 0.4s ease 0s;
    background-color: var(--main-txt-color);
}

.btn-cita .elementor-button-link.elementor-button:hover::before,
.btn-cita .elementor-button-link.elementor-button:focus::before {
    opacity: 1;
    border-radius: 1000px;
    transition: all 0.4s ease;
}

.btn-cita .elementor-button-link.elementor-button::after {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 3px solid var(--main-txt-color);
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

.btn-cita .elementor-button-link.elementor-button:hover::after,
.btn-cita .elementor-button-link.elementor-button:focus::after {
    animation: none;
    display: none;
}

@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}

@media (max-width: 425px) {
    .btn-cita .elementor-button-link.elementor-button,
    .btn-cita .elementor-button-link.elementor-button::before {
        min-width: 200px;
        padding: 20px 20px;
    }
}