/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --netflix-red: #E50914;
    --netflix-black: #141414;
    --netflix-dark: #000000;
    --netflix-gray: #2F2F2F;
    --netflix-light-gray: #808080;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--netflix-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--netflix-black);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.navbar {
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--netflix-red);
}

.logo h1 span {
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--netflix-red);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(20,20,20,0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--white);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--netflix-red);
    color: var(--white);
}

.btn-primary:hover {
    background: #c40812;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--netflix-black);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--netflix-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--netflix-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
}

.feature-card i {
    font-size: 48px;
    color: var(--netflix-red);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--netflix-light-gray);
}

/* Planos Section */
.planos {
    padding: 80px 0;
    background: var(--netflix-black);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--netflix-light-gray);
    margin-bottom: 60px;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.plano-card {
    background: var(--netflix-gray);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.plano-card:hover {
    transform: translateY(-10px);
    border-color: var(--netflix-red);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.4);
}

.plano-card.featured {
    border: 2px solid var(--netflix-red);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--netflix-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plano-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--netflix-red);
}

.plano-price {
    margin-bottom: 30px;
}

.plano-price .currency {
    font-size: 24px;
    vertical-align: top;
}

.plano-price .value {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
}

.plano-price .period {
    font-size: 18px;
    color: var(--netflix-light-gray);
}

.plano-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plano-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plano-features i {
    color: var(--netflix-red);
    font-size: 18px;
}

.btn-plano {
    width: 100%;
    background: var(--netflix-red);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-plano:hover {
    background: #c40812;
    transform: scale(1.02);
}

/* Canais Section */
.canais {
    padding: 80px 0;
    background: var(--netflix-dark);
}

.canais-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category {
    background: var(--netflix-gray);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
}

.category h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--netflix-red);
}

.category h3 i {
    margin-right: 10px;
}

.category p {
    color: var(--netflix-light-gray);
    line-height: 1.8;
}

/* Vantagens Section */
.vantagens {
    padding: 80px 0;
    background: var(--netflix-black);
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.vantagem-item {
    text-align: center;
    padding: 30px;
}

.vantagem-item i {
    font-size: 48px;
    color: var(--netflix-red);
    margin-bottom: 20px;
}

.vantagem-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.vantagem-item p {
    color: var(--netflix-light-gray);
}

/* Contato Section */
.contato {
    padding: 80px 0;
    background: var(--netflix-dark);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contato-form {
    background: var(--netflix-gray);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--netflix-black);
    border: 2px solid transparent;
    border-radius: 5px;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--netflix-red);
}

.form-group select option {
    background: var(--netflix-black);
}

.contato-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card {
    background: var(--netflix-gray);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
}

.info-card i {
    font-size: 64px;
    color: #25D366;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 24px;
    color: var(--netflix-light-gray);
    margin-bottom: 30px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #1fb855;
}

/* Footer */
.footer {
    background: var(--netflix-dark);
    padding: 60px 0 20px;
    border-top: 1px solid var(--netflix-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--netflix-red);
}

.footer-section p {
    color: var(--netflix-light-gray);
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--netflix-light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--netflix-red);
}

.footer-section i {
    margin-right: 10px;
    color: var(--netflix-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--netflix-gray);
    color: var(--netflix-light-gray);
}

/* WhatsApp Flutuante */
.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;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1fb855;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--netflix-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 80%;
    }

    .section-title {
        font-size: 32px;
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }

    .plano-card.featured {
        transform: scale(1);
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .plano-price .value {
        font-size: 42px;
    }

    .features-grid,
    .canais-categories,
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
}
