/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f4f4f4; /* Fondo gris claro para un look más moderno */
    color: #222;
    line-height: 1.6;
}

/* Prevenir selección de texto e imágenes (opcional, se mantiene) */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img, video, iframe {
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #000000;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-bottom: 3px solid #e31b23;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}
.logo-text span {
    color: #e31b23;
}

/* Navegación */
.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-link:hover, .nav-link.active {
    color: #e31b23;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e31b23;
    border-radius: 2px;
}

/* Menú móvil */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #e31b23;
    border-radius: 3px;
    transition: 0.3s;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #e31b23;
    color: #fff;
    box-shadow: 0 4px 10px rgba(227,27,35,0.3);
}

.btn-primary:hover {
    background: #b3131a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227,27,35,0.4);
}

.btn-secondary {
    background: transparent;
    color: #222;
    border: 2px solid #e31b23;
    color: #e31b23;
}
.btn-secondary:hover {
    background: #e31b23;
    color: #fff;
    transform: translateY(-2px);
}

.btn-download {
    background: #e31b23;
    color: #fff;
    font-size: 1.2rem;
    padding: 14px 40px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.btn-download:hover {
    background: #b3131a;
    transform: scale(1.02);
}

/* Secciones Generales */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #111;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #555;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: #111;
}
.hero-title span {
    color: #e31b23;
}

.version {
    font-size: 1.2rem;
    background: rgba(227,27,35,0.1);
    padding: 5px 15px;
    border-radius: 40px;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: 500;
    color: #e31b23;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #444;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat {
    background: #fff;
    padding: 15px 30px;
    border-radius: 60px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    min-width: 130px;
}
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #e31b23;
}
.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Features Grid */
.features {
    padding: 80px 0;
    background: #fff;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: #e31b23;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #e31b23;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111;
}
.feature-card p {
    color: #555;
    margin-bottom: 15px;
}
.feature-card h4 {
    font-size: 0.85rem;
    color: #e31b23;
    background: rgba(227,27,35,0.05);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* CTA Section */
.cta {
    background: #111;
    color: white;
    padding: 70px 0;
    text-align: center;
}
.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
}
.cta p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}
.cta-badge {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
    flex-wrap: wrap;
    font-weight: 500;
}

/* Categories */
.categories-section {
    padding: 80px 0;
    background: #f9f9f9;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}
.category-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 60px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #eee;
    color: #222;
    cursor: default;
}
.category-card:hover {
    background: #e31b23;
    color: #fff;
    transform: scale(1.02);
    border-color: #e31b23;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #fff;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.faq-item {
    background: #fafafa;
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid #e31b23;
    transition: 0.2s;
}
.faq-item h3 {
    margin-bottom: 12px;
    color: #111;
    font-size: 1.2rem;
}
.faq-item p {
    color: #555;
    font-size: 0.95rem;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: #f4f4f4;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.comparison-table th, .comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.comparison-table th {
    background: #111;
    color: white;
    font-weight: 600;
}
.check {
    color: #e31b23;
    font-weight: bold;
}
.times {
    color: #aaa;
}

/* Footer */
.footer {
    background: #000;
    color: #ccc;
    padding: 60px 0 20px;
    border-top: 4px solid #e31b23;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    width: 55px;
    margin-bottom: 15px;
    border-radius: 10px;
}
.footer-info p {
    font-size: 0.85rem;
    opacity: 0.7;
}
.footer-links h4, .footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e31b23;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a, .social-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-links a:hover, .social-link:hover {
    color: #e31b23;
}
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.social-link {
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: 30px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 0.75rem;
}

/* Download Page */
.download-section {
    padding: 100px 0 60px;
    background: #f4f4f4;
}
.download-card {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    background: #fff;
    border-radius: 32px;
    padding: 45px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}
.spec-item {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}
.detail-label {
    font-weight: 600;
    color: #e31b23;
    margin-right: 8px;
}
.install-steps {
    margin: 30px 0;
}
.step {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    align-items: flex-start;
}
.step-number {
    background: #e31b23;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}


/* ========== ESTILOS PARA PÁGINA CREA TU WEB ========== */
.web-section {
    padding: 100px 0 60px;
    background: #f4f4f4;
}

.page-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Servicios / Paquetes */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #e31b23;
}

.service-card.popular {
    border: 2px solid #e31b23;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e31b23;
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.service-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.service-header i {
    font-size: 2.5rem;
    color: #e31b23;
    margin-bottom: 15px;
}

.service-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e31b23;
}

