.hero-planos {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -30px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    z-index: 2;
    color: #fff;
    padding: 50px 0;
}

.hero-content .title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #00AEFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 174, 239, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 174, 239, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 174, 239, 0.8),
                     0 0 40px rgba(76, 0, 159, 0.6);
    }
}

.hero-content .subtitle {
    font-size: 1.8rem;
    opacity: 0.9;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Efeito de partículas luminosas */
.hero-planos::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* Responsividade */
@media (max-width: 991px) {
    .hero-content .title {
        font-size: 3.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-content .title {
        font-size: 2.8rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.2rem;
    }
}

/* Seção de Aplicativos */
.apps-section {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.apps-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.apps-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.apps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 40px;
    max-width: 1200px;
}

.app-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 12px 25px;
    min-width: 160px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.app-item span {
    position: relative;
    z-index: 2;
    color: inherit;
}

.app-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}



.app-item.selected span {
    color: #fff;
}

.watch-cta {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-top: 40px;
    letter-spacing: 1px;
}

/* Responsividade */
@media (max-width: 768px) {
    .apps-title {
        font-size: 2rem;
    }
    
    .apps-subtitle {
        font-size: 1rem;
    }
    
    .app-item {
        min-width: 140px;
        padding: 10px 20px;
    }
    
    .watch-cta {
        font-size: 2rem;
    }
}

/* Seção Assine Agora */
.assine-section {
    background: linear-gradient(135deg, #003366 0%, #001a3a 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.assine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.assine-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(242,177,57,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.assine-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, #fff, #f2b139);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animação para o título do plano */
.plano-titulo-animado {
    display: inline-block;
    color: #f2b139;
    font-weight: 800;
    animation: pulsarTitulo 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(242, 177, 57, 0.3);
    background: linear-gradient(45deg, #f2b139, #ffce00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes pulsarTitulo {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.plano-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.05);
}

.plano-info {
    text-align: left;
    flex: 1;
    padding-right: 30px;
}

.plano-label {
    color: #f2b139;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.plano-preco {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.plano-preco small {
    font-size: 1.4rem;
    font-weight: 600;
    opacity: 0.8;
}

.plano-velocidade {
    color: rgba(255,255,255,0.9);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.plano-mega {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(45deg, #f2b139, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(242,177,57,0.3);
}

.watch-logo {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.watch-brand {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.incluso-tag {
    background: linear-gradient(45deg, #f2b139, #ff6a00);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    position: absolute;
    top: -15px;
    right: 30px;
    box-shadow: 0 4px 15px rgba(242,177,57,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-assine {
    background: linear-gradient(45deg, #f2b139, #ff6a00);
    color: #fff;
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(242,177,57,0.3);
    position: relative;
    overflow: hidden;
}

.btn-assine span {
    position: relative;
    z-index: 2;
}

.btn-assine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6a00, #f2b139);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-assine:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242,177,57,0.4);
    color: #fff;
    text-decoration: none;
}

.btn-assine:hover::before {
    opacity: 1;
}

.disclaimer-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

@media (max-width: 991px) {
    .plano-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .plano-info {
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .plano-preco {
        font-size: 3.5rem;
    }
    
    .plano-mega {
        font-size: 3rem;
    }
    
    .watch-logo {
        text-align: center;
    }
    
    .incluso-tag {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 768px) {
    .assine-title {
        font-size: 2.5rem;
    }
    
    .plano-preco {
        font-size: 3rem;
    }
    
    .plano-mega {
        font-size: 2.5rem;
    }
    
    .btn-assine {
        padding: 12px 40px;
        font-size: 1rem;
    }
}

/* Seção Conteúdo Parceiros */
.parceiros-section {
    background-color: #8B0000;
    padding: 60px 0;
    color: #fff;
}

.parceiros-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.content-slider {
    position: relative;
    margin: 0 -15px;
}

.content-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px;
}

.content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.content-info {
    padding: 30px;
    background: #B22222;
    color: #fff;
}

.content-logos {
    margin-bottom: 20px;
}

.content-logos img {
    height: 30px;
    margin-right: 15px;
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.content-description {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-saiba-mais {
    background: #fff;
    color: #B22222;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-arrow {
    background: none;
    border: 2px solid #fff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #fff;
    color: #B22222;
}

.slider-counter {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 20px;
}

@media (max-width: 768px) {
    .plano-card {
        flex-direction: column;
        text-align: center;
    }
    
    .plano-info {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .watch-logo {
        text-align: center;
    }
    
    .content-image {
        height: 200px;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
}

/* Seção de Filmes Relacionados */
.filmes-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.filmes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    pointer-events: none;
}

.filmes-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.filmes-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(45deg, #fff, #f2b139);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 15px rgba(242,177,57,0.3);
}

.filmes-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-top: 15px;
    font-weight: 300;
}

.plataformas-filter {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 15px 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.plataforma-btn {
    background: transparent;
    border: 2px solid transparent;
    padding: 12px 30px;
    border-radius: 15px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.plataforma-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.plataforma-btn:hover::before {
    transform: translateX(0);
}

.plataforma-btn img {
    height: 28px;
    width: auto;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.plataforma-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.plataforma-btn:hover img {
    filter: brightness(1);
    transform: scale(1.1);
}

.plataforma-btn.active {
    background: #f2b139;
    color: #000;
    border-color: #f2b139;
    box-shadow: 0 5px 20px rgba(242,177,57,0.3);
}

.plataforma-btn.active img {
    filter: brightness(1);
}

.filmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.filme-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.filme-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.filme-card:hover::before {
    opacity: 1;
}

.filme-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.filme-thumb-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.filme-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.filme-card:hover .filme-thumb {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    z-index: 2;
}

.play-button i {
    color: #fff;
    font-size: 24px;
}

.filme-card:hover .play-button {
    opacity: 1;
}

.play-button:hover {
    background-color: rgba(255, 215, 0, 0.8);
}

/* Overlay escuro ao passar o mouse */
.filme-thumb-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.filme-card:hover .filme-thumb-container::after {
    opacity: 0.9;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%);
}

.filme-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(100px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.filme-card:hover .filme-info {
    transform: translateY(0);
}

.filme-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.filme-plataforma {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    padding: 8px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.filme-card:hover .filme-plataforma {
    transform: translateY(0);
    opacity: 1;
}

.filme-plataforma img {
    height: 24px;
    width: auto;
}

.hide {
    display: none;
}

@media (max-width: 991px) {
    .filmes-header {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .plataformas-filter {
        justify-content: center;
        width: 100%;
        padding: 10px;
    }

    .filmes-title {
        font-size: 2.3rem;
    }

    .plataforma-btn {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .filmes-section {
        padding: 60px 0;
    }

    .filmes-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .filme-thumb {
        height: 300px;
    }

    .filme-title {
        font-size: 1.2rem;
    }
}

/* Seção Manual de Instalação */
.manual-instalacao-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.manual-instalacao-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 174, 239, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.manual-instalacao-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #333, #00AEFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manual-instalacao-subtitle {
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.streaming-apps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

.streaming-app-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 25px 30px;
    min-width: 200px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.streaming-app-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.1), transparent);
    transition: left 0.5s ease;
}

.streaming-app-btn:hover::before {
    left: 100%;
}

.streaming-app-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.2);
    border-color: #00AEFF;
    color: #00AEFF;
}

.streaming-app-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.streaming-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.streaming-app-btn:hover .streaming-app-icon img {
    transform: scale(1.1);
}

.streaming-app-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: inherit;
    text-align: center;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.streaming-app-disabled {
    opacity: 0.6;
    cursor: default;
}

.streaming-app-disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #e0e0e0;
    color: #333;
}

.streaming-app-disabled .streaming-app-icon img {
    filter: grayscale(20%);
}

.streaming-app-disabled:hover .streaming-app-icon img {
    transform: none;
}

.no-streaming-apps {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-top: 30px;
}

/* Responsividade da Seção Manual de Instalação */
@media (max-width: 991px) {
    .manual-instalacao-title {
        font-size: 2.5rem;
    }
    
    .manual-instalacao-subtitle {
        font-size: 1.1rem;
    }
    
    .streaming-apps-grid {
        gap: 20px;
    }
    
    .streaming-app-btn {
        min-width: 180px;
        padding: 20px 25px;
    }
}

@media (max-width: 768px) {
    .manual-instalacao-section {
        padding: 60px 0;
    }
    
    .manual-instalacao-title {
        font-size: 2rem;
    }
    
    .manual-instalacao-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .streaming-apps-grid {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .streaming-app-btn {
        min-width: 250px;
        padding: 20px;
    }
    
    .streaming-app-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .streaming-app-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .streaming-app-btn {
        min-width: 200px;
        padding: 15px;
    }
    
    .streaming-app-icon {
        width: 50px;
        height: 50px;
    }
}

/* Seção Canais de Venda */
.canais-venda-section {
    background: linear-gradient(135deg, #003366 0%, #002347 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.canais-venda-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,51,102,0.2) 0%, rgba(242,177,57,0.1) 100%);
    pointer-events: none;
}

.canais-venda-title {
    font-size: 3.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.canais-venda-title span {
    display: block;
    font-size: 0.8em;
    color: #f2b139;
    margin-bottom: 10px;
}

.canais-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.canal-item {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.canal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #003366, #f2b139);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.canal-item:hover::before {
    transform: scaleX(1);
}

.canal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.canal-icon {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.canal-item:hover .canal-icon {
    transform: scale(1.1);
    color: #f2b139;
}

.canal-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
    .canais-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .canais-venda-section {
        padding: 60px 0;
    }

    .canais-venda-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .canais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .canal-icon {
        font-size: 2rem;
    }

    .canal-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .canais-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .canais-venda-title {
        font-size: 2rem;
    }
}

/* Botão ASSINE AGORA na seção de apps */
.btn-assine-destaque {
    display: inline-block;
    background: linear-gradient(45deg, #003366, #f2b139);
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    margin-top: 20px;
}

.btn-assine-destaque span {
    position: relative;
    z-index: 2;
}

.btn-assine-destaque::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f2b139, #003366);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-assine-destaque:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
    color: #fff;
}

.btn-assine-destaque:hover::before {
    opacity: 1;
}

.btn-assine-destaque:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 51, 102, 0.2);
}
