* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --netflix-red: #e50914;
    --netflix-black: #141414;
    --netflix-dark: #000000;
    --netflix-gray: #333333;
    --netflix-light-gray: #757575;
    --text-white: #ffffff;
    --text-gray: #d1d1d1;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--netflix-dark);
    overflow-x: hidden;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    color: var(--text-white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--netflix-dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--netflix-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: var(--netflix-red);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--netflix-red);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23141414" width="1200" height="600"/><circle fill="%23e50914" cx="200" cy="100" r="50" opacity="0.1"/><circle fill="%23333333" cx="800" cy="200" r="80" opacity="0.1"/><circle fill="%23e50914" cx="1000" cy="400" r="60" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-custom-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    display: none;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--netflix-red);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
    background: #f40612;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--netflix-dark);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 4px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-weight: bold;
}

.carousel-container {
    position: relative;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.carousel-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 600;
}

.movie-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.movie-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.movie-card {
    aspect-ratio: 2 / 3; /* fuerza proporción vertical */
    width: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--netflix-gray);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
}


.movie-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.movie-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.carousel-nav.left {
    left: 10px;
}

.carousel-nav.right {
    right: 10px;
}

.carousel-container:hover .carousel-nav,
.carousel-nav:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.carousel-nav:hover {
    background: var(--netflix-red);
}


/* Services Section */
.services {
    padding: 80px 0;
    background: var(--netflix-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--netflix-black);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--netflix-gray);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--netflix-red);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--netflix-red);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background: var(--netflix-black);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--netflix-dark);
    border: 1px solid var(--netflix-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: scale(1.05);
    border-color: var(--netflix-red);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
}

.package-card.featured {
    border-color: var(--netflix-red);
    background: linear-gradient(135deg, var(--netflix-dark) 0%, rgba(229, 9, 20, 0.1) 100%);
}

.package-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--netflix-red);
    color: var(--text-white);
    padding: 5px 15px;
    font-size: 0.8rem;
    border-radius: 15px;
    font-weight: bold;
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.package-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--netflix-red);
    margin-bottom: 1rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--netflix-gray);
    color: var(--text-gray);
}

.package-features i {
    color: var(--netflix-red);
    margin-right: 0.5rem;
}

/* Downloads Section */
.downloads {
    padding: 80px 0;
    background: var(--netflix-dark);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.download-card {
    background: var(--netflix-black);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--netflix-gray);
    transition: all 0.3s ease;
    position: relative;
}

.download-card:hover {
    border-color: var(--netflix-red);
    transform: translateY(-5px);
}

.download-icon {
    font-size: 4rem;
    color: var(--netflix-red);
    margin-bottom: 1rem;
}

.download-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.download-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.app-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.modal-content {
    background-color: var(--netflix-black);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--netflix-red);
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--netflix-gray);
    padding-bottom: 1rem;
}

.modal-title {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 0;
}

.close-modal {
    color: var(--text-gray);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--netflix-red);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1rem;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--netflix-black);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--netflix-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--netflix-gray);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--netflix-red);
    transform: translateY(-5px);
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-card p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.reviewer {
    color: var(--netflix-red);
    font-weight: bold;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--netflix-dark);
}

.faq-item {
    background: var(--netflix-black);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--netflix-gray);
}

.faq-question {
    padding: 1.5rem;
    background: var(--netflix-black);
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
  align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--netflix-gray);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--netflix-dark);
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-gray);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--netflix-black);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--netflix-dark);
    border-radius: 8px;
    border: 1px solid var(--netflix-gray);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--netflix-red);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    color: var(--netflix-red);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-gray);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    padding: 15px;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp {
    background: #25d366;
    color: white;
}

.telegram {
    background: #0088cc;
    color: white;
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: var(--netflix-dark);
    color: var(--text-gray);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--netflix-gray);
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-white);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--netflix-gray);
    border-radius: 4px;
    font-size: 1rem;
    background: var(--netflix-black);
    color: var(--text-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--netflix-red);
    outline: none;
}

.form-group small {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Section Backgrounds */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.9;
}

/* Asegurar que las secciones tengan posición relativa */
.packages,
.services,
.downloads {
    position: relative;
    z-index: 1;
}

/* Mejoras adicionales para movie cards */
.movie-card .movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(229, 9, 20, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}

