/* ==========================================================================
   Variables y Reset (Light & Vibrant Theme)
   ========================================================================== */
:root {
    --bg-main: #F4F7FE; /* Fondo gris muy claro, estilo app moderna */
    --bg-white: #FFFFFF;
    --color-primary: #00C6FF; /* Cian eléctrico */
    --color-secondary: #0072FF; /* Azul profundo brillante */
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --font-main: 'Poppins', sans-serif;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 114, 255, 0.15);
    --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Utilidades de Texto */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Botones 
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px; /* Bordes redondeados = amigable y comercial */
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
}

.btn-outline-primary {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-outline-primary:hover {
    background: var(--color-secondary);
    color: white;
}

.btn-login {
    background: rgba(0, 114, 255, 0.1);
    color: var(--color-secondary);
    border: none;
    padding: 10px 24px;
}

/* ==========================================================================
   Navegación
   ========================================================================== */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo-text { font-weight: 900; color: var(--color-secondary); font-size: 1.5rem; letter-spacing: -1px; }

.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { font-weight: 500; color: var(--text-dark); transition: color 0.3s; }
.nav-links a:hover { color: var(--color-secondary); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background-color: var(--bg-white);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text { flex: 1; padding-right: 40px; }

.badge {
    display: inline-block;
    background: rgba(0, 198, 255, 0.1);
    color: var(--color-secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 { font-size: 4rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; color: var(--text-dark); }
.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; }

.hero-cta { display: flex; align-items: center; gap: 20px; }
.soporte-text { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Estilo para la imagen real del Hero */
.hero-img-real {
    max-width: 100%;
    height: auto;
    max-height: 500px; /* Controla que no se haga gigante */
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.image-placeholder {
    width: 500px; height: 400px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: #64748B; font-weight: bold;
}

/* ==========================================================================
   Planes (El Core de la Venta)
   ========================================================================== */
.planes-section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; color: var(--text-dark); }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.pricing-card.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
    padding: 50px 40px;
}

.featured-badge {
    position: absolute;
    top: -15px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white; padding: 5px 20px; border-radius: 20px; font-weight: 700; font-size: 0.8rem;
}

.card-header h3 { font-size: 1.5rem; font-weight: 700; }
.card-header p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* ¡Velocidades Gigantes! */
.speed-display { margin: 20px 0 30px 0; }
.speed-display .number { font-size: 5rem; font-weight: 900; line-height: 1; color: var(--text-dark); }
.speed-display .unit { font-size: 1.5rem; font-weight: 700; color: var(--text-muted); }

.features-list { list-style: none; text-align: left; margin-bottom: 30px; }
.features-list li { margin-bottom: 12px; color: var(--text-dark); font-weight: 500; }

.btn-block { display: block; width: 100%; }

/* ==========================================================================
   IPTV Section
   ========================================================================== */
.iptv-section { background-color: var(--bg-white); padding: 100px 0; }
.iptv-container { display: flex; align-items: center; gap: 60px; }
.iptv-image { flex: 1; }
.tv-mockup {
    width: 100%; height: 350px;
    background: #1E293B; border-radius: 10px; border: 8px solid #0F172A;
    display: flex; align-items: center; justify-content: center; color: white;
}

/* Estilo para la imagen real del Smart TV */
.tv-mockup-img {
    width: 100%;
    height: auto;
    max-height: 450px; 
    object-fit: contain; /* Usamos 'contain' para que el televisor no se recorte */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15)); /* Sombra suave para darle volumen realista */
    transition: transform 0.3s ease;
}

.tv-mockup-img:hover {
    transform: scale(1.02); /* Pequeño efecto 3D al pasar el mouse */
}

.iptv-text { flex: 1; }
.iptv-text h2 { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 10px; }
.iptv-text .subtitle { color: var(--color-secondary); font-weight: 700; margin-bottom: 20px; }
.iptv-features { display: flex; gap: 20px; margin: 30px 0; }
.feat { background: var(--bg-main); padding: 10px 20px; border-radius: 10px; font-weight: 600; }

/* ==========================================================================
   Partners
   ========================================================================== */
.partners { padding: 60px 0; text-align: center; background: var(--bg-main); }
.partners-title { color: var(--text-muted); font-weight: 600; margin-bottom: 30px; }
.partners-logos { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.logo-box { font-size: 1.5rem; font-weight: 900; color: #cbd5e1; transition: color 0.3s; }
.logo-box:hover { color: var(--color-secondary); }