* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary-color: #FF6B35;
    --primary-hover: #E55A2B;
    --secondary-color: #FFB800;
    --dark-bg: #0A0A0A;
    --darker-bg: #050505;
    --card-bg: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #888888;
    --border-color: #333333;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFB800 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    --shadow-primary: 0 10px 40px rgba(255, 107, 53, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4)
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color)
}

.navbar {
    padding: 0.8rem 0
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    height: 40px;
    width: auto
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease
}

.nav-menu a:hover {
    color: var(--primary-color)
}

.btn-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary)
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    height: 100vh;
    width: 100%;
    gap: 2px
}

.movie-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 0.3s ease
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(255, 107, 53, 0.1) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.hero-text {
    max-width: 600px
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    text-transform: uppercase
}

.highlight {
    color: var(--primary-color)
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.feature-icon {
    font-size: 1.2rem
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary)
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px)
}

.video-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    text-align: center
}

.video-section .section-title {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card)
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px
}

@media (max-width: 768px) {
    .video-section .section-title {
        font-size: 2rem
    }
    
    .video-container {
        margin: 0 20px;
        border-radius: 15px
    }
}

.features-section {
    padding: 5rem 0;
    background: var(--darker-bg)
}

.reviews-section {
    padding: 5rem 0;
    background: var(--dark-bg)
}

.reviews-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color)
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic
}

.review-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem
}

.review-author strong {
    color: var(--text-primary);
    font-weight: 600
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.9rem
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem
    }
    
    .reviews-section .section-title {
        font-size: 2rem
    }
    
    .review-card {
        padding: 1.5rem
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* Glossary Styles */
.glossary-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-dark);
    text-align: center;
    margin-top: 80px
}

.glossary-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.glossary-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.glossary-content {
    padding: 4rem 0;
    background: var(--dark-bg)
}

.glossary-navigation {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color)
}

.glossary-navigation h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem
}

.glossary-navigation ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem
}

.glossary-navigation a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease
}

.glossary-navigation a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1)
}

.glossary-category {
    margin-bottom: 4rem
}

.glossary-category h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    position: relative
}

.glossary-category h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color)
}

.glossary-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease
}

.glossary-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color)
}

.glossary-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600
}

.glossary-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.cta-glossary {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color)
}

.btn-test {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px
}

.btn-test:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary)
}

.final-cta-glossary {
    padding: 4rem 0;
    background: var(--gradient-dark);
    text-align: center
}

.final-cta-glossary h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary)
}

.final-cta-glossary p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width: 768px) {
    .glossary-hero h1 {
        font-size: 2.2rem
    }
    
    .glossary-hero p {
        font-size: 1rem
    }
    
    .glossary-navigation ul {
        grid-template-columns: 1fr
    }
    
    .glossary-category h2 {
        font-size: 1.8rem
    }
    
    .glossary-item {
        padding: 1.5rem
    }
    
    .glossary-item h3 {
        font-size: 1.2rem
    }
}

.features-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card)
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary)
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary)
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6
}

.experience-section {
    padding: 6rem 0;
    background: var(--dark-bg)
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.experience-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden
}

.experience-image img {
    width: 100%;
    height: auto;
    display: block
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease
}

.experience-image:hover .play-overlay {
    opacity: 1
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease
}

.play-button:hover {
    transform: scale(1.1)
}

.experience-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem
}

.experience-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6
}

.experience-list {
    list-style: none;
    margin-bottom: 2.5rem
}

.experience-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 1.1rem
}

.best-iptv-section {
    padding: 6rem 0;
    background: var(--darker-bg)
}

.best-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.best-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem
}

.best-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    border: 1px solid var(--border-color)
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Bebas Neue', cursive
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 0.5rem
}

.best-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-card)
}

.movies-section {
    padding: 6rem 0;
    background: var(--dark-bg)
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem
}

.movie-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease
}

.movie-card:hover {
    transform: scale(1.05)
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease
}

.movie-card:hover .movie-overlay {
    opacity: 1
}

.movie-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.movie-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: transform 0.3s ease
}

.movie-btn:hover {
    transform: translateY(-2px)
}

