/*
Theme Name: Activo TV Neon Final
Theme URI: https://activotv.com
Author: Activo TV
Description: Tema completo con página de pagos integrada al estilo principal.
Version: 17.0
*/

:root {
    /* PALETA DE COLORES */
    --bg-color: #0b0b0b;
    --card-bg: #141414;
    --primary: #00e0ff;       /* Cian Neón */
    --primary-hover: #00b8d4;
    --secondary: #2563eb;     /* Azul Royal */
    --text: #ffffff;
    --text-gray: #b3b3b3;
    --gold: #ffd700;
}

body {
    margin: 0; padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color); color: var(--text);
    line-height: 1.6; overflow-x: hidden;
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; }

/* === HEADER === */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; background-color: rgba(0,0,0,0.95);
    position: fixed; width: 90%; top: 0; z-index: 1000;
    backdrop-filter: blur(10px); border-bottom: 1px solid #333;
}

.logo-text {
    font-size: 28px; font-weight: 900; color: var(--primary);
    text-transform: uppercase; letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 224, 255, 0.8);
    font-family: 'Arial Black', sans-serif; display: flex; align-items: center; gap: 10px;
}

nav ul { display: flex; gap: 25px; }
nav a { color: #fff; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
nav a:hover { color: var(--primary); text-shadow: 0 0 8px var(--primary); }

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.95)), url('https://grupoactivotv.com/wp-content/uploads/2026/02/fondo.webp');
    background-size: cover; background-position: center; background-attachment: fixed;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 130px 20px 60px 20px; position: relative;
}

/* HERO PEQUEÑO PARA PÁGINA DE PAGOS */
.hero-small {
    min-height: 50vh; /* Altura reducida */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 1)), url('https://grupoactivotv.com/wp-content/uploads/2026/02/fondo.webp');
    background-size: cover; background-position: center;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 120px 20px 40px 20px;
}

.hero-badge {
    background: rgba(0, 224, 255, 0.1); border: 1px solid var(--primary);
    padding: 8px 25px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 25px;
    backdrop-filter: blur(5px); color: var(--primary); box-shadow: 0 0 15px rgba(0, 224, 255, 0.2); text-transform: uppercase;
}

.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; text-shadow: 0 5px 15px black; }
.text-highlight { color: var(--primary); display: block; text-shadow: 0 0 25px rgba(0, 224, 255, 0.6); }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px auto; color: #e0e0e0; }

.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }

/* Botones Neón */
.btn-neon-fill {
    background-color: var(--primary); color: #000;
    padding: 15px 40px; border-radius: 50px; font-weight: bold; font-size: 1rem;
    display: flex; align-items: center; gap: 10px; border: none;
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.5); text-transform: uppercase; text-decoration: none;
}
.btn-neon-fill:hover { background-color: white; transform: scale(1.05); box-shadow: 0 0 40px rgba(0, 224, 255, 0.8); }

