/* --- Hero Redes Sociales Premium --- */
.hero-social-premium {
    padding: 140px 5% 120px;
    background-color: #000000 !important; /* Fondo negro característico */
    min-height: 80vh; /* Un poco más alto para dar aire visual */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container-hero-minimal {
    max-width: 1000px; /* Un poco más ancho para el H1 */
    margin: 0 auto;
}

/* Badge Superior */
.badge-tech {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

/* H1 Typografía Mamona (Forzada) */
.hero-text-block h1 {
    font-size: clamp(2.8rem, 7vw, 4.5rem) !important; /* Grande y agresivo */
    font-weight: 900 !important;
    line-height: 1 !important; /* Compacto */
    margin-bottom: 30px !important;
    letter-spacing: -3px !important; /* Muy apretado */
    text-transform: uppercase !important;
    color: #ffffff !important;
    display: block !important;
}

/* Resaltado Cyan */
.hero-text-block h1 .highlight {
    color: #00f2ff !important;
}

/* --- Listado de Plataformas (Nuevo) --- */
.social-platforms-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif; /* Usamos una fuente más estética */
}

.social-platforms-list span {
    color: #aaaaaa; /* Gris claro */
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
}

.social-platforms-list span i {
    color: #00f2ff; /* El Cyan de Glitch */
    font-size: 1.1rem;
}

/* Subtítulo de Estrategia */
.hero-text-block p {
    font-size: clamp(1.15rem, 2vw, 1.4rem) !important;
    color: #cccccc !important; /* Gris más claro para lectura */
    font-weight: 400 !important;
    margin-bottom: 70px !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7 !important;
}

.hero-text-block p strong {
    color: #ffffff;
    font-weight: 700;
}

/* Botón Cyan */
.btn-ads-impact {
    display: inline-block;
    background-color: #00f2ff !important;
    color: #000000 !important;
    padding: 22px 55px;
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-ads-impact:hover {
    background-color: #ffffff !important;
    transform: translateY(-4px);
}

.btn-ads-impact i {
    margin-left: 10px;
    font-size: 0.9rem;
}

/* --- Sección Administración de Redes --- */
.social-admin-section {
    padding: 120px 5%;
    background-color: #ffffff; /* Fondo Blanco Limpio */
    color: #000000;
}

.container-admin {
    max-width: 1200px;
    margin: 0 auto;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Mitad y Mitad */
    gap: 80px;
    align-items: center;
}

/* Columna Imagen */
.admin-visual {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1); /* Sombra más pronunciada en blanco */
}

.admin-visual img {
    width: 100%;
    display: block;
    filter: grayscale(10%); /* Ligero efecto para que se vea más técnico inicial */
    transition: transform 0.5s ease, filter 0.5s ease;
}

.admin-visual:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* Columna Texto */
.badge-pain {
    color: #ff3c3c; /* Rojo para el "Dolor/Vergüenza" */
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.admin-text h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.admin-text h2 .highlight-dark {
    color: #111;
    border-bottom: 3px solid #00f2ff; /* Subrayado Cyan Glitch */
}

.admin-intro {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* --- Estructura de Items (Corregida y Limpia) --- */
.admin-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.admin-item {
    display: grid;
    grid-template-columns: 40px 1fr; /* Icono en carril fijo */
    gap: 15px;
    align-items: start;
}

.admin-item i {
    color: #00f2ff; /* El Cyan Glitch */
    font-size: 1.5rem;
    margin-top: 3px;
    display: flex;
    justify-content: center;
}

.admin-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.admin-item p strong {
    color: #000;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 991px) {
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .admin-item {
        text-align: left; /* Mantenemos texto a la izquierda en items */
    }
}


/* --- Sección Ecosistema Social --- */
.social-ecosystem-section {
    padding: 100px 5%;
    background-color: #0a0a0a;
    color: #ffffff;
}

.container-ecosystem {
    max-width: 1200px;
    margin: 0 auto;
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 70px;
}

.ecosystem-header h2 .highlight {
    color: #00f2ff;
}

/* Grid de Tarjetas Técnicas */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.eco-card {
    background: #111;
    padding: 40px;
    border-left: 3px solid #00f2ff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.eco-card:hover {
    background: #1a1a1a;
    transform: translateX(10px);
    box-shadow: -10px 0 30px rgba(0, 242, 255, 0.1);
}

.eco-card i {
    font-size: 2.5rem;
    color: #00f2ff;
    margin-bottom: 25px;
    display: block;
}

.eco-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.eco-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
}

.eco-card p strong {
    color: #00f2ff;
    font-weight: 700;
}


/* --- Estilos Generales de Precios (FONDO CLARO) --- */
.social-pricing-section {
    padding: 100px 5%;
    background-color: #fcfcfc; /* Fondo de la sección */
    font-family: 'Inter', sans-serif;
}

.container-pricing {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.badge-price {
    color: #00f2ff; /* Cyan Glitch */
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.pricing-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -2px;
    color: #000000; /* Título Negro Sólido */
}

/* Grid de 4 Columnas */
.pricing-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* =========================================
   ESTILO DE TARJETA BASE (PLANES NO DESTACADOS)
   ========================================= */
.price-card {
    background: #ffffff; /* Fondo Blanco Puro */
    padding: 40px 25px;
    border: 1px solid #e0e0e0; /* Borde sutil */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    /* CORRECCIÓN DE LEGIBILIDAD: Texto Negro Sólido */
    color: #000000; 
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Títulos y Párrafos en Tarjeta Base */
.price-card .card-header h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #000000; /* Negro Sólido */
}

.price-card .card-header p {
    font-size: 0.85rem;
    margin-bottom: 25px;
    /* CORRECCIÓN: Subtítulos gris oscuro, no transparente */
    color: #444444; 
}

/* Precio en Tarjeta Base */
.price-card .amount {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    color: #000000; /* Negro Sólido */
}

.price-card .amount span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666666; /* Gris para el MXN/mes */
}

/* Listas en Tarjeta Base */
.price-card .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.price-card .features-list li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    line-height: 1.4;
    text-align: left;
    /* CORRECCIÓN: Items Negros */
    color: #111111; 
}

/* Iconos de Check en Tarjeta Base */
.price-card .features-list li i { 
    color: #00f2ff; /* Cyan Glitch */
    margin-top: 3px; 
}

/* Botón en Tarjeta Base */
.price-card .btn-price {
    display: block;
    padding: 15px;
    border: 2px solid #000000;
    color: #000000;
    font-weight: 900;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    background: transparent;
}

.price-card .btn-price:hover { 
    background: #000000; 
    color: #ffffff; 
}


/* =========================================
   ESTILO DE TARJETA DESTACADA (PLAN NEGRO)
   ========================================= */
.price-card.featured {
    background: #000000; /* Fondo Negro Sólido */
    color: #ffffff; /* Texto Blanco */
    border: none;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform: scale(1.05); /* Ligeramente más grande */
    z-index: 2;
}

/* Mantenemos el popular tag */
.popular-tag {
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, -50%);
    background: #00f2ff;
    color: #000000;
    padding: 6px 15px;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 20px;
}