.plans-section {
    padding: 6rem 0;
    background: var(--darker-bg)
}

.plans-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem
}

.plans-benefits {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color)
}

.plans-benefits h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto
}

.benefits-list li {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    color: var(--text-primary);
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.2)
}

.promotional-plans {
    margin-top: 4rem
}

.promotional-plans h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto
}

.plan-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card)
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05)
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase
}

.plan-header h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase
}

.plan-price {
    margin-bottom: 2rem
}

.old-price {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.5rem
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary)
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary)
}

.period {
    font-size: 1rem;
    color: var(--text-secondary)
}

.discount {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase
}

.plan-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary)
}

.faq-section {
    padding: 6rem 0;
    background: var(--dark-bg)
}

.faq-container {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05)
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg)
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.final-cta-section {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(255, 107, 53, 0.2) 100%)
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6
}

.btn-cta-large {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4)
}

.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color)
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem
}

.footer-brand {
    text-align: left
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1rem
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem
}

.footer-column ul {
    list-style: none
}

.footer-column ul li {
    margin-bottom: 0.5rem
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease
}

.footer-column ul li a:hover {
    color: var(--primary-color)
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted)
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6)
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: white
}

.policy-section {
    padding: 8rem 0 4rem;
    background: var(--dark-bg);
    min-height: 100vh
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card)
}

.policy-content h1 {
    color: var(--primary-color);
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center
}

.policy-intro {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color)
}

.policy-content h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem 0;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase
}

.policy-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem
}

.policy-content ul,
.policy-content ol {
    color: var(--text-secondary);
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.6
}

.policy-content li {
    margin-bottom: 0.5rem
}

.policy-content strong {
    color: var(--text-primary)
}

.policy-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color)
}

.policy-footer p {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem
}

/* Tablets - 2 colunas */
@media (max-width: 1024px) and (min-width: 769px) {
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:768px) {
    .mobile-toggle {
        display: flex
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-card)
    }

    .nav-menu.active {
        display: flex
    }

    .nav-menu li {
        margin: 0.5rem 0;
        text-align: center
    }

    .hero-title {
        font-size: 2.5rem
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .experience-content,
    .best-content {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .section-title {
        font-size: 2rem
    }

    .cta-content h2 {
        font-size: 2rem
    }

    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(6, 1fr)
    }

    .plans-grid {
        grid-template-columns: 1fr
    }

    .benefits-list {
        grid-template-columns: 1fr
    }

    .policy-content {
        padding: 2rem 1rem
    }
}

/*
 Ícones criativos personalizados */
.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.tv-icon {
    background: linear-gradient(135deg, #FF6B35, #FFB800);
    position: relative;
}

.tv-icon::before {
    content: "📺";
    font-size: 16px;
}

.movie-icon {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    position: relative;
}

.movie-icon::before {
    content: "🎬";
    font-size: 16px;
}

.quality-icon {
    background: linear-gradient(135deg, #10B981, #3B82F6);
    position: relative;
}

.quality-icon::before {
    content: "💎";
    font-size: 16px;
}

/* Ícones grandes das features */
.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-inner {
    font-size: 2.5rem;
    z-index: 2;
    position: relative;
}

.activation-icon {
    background: linear-gradient(135deg, #FF6B35, #FFB800);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.activation-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
}

.quality-icon-large {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.quality-icon-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
}

.devices-icon {
    background: linear-gradient(135deg, #10B981, #3B82F6);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.devices-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
}

.auto-icon {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.auto-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
}

/* Animações para os ícones */
.feature-icon-large {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon-large {
    transform: translateY(-5px) scale(1.05);
}

.activation-icon:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.quality-icon-large:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.devices-icon:hover {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.auto-icon:hover {
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* Ajuste para mobile - espaçamento do header */
@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 0;
    }

    .hero-section {
        padding-top: 120px;
        min-height: calc(100vh - 60px);
    }

    .hero-content {
        padding: 2rem 20px;
        margin-top: 2rem;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
    }

    .tv-icon::before,
    .movie-icon::before,
    .quality-icon::before {
        font-size: 14px;
    }

    .icon-inner {
        font-size: 2rem;
    }
}