.btn-neon-outline {
    background-color: transparent; color: white;
    padding: 15px 40px; border-radius: 50px; font-weight: bold; font-size: 1rem;
    border: 2px solid white; box-shadow: 0 0 10px rgba(255,255,255,0.2);
    display: flex; align-items: center; gap: 10px; text-transform: uppercase; text-decoration: none;
}
.btn-neon-outline:hover { background-color: white; color: #000; box-shadow: 0 0 20px rgba(255,255,255,0.5); }

/* === GRID SYSTEM === */
.section-container, .features-section { padding: 80px 5%; text-align: center; background-color: var(--bg-color); }
.section-title { font-size: 2.5rem; color: white; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.section-title span { color: var(--primary); text-shadow: 0 0 15px rgba(0, 224, 255, 0.4); }
.section-subtitle { color: var(--text-gray); margin-bottom: 50px; font-size: 1.1rem; }

.grid-container, .features-grid, .testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; max-width: 1300px; margin: 0 auto;
}
@media (min-width: 1100px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

/* === TARJETAS === */
.dark-card, .feature-card, .testimonial-card {
    background-color: var(--card-bg); border: 1px solid #333; border-radius: 20px;
    padding: 35px 25px; text-align: left; transition: 0.3s ease;
    display: flex; flex-direction: column; position: relative;
}
.dark-card:hover, .feature-card:hover {
    transform: translateY(-7px); border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.2);
}

.icon-circle, .feature-icon {
    width: 60px; height: 60px; background-color: rgba(0, 224, 255, 0.05);
    border: 1px solid var(--primary); color: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 25px; box-shadow: 0 0 10px rgba(0, 224, 255, 0.2);
}
.card-title, .feature-card h3 { font-size: 1.3rem; margin: 0 0 10px 0; color: white; font-weight: 700; text-transform: uppercase; }
.card-desc, .feature-card p { font-size: 0.95rem; color: var(--text-gray); line-height: 1.6; margin-bottom: 20px; }

/* === PRECIOS === */
.dark-card.center-text { text-align: center; align-items: center; }
.price { font-size: 3rem; font-weight: 800; margin: 15px 0; color: white; text-shadow: 0 0 10px rgba(255,255,255,0.1); }
.price span { font-size: 1rem; color: var(--text-gray); font-weight: normal; }
.features li { margin: 12px 0; color: #d1d1d1; border-bottom: 1px solid #222; padding-bottom: 8px; display: flex; align-items: center; font-size: 0.9rem; }
.features li i { color: var(--primary); margin-right: 12px; font-size: 1rem; text-shadow: 0 0 5px var(--primary); }
.badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #000; padding: 6px 20px;
    border-radius: 20px; font-size: 0.8rem; font-weight: bold;
    box-shadow: 0 0 15px var(--primary); text-transform: uppercase; z-index: 2;
}
.plan-img { width: 100%; max-width: 180px; height: auto; object-fit: contain; margin: 10px auto; display: block; border-radius: 10px; }

.btn-card-neon {
    margin-top: auto; width: 100%; background-color: transparent;
    border: 2px solid var(--primary); color: white; padding: 12px 0; border-radius: 50px;
    font-weight: bold; text-align: center; text-transform: uppercase; font-size: 0.9rem; transition: 0.3s;
    text-decoration: none; display:block;
}
.btn-card-neon:hover { background-color: var(--primary); color: #000; box-shadow: 0 0 20px var(--primary); transform: scale(1.02); }

/* === ELEMENTOS EXTRA === */
.marquee-section { background: #000; border-top: 1px solid #222; border-bottom: 1px solid #222; padding: 25px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-block; animation: scroll 20s linear infinite; }
.marquee-item { display: inline-block; padding: 0 40px; font-size: 1.5rem; font-weight: bold; color: #444; text-transform: uppercase; }
.marquee-item:hover { color: var(--primary); text-shadow: 0 0 10px var(--primary); transition: 0.3s; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.testimonial-card { text-align: center; align-items: center; padding: 40px 30px; }
.testimonial-text { font-style: italic; color: #ddd; margin-bottom: 20px; font-size: 1rem; }
.testimonial-user { font-weight: bold; color: var(--primary); }
.stars { color: #ffd700; margin-bottom: 15px; font-size: 1.2rem; }

.faq-section { background-color: #0d0d0d; }
.faq-container { max-width: 800px; margin: 40px auto; text-align: left; }
.faq-item { background-color: var(--card-bg); border: 1px solid #333; border-radius: 10px; margin-bottom: 15px; overflow: hidden; transition: 0.3s; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: white; font-size: 1.1rem; background: transparent; width: 100%; border: none; text-align: left; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: 0.3s; }
.faq-question.active::after { content: '-'; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 20px; background-color: rgba(255, 255, 255, 0.02); }
.faq-answer p { color: var(--text-gray); padding-bottom: 20px; margin-top: 10px; font-size: 0.95rem; }

/* MODALES */
.modal-overlay { display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); justify-content: center; align-items: center; backdrop-filter: blur(8px); }
.modal-content { background-color: #141414; color: white; width: 90%; max-width: 480px; border-radius: 12px; border: 1px solid var(--primary); box-shadow: 0 0 30px rgba(0, 224, 255, 0.15); position: relative; animation: modalFadeIn 0.3s; overflow: hidden; }
@keyframes modalFadeIn { from {opacity: 0; transform: scale(0.9);} to {opacity: 1; transform: scale(1);} }
.modal-header { background: #000; padding: 20px 25px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { margin: 0; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; gap: 10px; color: var(--primary); text-shadow: 0 0 10px rgba(0,224,255,0.3); }
.close-btn { color: #666; font-size: 28px; cursor: pointer; line-height: 1; transition: 0.2s; }
.modal-body { padding: 25px; }
.modal-box { background: #0a0a0a; border: 1px solid #333; border-radius: 10px; padding: 20px; margin-bottom: 15px; text-align: left; }
.modal-label { font-weight: 700; margin-bottom: 8px; display: block; color: white; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.btn-download-modal, .btn-verify { background-color: var(--primary); color: #000 !important; display: block; width: 100%; padding: 14px 0; text-align: center; border-radius: 8px; font-weight: bold; text-decoration: none; border: none; font-size: 1rem; transition: 0.2s; box-shadow: 0 0 15px rgba(0,224,255,0.3); text-transform: uppercase; }
.btn-download-modal:hover { background-color: white; box-shadow: 0 0 25px rgba(0,224,255,0.6); }
.dns-container { display: flex; align-items: center; justify-content: space-between; background: #1a1a1a; border: 1px solid #444; padding: 10px 15px; border-radius: 8px; }
.dns-text { font-family: 'Courier New', monospace; color: var(--primary); font-weight: bold; word-break: break-all; }
.btn-copy { background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 6px 15px; border-radius: 6px; font-weight: 600; font-size: 0.85rem; transition: 0.3s; }
.btn-copy:hover { background-color: var(--primary); color: #000; }
.form-group { margin-bottom: 15px; text-align: left; }
.form-input { width: 100%; padding: 12px; background: #1a1a1a; border: 1px solid #444; color: white; border-radius: 8px; font-size: 1rem; box-sizing: border-box; outline: none; transition: 0.3s; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 10px rgba(0, 224, 255, 0.2); }
.demo-footer-alert { background-color: rgba(255, 165, 0, 0.1); color: #ffa500; padding: 12px; border-radius: 8px; margin-top: 20px; font-weight: bold; font-size: 0.9rem; text-align: center; border: 1px solid rgba(255, 165, 0, 0.3); }

/* FOOTER */
footer { text-align: center; padding: 60px 20px; background: #050505; border-top: 1px solid #222; font-size: 0.9rem; color: #666; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: #999; margin: 0 15px; font-weight: 500; }
.footer-links a:hover { color: var(--primary); }

.whatsapp-float { position: fixed; bottom: 25px; right: 25px; background-color: #25d366; color: white; width: 64px; height: 64px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 32px; box-shadow: 0 0 20px rgba(37, 211, 102, 0.5); z-index: 2000; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 0 30px rgba(37, 211, 102, 0.8); }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    nav { display: none; }
    .features-grid, .grid-container, .testimonials-grid { grid-template-columns: 1fr; }
}