:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --card-bg: #1a1a1a;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
.container { max-width: 1100px; margin:0 auto; padding:0 2rem; }

/* Header */
.header { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(0,0,0,0.9); padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-container { height: 80px; display: flex; align-items: center; justify-content: center; }
.logo { height: 50px; display: block; margin: 0 auto; }
.particles-canvas { position: fixed; inset: 0; z-index: -1; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-center { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
#typing { font-size: clamp(2rem, 8vw, 4rem); font-weight: 800; color: var(--accent-light); }
.cursor { color: var(--accent); animation: blink 0.8s infinite; }
@keyframes blink { 50% { opacity: 0; } }
.subtitle { font-size: 1.2rem; margin: 1.5rem 0 3rem; color: #b9bbbe; }

/* Conócenos con palabras clave moradas */
.conocenos-text h3 { font-size: 1.8rem; color: var(--accent-light); margin-bottom: 1rem; }
.conocenos-text p { margin-bottom: 1.2rem; line-height: 1.7; color: #ccc; text-align: justify; }
.conocenos-text .keyword { color: var(--accent); font-weight: 600; } /* Esta es la regla morada */
.conocenos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; align-items: center; }
.conocenos-img img { width: 100%; border-radius: 15px; border: 1px solid var(--accent); }

/* Slider lento */
.negocios-slider { overflow: hidden; background: #0f0f0f; padding: 60px 0; }
.slider-wrapper { display: flex; width: 100%; }
.slider-track { display: flex; width: calc(350px * 12); animation: scroll 45s linear infinite; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-350px * 6)); } }
.slide { width: 330px; background: var(--card-bg); margin: 0 10px; border-radius: 12px; display: flex; align-items: center; padding: 20px; flex-shrink: 0; border: 1px solid #333; }
.slide i { font-size: 2rem; color: var(--accent); margin-right: 15px; }
.slide-info h3 { font-size: 1.1rem; margin-bottom: 5px; }
.slide-info p { font-size: 0.85rem; color: #888; line-height: 1.3; }

/* Pasos */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.step-card { background: var(--card-bg); padding: 25px; border-radius: 10px; border-left: 3px solid var(--accent); }
.step-number { background: var(--accent); width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; font-weight: bold; color: white; }

/* PLANES ESTILO IMAGEN (Blancos) */
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 3.5rem; color: var(--accent-light); font-size: 2.5rem; font-family: 'Outfit', sans-serif; }
.pricing-grid-pro { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; align-items: stretch; }
.price-card-pro { background: #ffffff; color: #1a1a1a; padding: 40px 25px; border-radius: 15px; position: relative; transition: 0.3s; display: flex; flex-direction: column; }
.price-card-pro.featured { border: 3px solid var(--accent); transform: scale(1.03); z-index: 2; }
.discount-badge { position: absolute; top: 15px; right: 15px; background: #e8f5e9; color: #2e7d32; padding: 4px 10px; border-radius: 5px; font-size: 0.7rem; font-weight: 700; }
.popular-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 800; }
.main-price { font-size: 2.2rem; font-weight: 800; margin: 15px 0 5px; color: #000; }
.extra-benefit { color: var(--accent); font-weight: 700; font-size: 0.9rem; margin-bottom: 25px; }
.btn-select { display: block; text-align: center; padding: 12px; border: 2px solid #000; border-radius: 8px; text-decoration: none; color: #000; font-weight: 700; transition: 0.3s; margin-bottom: 30px; }
.btn-select.highlight { background: #000; color: #fff; }
.btn-select:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.features-list { list-style: none; margin-top: auto; border-top: 1px solid #eee; padding-top: 20px; }
.features-list li { margin-bottom: 8px; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.features-list i { color: #2e7d32; }
/* Estilos para los Grupos de Botones en Planes */
/* Botones de Pago Único y Suscripción */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.btn-select-sub {
    display: block;
    text-align: center;
    padding: 10px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    text-decoration: none;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-select-sub:hover {
    background: var(--accent);
    color: #fff;
}

/* Banner "Despejá tus dudas" */
.consultas-banner {
    background: var(--card-bg);
    border: 2px dashed var(--accent);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.consultas-text h4 { color: var(--accent-light); margin-bottom: 5px; }

.btn-whatsapp-banner {
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 768px) {
    .consultas-banner { flex-direction: column; text-align: center; }
}

footer {
    text-align: center;
    padding: 3rem;
    border-top: 1px solid #222;
    margin-top: 50px;
    background: #000;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 20px; /* Espacio entre los botones */
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--accent-light);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    padding: 5px 10px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-links i {
    font-size: 1.2rem;
}

/* --- ESTILOS DE MUESTRAS --- */
.muestras-subtitle { text-align: center; color: #b9bbbe; margin: -2rem 0 3rem; font-size: 1.1rem; }
.muestras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.muestra-card { 
    background: var(--card-bg); 
    border: 1px solid #333; 
    padding: 2.5rem 1.5rem; 
    border-radius: 15px; 
    text-align: center; 
    transition: 0.4s; 
}
.muestra-card:hover { border-color: var(--accent); transform: translateY(-10px); }
.plan-tag { font-size: 0.75rem; font-weight: 700; color: var(--accent-light); margin-bottom: 1.5rem; display: block; }
.muestra-icon {
    font-size: 3rem; /* Tamaño grande para destacar */
    color: var(--accent); /* El violeta #7c3aed que usás en toda la web */
    margin-bottom: 1.5rem;
}
.btn-muestra { 
    display: inline-block; 
    margin-top: 1.5rem; 
    padding: 10px 20px; 
    border: 2px solid var(--accent); 
    color: #fff; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: 600; 
}
.btn-muestra:hover { background: var(--accent); }
/* Estilos para los botones dobles de los planes */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.btn-select-pago {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-select-susc {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-select-pago:hover, .btn-select-susc:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nota-soporte {
    text-align: center;
    margin-top: 40px;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.7;
}
.faq {
    background: #0f1115; /* Un tono un poco distinto para separar secciones */
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--accent-color); /* O el color que uses de resalte */
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.faq-item p {
    color: #b9bbbe;
    line-height: 1.6;
    font-size: 0.95rem;
}
.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}

.faq-cta p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #7c3aed; /* Color oficial WhatsApp */
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.05);
    color: white;
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