/* Títulos y Párrafos en Tarjeta Destacada */
.price-card.featured .card-header h3 { color: #ffffff; }
.price-card.featured .card-header p { color: #aaaaaa; }

/* Precio en Tarjeta Destacada */
.price-card.featured .amount { 
    color: #00f2ff; /* Cyan Glitch para el precio */
}
.price-card.featured .amount span { color: #aaaaaa; }

/* Listas en Tarjeta Destacada */
.price-card.featured .features-list li { color: #dddddd; }
.price-card.featured .features-list li i { color: #00f2ff; }

/* Botón en Tarjeta Destacada */
.price-card.featured .btn-price-featured {
    display: block;
    padding: 15px;
    background: #00f2ff; /* Cyan */
    color: #000000; /* Texto Negro */
    font-weight: 900;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

.price-card.featured .btn-price-featured:hover { 
    background: #ffffff; 
    transform: scale(1.02); 
}


/* --- Estilos para lo que NO incluye (Cruces Rojas) --- */
.features-list li.no-include { 
    opacity: 0.6; /* Un poco transparente para denotar exclusión */
    font-style: italic; 
}
.features-list li.no-include i { 
    color: #ff3c3c !important; /* Rojo Intenso para la X */
}
/* En tarjeta destacada, la X roja debe brillar */
.price-card.featured .features-list li.no-include i {
    color: #ff6060 !important;
}


/* --- Responsivo --- */
@media (max-width: 1200px) { 
    .pricing-grid-four { grid-template-columns: repeat(2, 1fr); gap: 30px; } 
    .price-card.featured { transform: scale(1); margin: 20px 0; }
}
@media (max-width: 600px) { 
    .pricing-grid-four { grid-template-columns: 1fr; } 
}


/* --- Sección Cierre Humano --- */
.human-break-section {
    padding: 100px 5%;
    background-color: #000000;
    color: #ffffff;
}

.container-human {
    max-width: 1200px;
    margin: 0 auto;
}

.human-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Imagen más pequeña, texto más ancho */
    gap: 80px;
    align-items: center;
}

/* Columna Imagen (Avatar) */
.human-visual {
    position: relative;
    text-align: center;
}

.human-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 50%; /* Si es un avatar circular */
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.2); /* Sombra cyan */
    transition: all 0.4s ease;
}

.human-visual img:hover {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 30px 60px rgba(255, 60, 60, 0.3); /* Cambia a sombra roja en hover */
}

/* Columna Texto */
.human-text h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.human-text h2 .highlight {
    color: #00f2ff;
}

.human-text p {
    font-size: 1.15rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.human-points p {
    font-size: 1rem;
    border-left: 2px solid #333;
    padding-left: 20px;
    margin-bottom: 25px;
}

.human-points p strong {
    color: #ffffff;
    font-weight: 700;
}

/* Call to Action Final */
.final-call {
    font-size: 1.3rem !important;
    font-weight: 900;
    color: #00f2ff !important; /* Cyan */
    margin-bottom: 50px !important;
}

.btn-human-cta {
    display: inline-block;
    padding: 18px 45px;
    background-color: #00f2ff;
    color: #000000;
    font-weight: 900;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-human-cta:hover {
    background-color: #ffffff;
    transform: translateY(-5px);
}

.btn-human-cta i { margin-left: 10px; }

/* Responsive */
@media (max-width: 991px) {
    .human-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .human-points { text-align: left; }
}