/**
 * Estilos personalizados para Fusion Streaming
 */

/* Variáveis de cores */
:root {
    --primary-color: #7c4dff;
    --primary-dark: #5e35b1;
    --primary-light: #b388ff;
    --secondary-color: #ff4081;
    --dark-color: #212121;
    --light-color: #f5f5f5;
    --gray-color: #757575;
    --success-color: #00c853;
    --warning-color: #ffd600;
    --danger-color: #ff1744;
    --body-bg: #121212;
    --card-bg: #1e1e1e;
    --gold-color: #FFD700;
    --bg-gradient: linear-gradient(135deg, #121212 0%, #1e1e2d 100%);
    --color-highlight: #b388ff;
}

/* Estilos globais */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--body-bg);
    color: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    color: var(--primary-light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.5s, height 0.5s, opacity 0.5s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: 0s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.btn-primary.animate-on-hover:hover {
    animation: pulse 0.6s ease-in-out;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-success.animate-on-hover:hover {
    animation: pulse 0.6s ease-in-out;
}

.btn-danger.animate-on-hover:hover {
    animation: shake 0.5s ease-in-out;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Header e Navbar */
.header {
    background-color: rgba(0, 0, 0, 0); /* Totalmente transparente */
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(124, 77, 255, 0.05);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.header.scrolled {
    background-color: rgba(13, 10, 23, 0.95); /* Escuro quando rolar */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(124, 77, 255, 0.2);
    padding: 5px 0;
}

.header-spacer {
    height: 85px; /* Aumentado para dar mais espaço entre o header e o conteúdo */
}

.logo {
    transition: all 0.3s ease;
}

.header.scrolled .logo {
    transform: scale(0.9);
}

.btn-teste {
    background: linear-gradient(135deg, #ff4081 0%, #ff7e5f 100%);
    color: #fff;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.btn-teste:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.6s ease;
    z-index: -1;
}

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

.btn-teste:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 77, 255, 0.5);
    color: #fff;
}

/* Dropdown menu estilizado */
.dropdown-menu-dark {
    background-color: rgba(40, 30, 65, 0.95);
    border: 1px solid rgba(124, 77, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(124, 77, 255, 0.2);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2a2139 0%, #3a3157 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%237c4dff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    text-shadow: 0 0 15px rgba(124, 77, 255, 0.4);
    letter-spacing: 1px;
}

.hero h2 {
    text-shadow: 0 0 10px rgba(124, 77, 255, 0.3);
    letter-spacing: 0.5px;
}

.hero .lead {
    font-weight: 400;
    letter-spacing: 0.5px;
}

.pulse-btn {
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(124, 77, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 767.98px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(124, 77, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(124, 77, 255, 0.5);
}

.feature-icon i {
    color: #fff;
    font-size: 16px;
}

.feature-text {
    flex-grow: 1;
}

.feature-text h3 {
    margin: 0;
    font-weight: 600;
    color: #fff;
}

.feature-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* TV Animation */
.tv-container {
    max-width: 380px;
    margin: 0 auto;
    position: relative;
}

.tv-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(124, 77, 255, 0.3);
    margin-bottom: 15px;
}

.tv-screen {
    width: 100%;
    height: 100%;
    background-color: #121212;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.tv-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-stand {
    width: 120px;
    height: 20px;
    background-color: #111;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
}

.channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    width: 90%;
    height: 90%;
}

.channel-item {
    background-color: var(--primary-color);
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.channel-item:hover {
    transform: scale(1.05);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(124, 77, 255, 0.3) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

.hero h1 {
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats {
    background-color: #1a1a1a;
    background-image: linear-gradient(135deg, rgba(124, 77, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 60px 0;
    position: relative;
}

.stats-item {
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

/* Ajuste para espaçamento em dispositivos móveis */
@media (max-width: 767.98px) {
    .stats-item {
        margin-bottom: 30px;
        padding: 25px 15px;
    }
}

.stats-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stats-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.4);
}

.stats-icon i {
    font-size: 36px;
    color: #fff;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vantagens */
.vantagens {
    background-color: var(--body-bg);
    padding: 80px 0;
}

.vantagem-card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.vantagem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Planos */
.planos {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.plano-card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.plano-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(124, 77, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.plano-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(124, 77, 255, 0.6);
}

/* Ribbon para o plano mais popular */
.ribbon-wrapper {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -10px;
    right: -10px;
    overflow: hidden;
    z-index: 10;
}

.ribbon {
    width: 200px;
    padding: 10px 0;
    background: linear-gradient(135deg, #ff4081, #ff7e5f); 
    position: absolute;
    top: 30px;
    right: -50px;
    text-align: center;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Highlight para itens importantes */
.text-highlight-item {
    color: #ff4081;
    font-weight: 600;
}

.plan-features li {
    padding: 8px 0;
}

.plan-features li strong {
    font-weight: 600;
    color: #fff;
}

.plano-card .card-header {
    padding: 15px;
    font-weight: bold;
}

.price {
    padding: 20px 0;
    position: relative;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    position: relative;
    top: 10px;
}

.price .amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Teste Grátis */
.teste-gratis {
    background-color: var(--body-bg);
    padding: 80px 0;
}

.teste-gratis .card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.teste-gratis .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 12px 16px;
    position: relative;
    overflow: hidden;
}

.teste-gratis .form-control:hover:not(:focus) {
    border-color: rgba(124, 77, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.12);
}

.teste-gratis .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(124, 77, 255, 0.35);
    transform: translateY(-2px);
}

.teste-gratis .form-control::placeholder {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.teste-gratis .form-control:focus::placeholder {
    opacity: 0.4;
    transform: translateX(5px);
}

.teste-gratis .form-control.animate-shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
    border-color: var(--danger-color);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.25);
}

.teste-gratis .form-control:valid:not(:placeholder-shown) {
    border-color: var(--success-color);
    background-color: rgba(0, 200, 83, 0.05);
}

.teste-gratis .form-control:invalid:not(:placeholder-shown):not(:focus) {
    border-color: var(--danger-color);
    background-color: rgba(255, 23, 68, 0.05);
}

.teste-gratis .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.teste-gratis .form-group label {
    transition: all 0.3s ease;
}

.teste-gratis .form-group.focus label {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.teste-gratis .form-label {
    color: rgba(255, 255, 255, 0.9);
}

.teste-gratis .form-check-label {
    color: rgba(255, 255, 255, 0.9);
}

.teste-gratis .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.teste-gratis .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* PPV Section */
.ppv-section {
    background-color: var(--body-bg);
    padding: 80px 0;
    position: relative;
}

.ppv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237c4dff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.ppv-section .container {
    position: relative;
    z-index: 1;
}

.ppv-content {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.ppv-features {
    margin-top: 30px;
}

.ppv-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.ppv-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

.ppv-feature-item span {
    color: #fff;
    font-size: 1.1rem;
}

.jogos-do-dia-container {
    max-width: 80%;
    margin: 0 auto;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(124, 77, 255, 0.2);
    border: 1px solid rgba(124, 77, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.jogos-do-dia-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.jogos-do-dia-container:hover .jogos-do-dia-img {
    transform: scale(1.02);
}

@media (max-width: 767.98px) {
    .jogos-do-dia-container {
        max-width: 100%;
    }
}

.match-schedule {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(124, 77, 255, 0.2);
    border: 1px solid rgba(124, 77, 255, 0.3);
}

.match-day h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.match-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.match-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.match-time {
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 600;
    background-color: rgba(124, 77, 255, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}

.team-logo {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 0.8rem;
}

.team-name {
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
}

.match-vs {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.match-channel {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* App Section */
.app-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: #fff;
}

.app-section {
    background-color: var(--body-bg);
    position: relative;
    padding: 80px 0;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237c4dff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.app-section .container {
    position: relative;
    z-index: 1;
}

.text-highlight {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
    padding-left: 15px;
}

.text-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    border-radius: 5px;
}

.app-text {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-device-frame {
    position: relative;
    margin: 0 auto;
    max-width: 300px;
    border-radius: 25px;
    border: 10px solid #333;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.app-device-frame:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.7);
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.app-device-frame:hover .app-screenshot {
    transform: scale(1.02);
}

.app-device-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 20%,
        rgba(0, 0, 0, 0) 80%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
}

.app-badge {
    display: inline-block;
    transition: all 0.3s ease;
}

.app-badge:hover {
    transform: translateY(-5px);
}

.app-features {
    margin-top: 30px;
}

.app-feature-item {
    display: flex;
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.app-feature-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.app-feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.app-feature-item .feature-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.app-feature-item .feature-content {
    flex: 1;
}

.app-feature-item .feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.app-feature-item .feature-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.download-cta {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(124, 77, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(124, 77, 255, 0.2);
}

.download-cta .btn {
    padding: 10px 25px;
    font-size: 1.1rem;
}

/* FAQ */
.faq {
    background-color: #121212;
    padding: 80px 0;
}

.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.accordion-button {
    background-color: var(--card-bg);
    color: #fff;
    box-shadow: none;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
}

/* Footer */
.footer {
    background-color: #121212;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.footer .social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
    }
    
    .plano-card.popular {
        transform: scale(1);
    }
    
    .plano-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .price .amount {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .footer {
        text-align: center;
    }
}

/* Notificações flutuantes */
.floating-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 300px;
}

.floating-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-notification.notification-success {
    background-color: var(--success-color);
}

.floating-notification.notification-error {
    background-color: var(--danger-color);
}

.floating-notification.notification-warning {
    background-color: var(--warning-color);
}

.floating-notification.notification-info {
    background-color: var(--primary-color);
}

.floating-notification i {
    margin-right: 8px;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes slideUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(124, 77, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(124, 77, 255, 0.8); }
    100% { box-shadow: 0 0 5px rgba(124, 77, 255, 0.5); }
}

/* Classes de animação */
.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-pulse {
    animation: pulse 0.6s ease-in-out;
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out forwards;
}

.animate-rotate {
    animation: rotate 0.5s linear;
}

.animate-bounce {
    animation: bounce 0.8s ease;
}

.animate-glow {
    animation: glow 1.5s infinite;
}

/* Estilos para resposta da API */
.api-response {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    animation: fadeIn 0.5s ease-out forwards;
}

.api-response.success {
    background-color: rgba(0, 200, 83, 0.15);
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.api-response.error {
    background-color: rgba(255, 23, 68, 0.15);
    border: 1px solid rgba(255, 23, 68, 0.3);
}

.api-response .response-title {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.5rem;
    color: #fff;
}

.api-response .response-details {
    margin-bottom: 15px;
}

.api-response .response-details p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.api-response .section {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.api-response .section-title {
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.link-m3u, .link-hls, .link-ssiptv {
    word-break: break-all;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.link-m3u {
    background-color: rgba(0, 200, 83, 0.1);
}

.link-hls {
    background-color: rgba(255, 214, 0, 0.1);
}

.link-ssiptv {
    background-color: rgba(255, 23, 68, 0.1);
}

/* Botões de ação */
.action-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.action-buttons:hover {
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.action-buttons .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform-origin: center;
    margin: 0 5px;
}

.action-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.action-buttons .btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.action-buttons .btn-primary:hover {
    background-color: var(--primary-light);
}

.action-buttons .btn-success:hover {
    background-color: #00e676;
}

.action-buttons .btn-danger:hover {
    background-color: #ff4081;
}

/* Efeito de onda ao clicar nos botões */
.action-buttons .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.action-buttons .btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Ajuste para dispositivos móveis */
@media (max-width: 576px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .action-buttons .copy-button {
        margin-right: 0 !important;
    }
}

.copy-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.copy-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.6s ease;
    z-index: 1;
}

.copy-button:hover:before {
    left: 100%;
}

.copy-button.copied {
    background-color: var(--success-color);
    border-color: var(--success-color);
    animation: success-pulse 1s ease-in-out;
}

.copy-button.copied:after {
    content: " ✓";
    opacity: 1;
    transition: opacity 0.3s ease;
}

@keyframes success-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 200, 83, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

/* Admin Panel Styles */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2139 0%, #3a3157 100%);
}

.admin-login .card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.admin-dashboard {
    background-color: var(--body-bg);
    min-height: 100vh;
}

.admin-sidebar {
    background-color: var(--card-bg);
    min-height: 100vh;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.admin-main {
    padding: 20px;
}

.admin-card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.stats-card {
    background-color: var(--card-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.admin-table {
    color: #fff;
}

.admin-table thead th {
    background-color: rgba(124, 77, 255, 0.2);
    color: #fff;
    border-bottom: none;
}

.admin-table tbody tr {
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.admin-table tbody tr:hover {
    background-color: rgba(124, 77, 255, 0.1);
}

.admin-table tbody td {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-test-type {
    padding: 6px 10px;
    border-radius: 20px;
}

.badge-test-type.adult {
    background-color: var(--danger-color);
    color: #fff;
}

.badge-test-type.no-adult {
    background-color: var(--success-color);
    color: #fff;
}
