.icon {
    width: 80px;
    /* Ajusta el tamaño según lo que necesites */
    height: 80px;
    /* Ajusta el tamaño según lo que necesites */
    background-color: #fff;
    /* Color del fondo (círculo) */
    border-radius: 50%;
    /* Hace que el fondo sea un círculo */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.logo-img {
    width: 60%;
    /* Ajusta el tamaño del logo dentro del círculo */
    height: auto;
}

ul.seminarios-items li {
    margin: 10px 0;
}

.service-style-one-item.button a {
    font-size: 80px;
}



/* ------ */

.curve-text svg text {
    letter-spacing: 11px;
}

.btn-flotante {
    padding: 18px 30px;
    position: fixed;
    bottom: 70px;
    right: 0px;
    transition: all 300ms ease 0ms;
    /* box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); */
    z-index: 99;
}

.btn-flotante:hover {
    transform: translateY(-7px);
}

@media only screen and (max-width: 600px) {
    .btn-flotante {
        font-size: 14px;
        padding: 12px 20px;
        bottom: 20px;
        right: 20px;
    }
}

.d-none-btn-contact {
    display: block !important;
}

@media only screen and (max-width: 1200px) {

    /* .banner-style-one-area .content {
	margin-bottom: 10px;
} */
    .d-none-btn-contact {
        display: none !important;
    }

    .home-padding-custom {
        padding: 150px 0 10px 0 !important;
    }

    .imagen-custom {
        align-self: center;
    }

    .content span {
        font-size: 26px !important;
    }

    .bg-dark .about-item {
        padding: 50px 40px !important;
    }

}

@media only screen and (max-width: 767px) {
    .default-padding {
        padding-top: 60px;
        padding-bottom: 10px;
    }

    .home-padding-custom {
        padding: 50px 0 10px 0 !important;
    }
}

.service-style-one-item.button a {
    font-size: 68px;
}

.services-button-prev:hover,
.services-button-next:hover {
    background-color: #4A90E2;
    color: #fff;
}

@media only screen and (min-width: 1200px) and (max-width: 1350px) {
    .navbar.validnavs.navbar-default .navbar-nav li a {
        padding: 6px 15px !important;
        font-size: 14px;
    }
}

li a.btn-custom {
    background: linear-gradient(-120deg, #4A90E2 20%, #1F2933 100%) !important;
    padding: 6px 15px !important;
    color: #fff !important;
}

li a.btn-custom:hover {
    background-color: #fff !important;
    color: #202942 !important;
}

.btn-fixed-up{
    background: linear-gradient(-120deg, #4A90E2 20%, #1F2933 100%) !important;
    color: #fff !important;
    padding: 10px 15px !important;
    border-radius: 50% !important;
}

.bg-dark ul.service-list li::after {
    border: none;
}

.alert-success {
    background-color: transparent !important;
    border-color: none !important;
}

/* Estilos optimizados para el preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-preloader {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.txt-loading {
    font-weight: 700;
    text-align: center;
    user-select: none;
}


.letters-loading:nth-child(2) { animation-delay: 0.1s; }
.letters-loading:nth-child(3) { animation-delay: 0.2s; }
.letters-loading:nth-child(4) { animation-delay: 0.3s; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}