.service-price small {
    font-size: 0.8rem;
    color: #aaa;
}

.service-body {
    padding: 30px;
}

.service-body ul {
    list-style: none;
    padding: 0;
}

.service-body li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-body li i {
    color: #4CAF50;
    font-size: 0.9rem;
    width: 20px;
}

.service-btn {
    display: block;
    text-align: center;
    background: #e31b23;
    color: white;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.service-btn:hover {
    background: #b3131a;
    transform: translateY(-2px);
}

/* Formulario de solicitud */
.web-form-container {
    background: #fff;
    border-radius: 32px;
    padding: 45px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.web-form-container h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #111;
}

.web-form-container h2 i {
    color: #e31b23;
    margin-right: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group label i {
    color: #e31b23;
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e31b23;
    outline: none;
    box-shadow: 0 0 0 3px rgba(227,27,35,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    background: #e31b23;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #b3131a;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Portafolio / Ejemplos */
.portfolio-section {
    padding: 60px 0;
    background: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.portfolio-item {
    background: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    text-align: center;
    padding-bottom: 20px;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.portfolio-icon {
    background: linear-gradient(135deg, #e31b23 0%, #b3131a 100%);
    padding: 40px;
    text-align: center;
}

.portfolio-icon i {
    font-size: 3rem;
    color: white;
}

.portfolio-item h3 {
    margin: 15px 0 5px;
    font-size: 1.2rem;
}

.portfolio-item p {
    color: #666;
    font-size: 0.85rem;
    padding: 0 15px;
}

/* Testimonios */
.testimonials-section {
    padding: 60px 0;
    background: #f4f4f4;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author i {
    font-size: 2rem;
    color: #e31b23;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-author p {
    font-size: 0.75rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .web-form-container {
        padding: 25px;
    }
    
    .service-card.popular {
        transform: scale(1);
    }
    
    .services-grid {
        gap: 20px;
    }
}


/* Tabla responsive - Para que no se desborde en móvil */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comparison-table {
    min-width: 500px; /* Asegura que la tabla tenga un ancho mínimo y se active el scroll en móvil */
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

/* Ajustes para móvil */
@media (max-width: 768px) {
    .comparison-table th, 
    .comparison-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .table-wrapper {
        margin: 0 -5px; /* Compensa el padding del container si es necesario */
    }
}

.download-qr {
    text-align: center;
    background: #fafafa;
    padding: 30px;
    border-radius: 24px;
}
.qr-code {
    width: 160px;
    height: 160px;
    background: #fff;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid #ddd;
}
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 25px;
}
.screenshot {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}
.screenshot img {
    max-width: 100%;
    border-radius: 12px;
    pointer-events: auto;
}

/* Contact Page */
.contact-section {
    padding: 100px 0 60px;
    background: #f4f4f4;
}
.page-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 10px;
    color: #111;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.contact-info, .contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}
.info-items {
    margin-top: 30px;
}
.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}
.info-icon {
    font-size: 2rem;
    color: #e31b23;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-family: inherit;
    transition: 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #e31b23;
    outline: none;
    box-shadow: 0 0 0 3px rgba(227,27,35,0.1);
}
.terms-check {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

/* Social Page */
.social-section {
    padding: 100px 0 60px;
    background: #f4f4f4;
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}
.social-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 32px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eee;
}
.social-card:hover {
    transform: translateY(-5px);
    border-color: #e31b23;
}
.social-icon {
    font-size: 3.8rem;
    margin-bottom: 20px;
    color: #e31b23;
}
.social-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 15px 0;
    transition: 0.2s;
}
.youtube-btn { background: #FF0000; color: #fff; }
.tiktok-btn { background: #000; color: #fff; border: 1px solid #eee; }
.facebook-btn { background: #1877F2; color: #fff; }
.social-stats { font-size: 0.8rem; color: #777; }

/* Movies Grid */
.movies-section {
    padding: 60px 0;
    background: #fff;
}
.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}
.movie-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.2s;
    border: 1px solid #f0f0f0;
}
.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.movie-poster {
    height: 260px;
    overflow: hidden;
}
.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.movie-info {
    padding: 15px;
}
.movie-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
}
.movie-year {
    font-size: 0.8rem;
    color: #e31b23;
}

/* Estilos adicionales para comentarios y calificaciones */
.comment-item {
    transition: all 0.2s ease;
}

.comment-item:hover {
    transform: translateX(5px);
}

.like-btn {
    transition: all 0.2s ease;
}

.like-btn.liked {
    color: #e31b23;
}

.like-btn .fa-heart {
    transition: transform 0.2s;
}

.like-btn:hover .fa-heart {
    transform: scale(1.1);
}

.admin-response {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.response-form {
    margin-top: 12px;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.star-rating i {
    transition: all 0.2s ease;
}

.bar-fill {
    transition: width 0.5s ease-out;
}

.dropdown-notif {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}
.notificacion-container:hover .dropdown-notif {
    display: block;
}
.notif-header {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}
.notif-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.notif-item:hover {
    background: #f8f9fa;
}
.notif-icon {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e31b23;
}
.notif-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #333;
}
.notif-content small {
    font-size: 0.7rem;
    color: #888;
}

/* ===== ESTILOS PARA NOTIFICACIONES ===== */
.notificacion-container {
    position: relative;
}

.dropdown-notif {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.notificacion-container:hover .dropdown-notif {
    display: block !important;
}

.notif-header {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    position: sticky;
    top: 0;
    background: white;
}

.notif-header a {
    color: #e31b23;
    text-decoration: none;
    font-size: 0.75rem;
}

.notif-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.notif-item:hover {
    background: #f8f9fa;
}

.notif-icon {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e31b23;
    flex-shrink: 0;
}

.notif-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #333;
}

.notif-content small {
    font-size: 0.7rem;
    color: #888;
}

.notif-vacia {
    padding: 30px;
    text-align: center;
    color: #888;
}

/* Responsive para notificaciones */
@media (max-width: 768px) {
    .dropdown-notif {
        width: 280px;
        right: -50px;
    }
}

/* ===== ESTILOS PARA NOTIFICACIONES ===== */
.notificacion-container {
    position: relative;
}

#dropdownNotificaciones {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    max-height: 450px;
    overflow-y: auto;
    display: none;
}

/* Mostrar dropdown al hacer click (no al hover) */
.notificacion-container .dropdown-notif {
    display: none;
}

.notif-header {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    position: sticky;
    top: 0;
    background: white;
    border-radius: 12px 12px 0 0;
}

.notif-header a {
    color: #e31b23;
    text-decoration: none;
    font-size: 0.75rem;
}

.notif-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.notif-item:hover {
    background: #f8f9fa;
}

.notif-icon {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e31b23;
    flex-shrink: 0;
}

.notif-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
}

.notif-content small {
    font-size: 0.7rem;
    color: #888;
    display: block;
    margin-top: 4px;
}

.notif-vacia {
    padding: 40px 20px;
    text-align: center;
    color: #888;
}

#notifBadge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #e31b23;
    color: white;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    display: none;
    min-width: 18px;
    text-align: center;
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    #dropdownNotificaciones {
        width: 300px;
        right: -60px;
    }
}

/* Scrollbar personalizada */
#dropdownNotificaciones::-webkit-scrollbar {
    width: 5px;
}

#dropdownNotificaciones::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

#dropdownNotificaciones::-webkit-scrollbar-thumb {
    background: #e31b23;
    border-radius: 5px;
}

/* Menú móvil */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #e31b23;
    border-radius: 3px;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 75px);
        background: #000;
        transition: 0.3s ease-in-out;
        padding: 40px 20px;
        z-index: 999;
        border-right: 2px solid #e31b23;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #000;
        transition: 0.3s;
        padding: 40px 20px;
        z-index: 999;
        border-right: 2px solid #e31b23;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .nav-link {
        font-size: 1.2rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .download-card, .contact-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .section-title {
        font-size: 1.8rem;
    }

    /* Estilos adicionales para versión TV */
.download-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Estilo especial para la sección TV */
#tv-version .install-steps .step {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

#tv-version .step-number {
    background: #e31b23;
}

/* Botón copiar código */
#copyCodeBtn {
    background: rgba(227,27,35,0.2);
    border: 1px solid #e31b23;
    transition: all 0.3s;
}

#copyCodeBtn:hover {
    background: #e31b23;
    color: white;
}

/* Código Downloader destacado */
.download-qr div[style*="background: #000"] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border: 2px solid #e31b23;
}

/* Responsive para TV */
@media (max-width: 768px) {
    .download-card {
        padding: 20px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
}
}