@media (width < 1000px){
    .custom-button-dark{
        font-size: 18px !important;
        width: 100% !important;
    }
}
.custom-button-dark span{
    display: flex !important;
    justify-content: space-between !important;
}
.custom-button-dark {
    position: relative;
    background-color: #2B384D;
    color: #fff;
    font-weight: 400;
    font-size: 23px;
    border-radius: 25px;
    border: none;
    overflow: hidden;
    transition: color 0.4s ease;
}
.custom-button-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #fff;
    border-radius: inherit;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 0;
}
.custom-button-dark:hover::before {
    transform: scale(1.5); /* un poco más grande para cubrir bien */
    opacity: 1;
}
  
.custom-button-dark:hover {
    color: #2B384D;
}
  
/* Asegúrate de que el contenido esté encima del ::before */
.custom-button-dark > * {
    position: relative;
    z-index: 1;
}

.custom-button-dark .content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}