.service-card {
    position: relative;
    padding: 0;
}

.circle-outer {
    position: relative;
    padding-top: 100%;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.circle-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem !important;
    overflow: auto;
}

.service-title {
    font-size: 1.25rem;  /* Tamaño consistente para todos los títulos */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #333;
}

.circle-inner::-webkit-scrollbar {
    display: none;
}

.circle-inner p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-primary {
    background-color: #63A7EB;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: #5590c7;
}

@media (max-width: 992px) {
    .circle-outer {
        padding-top: 90%;
    }

    .circle-inner {
        padding: 1.5rem !important;
    }

    .service-title {
        font-size: 1.1rem; /* Ligeramente más pequeño en móvil */
    }
}

.fluid-container {
    overflow: hidden;
    width: 100%;
}

.resource-section {
    position: relative;
    margin: 3rem 0;
}

.content-wrapper {
    position: relative;
    z-index: 0;
    padding: 3rem 0;
    overflow: hidden;
    margin: 2rem 0;
}

.bg-light-blue {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.bg-light-green {
    background: linear-gradient(135deg, #f1f8e9, #dcedc8);
}

.bg-light-yellow {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
}

.content-image {
    height: 400px;
    width: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.content-text {
    padding: 2rem;
}

.content-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.content-text h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--btn-color, #000);
    border-radius: 3px;
}

.buttons-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-fluid {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--btn-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-fluid:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: white;
}

.btn-fluid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
}

.btn-fluid:hover::before {
    transform: translateX(100%);
    transition: transform 0.6s ease;
}

@media (max-width: 991px) {
    .content-image {
        height: 300px;
        width: 100%;
        margin: 1rem 0;
        transform: none;
    }

    .content-text {
        text-align: center;
        padding: 1rem;
    }

    .content-text h3:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .buttons-group {
        justify-content: center;
    }

    .tab-buttons {
        padding: 0 1rem;
    }

    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

section.section {
    background: #a7cdeb;
}

.custom-bg-color-1 {
    background-color: #a7cceb !important;
}

.tabs-navigation {
    margin-bottom: 2rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    color: #666;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #63A7EB;
    transition: width 0.3s ease;
}

.tab-btn:hover::after {
    width: 80%;
}

.tab-btn.active {
    color: #63A7EB;
    font-weight: 600;
}

.tab-btn.active::after {
    width: 80%;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.section.section-with-shape-divider .shape-divider svg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    height: unset;
    transform: translate3d(-50%, 0, 0);
}

/* Estilo por defecto para pantallas pequeñas */
.shape-divider-initial {
    height: 190px; !important;
}

/* Media query para pantallas de laptop */
@media (min-width: 1024px) and (max-width: 1280px) {
    .shape-divider-initial {
        height: 190px !important; /* Asegúrate de que !important esté después del valor */
    }
}

/* Media query para pantallas extra grandes (XL) */
@media (min-width: 1281px) {
    .shape-divider-initial {
        height: 250px !important;
    }
}

/* Estilo por defecto para pantallas pequeñas */
.shape-divider-transformation {
    height: 160px; !important;
}

/* Media query para pantallas de laptop */
@media (min-width: 1024px) and (max-width: 1280px) {
    .shape-divider-transformation {
        height: 160px !important; /* Asegúrate de que !important esté después del valor */
    }
}

/* Media query para pantallas extra grandes (XL) */
@media (min-width: 1281px) {
    .shape-divider-transformation {
        height: 260px !important;
    }
}

.video-js {
    width: 100%;
}
