/* MolePoblano - Estilos */
:root {
    --color-primary: #6c3483;
    --color-primary-light: #8e44ad;
    --color-accent: #f5b041;
    --color-accent-hover: #f39c12;
    --color-bg: #f5eef8;
    --color-bg-dark: #0f1419;
    --color-text: #2c3e50;
    --color-text-muted: #5a6c7d;
    --color-white: #ffffff;
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-card: none;
    --radius: 12px;
    --radius-lg: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', -apple-system, sans-serif; color: var(--color-text); background: var(--color-bg); line-height: 1.6; overflow-x: hidden; }
body.dark-theme { background: var(--color-primary); color: var(--color-white); }
body.dark-theme section h2 { color: var(--color-accent); }
body.dark-theme .section-subtitle { color: rgba(255,255,255,0.8); }
body.dark-theme .feature-card, body.dark-theme .testimonial-card, body.dark-theme .pricing-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
body.dark-theme .feature-card h3, body.dark-theme .testimonial-author strong { color: var(--color-accent); }
body.dark-theme .feature-card p, body.dark-theme .testimonial-card p, body.dark-theme .step p { color: rgba(255,255,255,0.85); }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--color-bg-dark); color: var(--color-white); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; z-index: 1000; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.cookie-banner.hidden { display: none; }
.btn-accept { background: var(--color-accent); color: var(--color-bg-dark); border: none; padding: 0.5rem 1.5rem; border-radius: var(--radius); font-weight: 600; cursor: pointer; font-family: inherit; }
.btn-accept:hover { background: var(--color-accent-hover); }
.header { position: sticky; top: 0; background: rgba(250, 248, 245, 0.95); backdrop-filter: blur(10px); z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.08); }
.nav { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; position: relative; }
.logo { font-family: 'Satisfy', serif; font-size: 1.5rem; font-weight: 700; color: var(--color-primary); text-decoration: none; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { color: var(--color-text); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--color-accent); }
.nav-cta { background: var(--color-accent); color: var(--color-bg-dark) !important; padding: 0.5rem 1rem; border-radius: var(--radius); }
.nav-cta:hover { background: var(--color-accent-hover); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--color-text); }
.hero { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem 6rem; text-align: center; }
.hero h1 { font-family: 'Satisfy', serif; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; color: var(--color-primary); }
.hero-subtitle { font-size: 1.15rem; color: var(--color-text-muted); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-features { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; color: var(--color-text-muted); font-size: 0.95rem; }
.hero.split-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; text-align: left; }
.hero.split-hero .hero-features { justify-content: flex-start; }
.hero.split-hero .hero-visual { background: rgba(0,0,0,0.05); border-radius: var(--radius-lg); min-height: 280px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero.split-hero .hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-wrap { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-img-wrap img { width: 100%; height: auto; display: block; }
.btn-primary { display: inline-block; background: var(--color-primary); color: white; padding: 0.75rem 2rem; border-radius: var(--radius); text-decoration: none; font-weight: 600; transition: background 0.2s; border: none; cursor: pointer; font-family: inherit; }
.btn-primary:hover { background: var(--color-primary-light); }
.btn-outline { background: transparent; border: 2px solid var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: white; }
.pricing { padding: 4rem 2rem; background: rgba(0,0,0,0.02); }
.pricing h2, .features h2, .testimonials h2, .how-it-works h2, .faq h2, .cta h2 { font-family: 'Satisfy', serif; font-size: 1.75rem; margin-bottom: 0.5rem; color: var(--color-primary); text-align: center; }
.section-subtitle { text-align: center; color: var(--color-text-muted); margin-bottom: 2rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.pricing-card { background: var(--color-white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); position: relative; }
.pricing-card.featured { border: 2px solid var(--color-primary); }
.pricing-card h3 { margin-bottom: 1rem; color: var(--color-primary); }
.price { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.pricing-card ul { list-style: none; margin-bottom: 1.5rem; }
.pricing-card li { padding: 0.25rem 0; color: var(--color-text-muted); }
.features { padding: 4rem 2rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.feature-card { background: var(--color-white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.feature-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--color-primary); }
.feature-card p { color: var(--color-text-muted); font-size: 0.95rem; }
.testimonials { padding: 4rem 2rem; background: rgba(0,0,0,0.02); }
.testimonials-slider { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.testimonial-card { background: var(--color-white); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.testimonial-card .stars { margin-bottom: 1rem; }
.testimonial-card p { font-style: italic; color: var(--color-text); margin-bottom: 1.5rem; }
.testimonial-author strong { display: block; color: var(--color-primary); }
.testimonial-author span { font-size: 0.9rem; color: var(--color-text-muted); }
.how-it-works { padding: 4rem 2rem; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.step { text-align: center; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--color-primary); color: var(--color-white); border-radius: 50%; font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem; }
.step h3 { margin-bottom: 0.5rem; color: var(--color-primary); }
.step p { color: var(--color-text-muted); font-size: 0.95rem; }
.faq { padding: 4rem 2rem; }
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question { width: 100%; padding: 1rem 0; background: none; border: none; font-size: 1rem; font-weight: 500; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; color: var(--color-text); }
.faq-question span { font-size: 1.5rem; transition: transform 0.2s; }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.3s; }
.faq-answer p { padding: 0 0 1rem; color: var(--color-text-muted); }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-question span { transform: rotate(45deg); }
.cta { padding: 4rem 2rem; text-align: center; background: var(--color-primary); color: var(--color-white); }
.cta h2 { color: var(--color-white); }
.cta p { margin-bottom: 1.5rem; opacity: 0.9; }
.download-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.disclaimer { font-size: 0.9rem; opacity: 0.8; margin-bottom: 2rem; }
.lead-form-section { max-width: 420px; margin: 2rem auto; padding: 2rem; background: rgba(255,255,255,0.12); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.2); }
.registration-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.registration-form input { padding: 0.75rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: white; font-family: inherit; }
.registration-form input::placeholder { color: rgba(255,255,255,0.6); }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; cursor: pointer; color: rgba(255,255,255,0.95); line-height: 1.4; }
.cta-contact { margin-top: 1rem; }
.cta-contact a { color: var(--color-accent); }
.footer { background: var(--color-bg-dark); color: var(--color-white); padding: 3rem 2rem 2rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: start; }
.footer-brand h3 { margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.9rem; opacity: 0.8; }
.footer-col h4 { font-size: 0.9rem; margin-bottom: 1rem; opacity: 0.9; }
.footer-col a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-col a:hover { color: var(--color-accent); }
.footer-copy { text-align: center; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); font-size: 0.85rem; opacity: 0.7; }
.hero.split-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; text-align: left; }
.hero-img { max-width: 100%; border-radius: var(--radius-lg); }
.hero-img-wrap { margin-top: 2rem; }
.badge { position: absolute; top: -8px; right: 1rem; background: var(--color-accent); color: var(--color-bg-dark); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; }
.btn-card { display: inline-block; margin-top: 1rem; padding: 0.5rem 1rem; background: var(--color-primary); color: white; border-radius: var(--radius); text-decoration: none; font-size: 0.9rem; }
.btn-card:hover { background: var(--color-primary-light); }
@media (max-width: 768px) { .nav-links { display: none; } .footer-content { grid-template-columns: 1fr; } .hero.split-hero { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }