
/*******************************/
/****** Planes Section CSS 014fa6*****/
/*******************************/
.plans-banner-selector {
    padding: 35px 0 10px;
}

.plans-banner-shell {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
    border: 1px solid rgba(1, 79, 166, 0.18);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(1, 79, 166, 0.12);
    padding: 12px;
}

.plans-banner-stage {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 14px;
}

.plans-banner-track {
    display: flex;
    flex-direction: column;
    height: 200%;
    transition: transform 0.7s ease;
}

.plans-banner-card {
    flex: 1 0 50%;
}

.plans-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plans-banner-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 4px;
}

.plans-banner-dot {
    width: 12px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(1, 79, 166, 0.25);
    cursor: pointer;
    transition: all 0.25s ease;
}

.plans-banner-dot.active {
    background: #014fa6;
    box-shadow: 0 0 0 4px rgba(1, 79, 166, 0.14);
}

.plans-banner-dot:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(1, 79, 166, 0.22);
}

.planes-section .plan-detail-row {
    padding: 30px 0;
}

.planes-section .plan-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.planes-section .plan-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.planes-section .plan-image-wrapper:hover img {
    transform: scale(1.05);
}

.planes-section .plan-services-wrapper {
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.planes-section .plan-title {
    color: #014fa6;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.planes-section .plan-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #014fa6;
}

.planes-section .services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.planes-section .services-list .service-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.planes-section .services-list .service-item:last-child {
    border-bottom: none;
}

.planes-section .services-list .service-item i {
    color: #014fa6;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.planes-section .services-list .service-item span {
    color: #555555;
    font-size: 16px;
    line-height: 1.6;
}

.planes-section .plan-cta {
    text-align: center;
    padding-top: 20px;
}

.planes-section .plan-cta .btn {
    padding: 15px 35px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-right {
    animation: slideInRight 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 991px) {
    .plans-banner-stage {
        height: 280px;
    }

    .planes-section .plan-services-wrapper {
        margin-top: 0;
    }
    
    .planes-section .plan-title {
        font-size: 24px;
    }
    
    .planes-section .services-list .service-item span {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .plans-banner-selector {
        padding: 25px 0 5px;
    }

    .plans-banner-shell {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }

    .plans-banner-stage {
        height: 230px;
    }

    .plans-banner-controls {
        flex-direction: row;
        padding-right: 0;
        padding-bottom: 4px;
    }

    .plans-banner-dot {
        width: 36px;
        height: 12px;
    }

    .planes-section .plan-detail-row {
        padding: 20px 0;
    }
    
    .planes-section .plan-services-wrapper {
        padding: 15px;
    }
    
    .planes-section .plan-title {
        font-size: 22px;
    }
    
    .planes-section .services-list .service-item {
        padding: 10px 0;
    }
    
    .planes-section .services-list .service-item i {
        font-size: 18px;
        margin-right: 12px;
    }
    
    .planes-section .services-list .service-item span {
        font-size: 14px;
    }
    
    .planes-section .plan-cta .btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .planes-section .plan-services-wrapper {
        padding: 12px;
    }
    
    .planes-section .services-list .service-item i {
        font-size: 16px;
        margin-right: 10px;
    }
}
