/*----------------------------------------*/
/*  COMBOS ESPECIAIS STYLES
/*----------------------------------------*/
.combos-area .combo-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.combos-area .combo-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.combos-area .combo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #003366, #FF9900);
}

.combos-area .combo-content {
    text-align: center;
}

.combos-area .combo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #003366, #FF9900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.combos-area .combo-icon i {
    font-size: 35px;
    color: #fff;
}

.combos-area .combo-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #003366;
    font-weight: 700;
}

.combos-area .combo-box p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.combos-area .combo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.combos-area .combo-features li {
    margin-bottom: 10px;
    color: #555;
}

.combos-area .combo-features li i {
    color: #FF9900;
    margin-right: 10px;
}

.combos-area .primary-btn {
    background: linear-gradient(90deg, #003366, #FF9900);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.combos-area .primary-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
    background: linear-gradient(90deg, #FF9900, #003366);
}

.combos-area .primary-btn i {
    margin-left: 8px;
}

.combos-area .section-title {
    margin-bottom: 50px;
}

.combos-area .section-title .title {
    color: #003366;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
}

.combos-area .section-title p {
    color: #757F95;
    font-size: 16px;
} 