.movie-rating {
    font-size: 0.8rem;
    margin-top: 0.3rem;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.8));
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--netflix-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid var(--netflix-gray);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .header {
        padding: 1rem 0;
        min-height: 70px;
    }

    .header.scrolled {
        padding: 0.8rem 0;
    }

    .nav-container {
        min-height: 50px;
    }

    .logo-container {
        gap: 0.8rem;
    }

    .site-logo {
        height: 40px;
        max-width: 50px;
    }

    .header.scrolled .site-logo {
        height: 35px;
    }

    .logo {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .header.scrolled .logo {
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .movie-card {
        min-width: 150px;
        height: 225px;
    }
    
    .movie-card:hover {
        transform: scale(1.02) translateY(-5px);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .carousel-nav {
        display: none !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    /* Disable fixed background on mobile for performance */
    .section-background {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 0.5rem;
    }

    .site-logo {
        height: 35px;
        max-width: 40px;
    }

    .header.scrolled .site-logo {
        height: 30px;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .header.scrolled .logo {
        font-size: 1.1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .movie-card {
        min-width: 120px;
        height: 180px;
    }
    
    .movie-info {
        padding: 1rem 0.5rem;
    }
    
    .movie-title {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .movie-year {
        font-size: 0.7rem;
    }
}

/* Footer */
.footer {
    background: var(--netflix-dark);
    color: var(--text-gray);
    padding: 3rem 0 1rem 0;
    border-top: 1px solid var(--netflix-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo h3 {
    color: var(--netflix-red);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.whatsapp { background: #25d366; }
.social-link.telegram { background: #0088cc; }
.social-link.facebook { background: #1877f2; }
.social-link.twitter { background: #1da1f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--netflix-red);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.footer-contact .contact-item i {
    color: var(--netflix-red);
    width: 20px;
}

.footer-contact .contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: var(--netflix-red);
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--netflix-black);
    border: 1px solid var(--netflix-gray);
    border-radius: 8px;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-button:hover {
    border-color: var(--netflix-red);
    background: var(--netflix-gray);
}

.app-button.web-player {
    background: var(--netflix-red);
    border-color: var(--netflix-red);
}

.app-button.web-player:hover {
    background: #f40612;
}

.app-button i {
    font-size: 1.5rem;
}

.app-button div span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.app-button div strong {
    display: block;
    font-size: 1rem;
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid var(--netflix-gray);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--netflix-red);
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-payment span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 0.8rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: var(--netflix-red);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--netflix-black);
}

::-webkit-scrollbar-thumb {
    background: var(--netflix-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f40612;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--netflix-black);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--netflix-dark);
    border-radius: 8px;
    border: 1px solid var(--netflix-gray);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--netflix-red);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    color: var(--netflix-red);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-gray);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    padding: 15px;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp {
    background: #25d366;
    color: white;
}

.telegram {
    background: #0088cc;
    color: white;
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: var(--netflix-dark);
    color: var(--text-gray);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--netflix-gray);
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-white);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--netflix-gray);
    border-radius: 4px;
    font-size: 1rem;
    background: var(--netflix-black);
    color: var(--text-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--netflix-red);
    outline: none;
}

.form-group small {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Installation Instructions */
.installation-instructions {
    padding: 80px 0;
    background: var(--netflix-dark);
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.instruction-card {
    background: var(--netflix-black);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--netflix-gray);
    transition: all 0.3s ease;
}

.instruction-card:hover {
    border-color: var(--netflix-red);
    transform: translateY(-5px);
}

.instruction-card h3 {
    color: var(--netflix-red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instruction-card ol {
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 1.2rem;
}

.instruction-card li {
    margin-bottom: 0.5rem;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background: var(--netflix-black);
    text-align: center;
}

.support-section .container > div {
    max-width: 800px;
    margin: 0 auto;
}

.support-section p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.support-section .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Comparison */
.features-comparison {
    padding: 80px 0;
    background: var(--netflix-dark);
}

.comparison-table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border: 1px solid var(--netflix-gray);
    text-align: center;
}

.comparison-table th {
    background: var(--netflix-black);
    color: var(--text-white);
    font-weight: bold;
}

.comparison-table td {
    background: var(--netflix-black);
    color: var(--text-gray);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: bold;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: var(--netflix-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--netflix-red);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-gray);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--netflix-dark);
}

.contact-form-section .container > div {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section form {
    background: var(--netflix-black);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--netflix-gray);
}

.contact-form-section .form-group input,
.contact-form-section .form-group textarea,
.contact-form-section .form-group select {
    background: var(--netflix-dark);
    color: var(--text-white);
}

.contact-form-section button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* FAQ Quick */
.faq-quick {
    padding: 80px 0;
    background: var(--netflix-black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-quick-card {
    background: var(--netflix-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--netflix-gray);
    transition: all 0.3s ease;
}

.faq-quick-card:hover {
    border-color: var(--netflix-red);
    transform: translateY(-5px);
}

.faq-quick-card h3 {
    color: var(--netflix-red);
    margin-bottom: 1rem;
}

.faq-quick-card p {
    color: var(--text-gray);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--netflix-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid var(--netflix-gray);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .movie-card {
        min-width: 150px;
        height: 225px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .carousel-nav {
        display: none !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .instructions-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table-container {
        overflow-x: scroll;
    }

    .social-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1rem;
    }

    .support-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .package-price {
        font-size: 2.5rem;
    }

    .download-icon {
        font-size: 3rem;
    }

    .service-icon, .contact-icon {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--netflix-black);
}

::-webkit-scrollbar-thumb {
    background: var(--netflix-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f40612;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--netflix-red);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hamburger,
    .social-buttons,
    .btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero,
    .services,
    .packages,
    .downloads,
    .reviews,
    .faq,
    .contact {
        background: white !important;
        color: black !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --netflix-red: #ff0000;
        --netflix-black: #000000;
        --netflix-dark: #000000;
        --netflix-gray: #808080;
        --text-white: #ffffff;
        --text-gray: #cccccc;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Logo Container - Alineación horizontal */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    height: 60px;
    width: 200px;
    object-fit: contain;
    transition: height 0.3s ease;
}

.header.scrolled .site-logo {
    height: 50px;
    width: 166px; /* Mantiene proporción 200x60 */
}

/* Eliminar margen del logo text que puede causar desplazamiento */
.logo {
    margin: 0;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .logo-container {
        gap: 0.8rem;
    }

    .site-logo {
        height: 50px;
        width: 166px;
    }

    .header.scrolled .site-logo {
        height: 40px;
        width: 133px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 0.5rem;
    }

    .site-logo {
        height: 40px;
        width: 133px;
    }

    .header.scrolled .site-logo {
        height: 35px;
        width: 116px;
    }
}