/* --- PÁGINA PLANES --- */
.planes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 80px;
  /* Para que todas las celdas del grid tengan la misma altura */
  align-items: stretch; 
}

.plan-detail-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  /* Flexbox para alinear botones */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-detail-card:hover {
  transform: translateY(-10px);
  border-color: #fff;
}

.plan-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: inline-block;
  align-self: center; /* Centrar el badge en flex */
}

.plan-detail-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: "Syncopate", sans-serif;
  color: #fff;
}

.plan-detail-card .price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: -2px;
}

.plan-detail-card .tax {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

.plan-detail-card .desc {
  color: #aaa;
  margin-bottom: 30px;
  font-style: italic;
  font-size: 0.95rem;
  flex-grow: 0;
}

.feature-list {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
  padding: 0;
  /* El contenido se expande, pero deja el botón al final */
  flex-grow: 1; 
}

.feature-list li {
  margin-bottom: 15px;
  color: #ddd;
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-list li i {
  color: #10b981;
  margin-top: 4px;
  flex-shrink: 0;
}

/* El botón se empuja al final automáticamente */
.full-width {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: auto; 
}

/* --- COLORES NEON (Faltaban en tu archivo) --- */
.neon-blue { border-top: 3px solid #3b82f6; }
.neon-purple { border-top: 3px solid #a855f7; }
.neon-red { border-top: 3px solid #ef4444; }

.plan-detail-card.neon-blue:hover {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}
.plan-detail-card.neon-purple:hover {
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
  border-color: #a855f7;
}
.plan-detail-card.neon-red:hover {
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
}

/* --- SECCIÓN MANTENIMIENTO --- */
.maintenance-section {
  margin-top: 100px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}
.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.m-card {
  background: #111;
  border: 1px solid #333;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}
.m-card h3 {
  font-family: "Syncopate", sans-serif;
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #fff;
}
.m-card .m-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #fff;
}
.m-card .m-price span {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}
.m-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.m-card li {
  margin-bottom: 12px;
  color: #aaa;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 5px;
}
.m-card.highlight {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.03);
}
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;600;800&family=Syncopate:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Segoe+UI&display=swap");

:root {
  --bg: #050505;
  --text: #ffffff;
  --accent-blue: #3b82f6;
  --border-color: rgba(255, 255, 255, 0.1);
  --panel-bg: #0a0a0a;
  --card-bg: #111;
  --text-muted: #888;
  --success: #10b981;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  padding-top: 60px;
}

/* --- FONDO Y EFECTOS --- */
#canvas-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -2; opacity: 1; }
.noise-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: url("https://grainy-gradients.vercel.app/noise.svg"); opacity: 0.05; z-index: -1; pointer-events: none; }


/* --- FOOTER --- */
footer { padding: 60px 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: 40px; text-align: center; background: #050505; }
.footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
.social-btn {
  width: 45px; height: 45px; border-radius: 50%; background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center;
  color: #888; text-decoration: none; font-size: 1.2rem; transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.social-btn:hover { transform: translateY(-5px); color: #fff; border-color: transparent; }
.social-btn.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); box-shadow: 0 0 20px rgba(214, 36, 159, 0.4); }
.social-btn.whatsapp:hover { background: #25d366; box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); }
.social-btn.facebook:hover {
  background: #1877f2; /* Azul Facebook oficial */
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.4); /* Resplandor azul */
  color: #fff;
  border-color: transparent;
}
.social-btn.email:hover { background: #fff; color: #000; box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
footer p { color: #444; font-size: 0.8rem; margin-top: 20px; }
footer a { color: #666; text-decoration: none; transition: 0.3s; }
footer a:hover { color: #fff; text-decoration: underline; }
footer p a {
    margin: 0 25px;       /* Mucho más espacio lateral (izq/der) */
    display: inline-block; /* Asegura que el margen se respete */
    position: relative;    /* Para futuros efectos si quisieras */
}

/* Opcional: Pequeño separador visual entre enlaces */
footer p a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -28px; /* Ajustado a la mitad del margen */
    color: rgba(255, 255, 255, 0.1);
    font-weight: 300;
    pointer-events: none;
}

/* Ajuste Responsive: En móviles los apilamos para que sean fáciles de tocar */
@media (max-width: 768px) {
    footer p {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Espacio vertical en móvil */
    }
    
    footer p a {
        margin: 0; /* Quitamos margen lateral en móvil */
        display: block;
    }
    
    /* Ocultamos el separador en móvil */
    footer p a:not(:last-child)::after {
        display: none;
    }
}

/* --- UTILIDADES & ANIMACIONES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.fade-in { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.23, 1, 0.32, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.glitch-text { font-size: clamp(3rem, 10vw, 8rem); line-height: 1.15; font-weight: 800; letter-spacing: -3px; margin: 0; text-shadow: 0 0 80px rgba(255, 255, 255, 0.1); padding: 15px 10px; display: inline-block; width: 100%; }

/* --- COOKIES --- */
.cookie-banner {
  position: fixed; bottom: 20px; right: 20px; width: 90%; max-width: 380px;
  background: rgba(15, 15, 15, 0.95); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px; border-radius: 12px; z-index: 1000; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  opacity: 0; transform: translateY(50px); transition: 0.5s; pointer-events: none; display: flex; flex-direction: column; gap: 15px;
}
.cookie-banner.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.cookie-content { display: flex; gap: 15px; align-items: flex-start; }
.cookie-content p { font-size: 0.8rem; color: #bbb; line-height: 1.4; margin: 0; }
.cookie-content a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie { flex: 1; padding: 10px; border-radius: 6px; font-weight: 700; cursor: pointer; font-size: 0.75rem; text-align: center; border: none; background: #fff; color: #000; transition: 0.3s; }
.btn-reject { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }

/* --- INTERNAL HERO (Compartido) --- */
.internal-hero { padding: 60px 20px 40px; text-align: center; }
.label-box { display: inline-block; border: 1px solid rgba(255, 255, 255, 0.2); padding: 5px 15px; border-radius: 20px; font-size: 0.7rem; color: #888; margin-bottom: 20px; letter-spacing: 2px; text-transform: uppercase; background: rgba(20, 20, 20, 0.6); backdrop-filter: blur(10px); }


/* --- BOTONES GLOBALES --- */
.btn-primary {
  background: #fff;
  color: #000;
  padding: 16px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
} 


/* 1. INTERNAL HERO (El contenedor del título) */
.internal-hero {
    position: relative;
    padding: 120px 20px 60px; /* Mucho espacio arriba para separarlo del Nav */
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 10;
}

/* 2. LABEL BOX ("SYSTEM OPERATORS") */
.label-box {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    font-family: "Syncopate", sans-serif; /* Tu fuente técnica */
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-blue); /* Usa la variable azul del core */
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

/* 3. AJUSTE DEL TÍTULO H1 EN ESTE MÓDULO */
.internal-hero h1.glitch-text {
    /* Nos aseguramos que use la fuente correcta si el core falla por algo */
    font-family: "Syncopate", sans-serif; 
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    /* Efecto de sombra para separarlo del fondo */
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}


:root {
    --accent-blue: #3b82f6;
}