.planos-slider {
    padding: 15px 5px 30px;
    margin: 0 -15px;
}

.plano-card {
    padding: 15px;
}

.pricing-three-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f2f2f2;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-three-item:hover {
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.pricing-three-head {
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.pricing-three-head .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #003366;
}

.pricing-three-head .devices-support {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 51, 102, 0.1);
    color: #003366;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
}

.pricing-three-list {
    margin-bottom: 25px;
    text-align: center;
}

.pricing-three-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-three-list ul li {
    padding: 0px 0;
    color: #555;
    font-size: 13px;
}

.pricing-three-list ul li i {
    color: #00a651;
    margin-right: 10px;
}

.pricing-three-price {
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    text-align: center;
    margin-bottom: 25px;
}

.pricing-three-price span:first-child {
    font-size: 24px;
    vertical-align: top;
    margin-right: 5px;
}

.pricing-three-price span:last-child {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.pricing-three-item .btn {
    border: 2px solid #003366;
    background: transparent;
    color: #003366;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.pricing-three-item .btn:hover {
    background: #003366;
    color: #fff;
}

/* Estilização dos controles do carrossel */
.owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    background: #ccc !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #003366 !important;
    width: 25px;
    border-radius: 10px;
}

.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -15px;
}

.owl-prev, .owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #003366 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    position: absolute;
    transition: all 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
    background: #003366 !important;
    color: #fff !important;
}

.owl-prev {
    left: -25px;
}

.owl-next {
    right: -25px;
}

/* Responsividade */
@media (max-width: 768px) {
    .pricing-three-item {
        padding: 20px 15px;
    }
    
    .pricing-three-head .title {
        font-size: 20px;
    }
    
    .pricing-three-price {
        font-size: 28px;
    }
    
    .owl-prev, .owl-next {
        width: 40px;
        height: 40px;
    }
} 