* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0f0f0f;
    color: #fff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(229, 9, 20, 0.3);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.navbar-brand {
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: baseline;
    gap: 3px;
    white-space: nowrap;
}

.logo-text {
    color: #e50914;
}

.logo-sub {
    color: #fff;
    font-size: 11px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: #e50914;
}

.btn-contact {
    background: #e50914;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-contact:hover {
    background: #c40812;
}

.btn-contact.shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s infinite;
}

/* Hero */
.hero {
    height: 400px;
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 60px;
    margin-top: 50px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    color: #b3b3b3;
    margin-bottom: 20px;
}

.streaming-logos {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.streaming-logo {
    max-width: 50px;
    max-height: 30px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.streaming-logo:hover {
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #e50914;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.btn-primary:hover {
    background: #c40812;
    transform: scale(1.05);
}

.btn-primary.shine {
    overflow: hidden;
}

.btn-primary.shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 28px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Sections */
.section {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section.dark {
    background: #1a1a1a;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
}

/* Carousel */
.carousel-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
}

.carousel {
    display: flex;
    gap: 10px;
    padding: 20px 0;
}

.carousel::-webkit-scrollbar {
    height: 8px;
}

.carousel::-webkit-scrollbar-track {
    background: #333;
}

.carousel::-webkit-scrollbar-thumb {
    background: #e50914;
    border-radius: 4px;
}

.carousel-item {
    flex: 0 0 200px;
    height: 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel-item:hover .item-overlay {
    opacity: 1;
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    transform: translateY(50px);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.carousel-item:hover .item-info {
    transform: translateY(0);
}

.btn-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e50914;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-play:hover {
    background: #c40812;
    transform: scale(1.1);
}

/* Muito Mais Carousel */
.more-carousel {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e50914;
    border-radius: 8px;
}

.more-carousel-content {
    text-align: center;
}

.more-carousel-content .more-icon {
    font-size: 48px;
    color: #e50914;
    display: block;
    margin-bottom: 10px;
}

.more-carousel-content p {
    color: #fff;
    font-weight: 600;
}

/* Grid Content */
.grid-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.content-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    height: 300px;
}

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

.content-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    transform: translateY(50px);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

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

.card-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.btn-watch {
    background: #e50914;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 12px;
}

.btn-watch:hover {
    background: #c40812;
    transform: scale(1.05);
}

.btn-watch.btn-assistir {
    background: #00d4ff;
}

.btn-watch.btn-assistir:hover {
    background: #00b8d4;
}

.content-card.more {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e50914;
}

.more-content {
    text-align: center;
}

.more-icon {
    font-size: 48px;
    color: #e50914;
    display: block;
    margin-bottom: 10px;
}

/* Channels Grid */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.channel-box {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.channel-box:hover {
    background: #2a2a2a;
    transform: translateY(-5px);
}

.channel-logo-img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.channel-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.channel-box h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.channel-box p {
    color: #b3b3b3;
    font-size: 12px;
}

.channel-box.more {
    background: linear-gradient(135deg, #e50914, #c40812);
    border: none;
}

/* Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(229, 9, 20, 0.3);
}

.plan-card.featured {
    border: 2px solid #e50914;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e50914;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.plan-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.plan-prices {
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.price-item span {
    color: #b3b3b3;
}

.price-item strong {
    color: #e50914;
    font-size: 18px;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #e50914, #c40812);
    padding: 80px 60px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

/* Footer */
.footer {
    background: #000;
    padding: 30px 60px;
    text-align: center;
    color: #b3b3b3;
    border-top: 1px solid #333;
}

/* Modal de Trailer */
.trailer-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.trailer-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trailer-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 600px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.trailer-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
}

.trailer-close:hover {
    color: #e50914;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .hero {
        height: 350px;
        padding-left: 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .streaming-logos {
        flex-wrap: wrap;
    }

    .section {
        padding: 50px 20px;
    }

    .grid-content,
    .channels-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .trailer-modal-content {
        width: 95%;
        height: 400px;
    }

    .trailer-close {
        font-size: 30px;
        right: 10px;
        top: 10px;
    }
}
