@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* RESET */
.ccp-reset,
.ccp-reset * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ccp-reset ul {
    list-style: none;
}

/* CARD */
.combo-card {
    border-radius: 26px;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* HEADER */
.combo-header {
    background: linear-gradient(90deg, #0f3c54, #054e7a);
    text-align: center;
    padding: 5px;
    color: #fff;
    font-size: 33px;
    line-height: 1.2;
}

.combo-header__light {
    font-weight: 300;
}

.combo-header__bold {
    font-weight: 700;
}

/* BODY */
.combo-body {
    background: #f2f2f2;
    padding: 20px 30px;
}


/* HERO */
.combo-hero {
    text-align: center;
    margin-bottom: 10px;
}

.combo-speed {
    font-size: 140px;
    font-weight: 800;
    color: #0f2f44;
    line-height: 120px;
    letter-spacing: -10px;
}
.combo-badge {
    display: inline-block;
    background: #ff6c00;
    color: #fff;
    padding: 0px 15px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 35px;
    margin-top: -50px;
    position: relative;
    z-index: 5;
    line-height: 40px;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: #dcdcdc;
    margin: 30px 0;
}

/* FEATURES */
/* Ajustes para comportar o Subtítulo nas Features */
.combo-features li {
    align-items: center; /* Mantém o ícone centralizado com o bloco de texto */
}

.feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-title {
    font-size: 23px;
    letter-spacing: -1px;
    color: #0f2f44;
    line-height: 1.1;
}

.feature-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: #4a5568; /* Uma cor um pouco mais suave para o sub-texto */
    margin-top: 2px;
}
/* Configuração da lista principal */
.combo-features {
    display: flex;
    flex-direction: column;
    width: 100% !important; /* Volta a ocupar 100% do espaço para permitir a centralização interna */
    padding: 0 !important;
    margin: 0;
    list-style: none !important;
}

.combo-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
    font-size: 23px;
    letter-spacing: -1px;
    color: #0f2f44;
}
/* CHECK */
.check {
    width: 22px;
    height: 22px;
    border: 2px solid #ff6c00;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check::after {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 2px solid #ff6c00;
    border-bottom: 2px solid #ff6c00;
    transform: rotate(-45deg);
}

/* APPS */
.combo-apps {
    background: #004b6a;
    padding: 0;
    text-align: center;
    padding-bottom: 35px;
}

/* PILL */
.apps-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #0f3c54, #054e7a);
    color: #fff;
    padding: 8px 20px;
    border-radius: 40px;
    margin-top: -20px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
}

/* GRID */
.apps-grid {
    display: block;
    padding: 0;
    text-align: center;
}

.app {
    width: 360px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
}

.app img {
    width: 100%;
    height: auto;
    display: block;
}
.icon-streaming{
    margin: 0 10px;
}
/* CTA */
.combo-cta {
    margin: auto 0;
    padding-bottom: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    margin-top: -30px;
}
.combo-cta:hover {
    color: #fff;
}
.cta-btn {
    display: inline-block;
    background: #ff6c00;
    color: #fff;
    padding: 0px 35px;
    border-radius: 50px;
    font-size: 31px;
    font-weight: 500;
    box-shadow: 0px 0px 20px rgba(255, 120, 0, 0.8) !important;
}

.cta-btn:hover {
    color: #fff;
    box-shadow: 0px 2px 40px rgba(255, 120, 0, 0.8) !important;
}

/* RESPONSIVO */
@media (max-width: 480px) {

    .combo-speed {
        font-size: 90px;
        letter-spacing: -5px;
    }

    .combo-features li {
        font-size: 18px;
    }

    .app {
        width: 100%;
    }

    .cta-btn {
        font-size: 18px;
        padding: 14px 35px;
    }
}