@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");:root{--primary-color:#6c4ab6;--secondary-color:#4a30a5;--accent-color:#d64a6c;--background-light:#ffffff;--text-dark:#2d2d2d;--card-light:#fafafa;--border-color:#e0e0e0;--gradient-start:#f9f9ff;--gradient-end:#fff9e6}*{box-sizing:border-box;margin:0;padding:0}body{font-family:Segoe UI,Arial,sans-serif;background-color:var(--background-light);color:var(--text-dark);line-height:1.6;overflow-x:hidden;background-image:linear-gradient(135deg,var(--gradient-start) 0,var(--gradient-end) 100%)}.container{max-width:1200px;margin:auto;padding:2rem}.project-name{text-align:center;padding:1rem 0 .5rem;font-size:3rem;color:var(--primary-color);font-weight:700;letter-spacing:2px;display:flex;justify-content:center;align-items:center;gap:1rem}.project-name span{display:inline-block;animation:2s linear infinite running}@keyframes running{0%{transform:translateX(0)}50%{transform:translateX(10px)}to{transform:translateX(0)}}.logo{display:inline-flex;align-items:center;gap:.4em}.logo-icon{height:1.5em;transform:translateY(-.2em)}.top-bar{display:flex;justify-content:space-between;align-items:center;padding:1rem 2rem;background-color:var(--background-light);border-bottom:1px solid var(--border-color);position:sticky;top:0;z-index:1000}.top-bar .logo{font-size:1.8rem;font-weight:700;text-decoration:none;background:linear-gradient(90deg,#000,#6c4ab6,#d64a6c);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.top-bar .auth-buttons{display:flex;gap:1rem}.top-bar .auth-button{padding:.75rem 1.5rem;border-radius:50px;text-decoration:none;font-weight:700;transition:all .3s ease;cursor:pointer}.top-bar .login-button{background-color:#f0f0f0;color:#333;border:1px solid #ddd}.top-bar .login-button:hover{background-color:#e0e0e0}@media (max-width:768px){.top-bar{flex-direction:column;gap:1rem;padding:1.25rem}.top-bar .logo{font-size:2.2rem;text-align:center}.top-bar .auth-buttons{width:100%;justify-content:center}.top-bar .auth-button{width:100%;max-width:280px;text-align:center}}.header{text-align:center;padding:2rem 0;animation:fadeInDown 1s ease-out}.header h1{font-size:3.5rem;font-weight:700;color:#000;background:linear-gradient(90deg,#000,#6c4ab6,#d64a6c);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:1rem}.header p{font-size:1.2rem;max-width:600px;margin:auto;color:var(--text-dark);animation:fadeIn 2s ease-out .5s forwards;opacity:0}.how-it-works-section{padding:4rem 0;text-align:center}.how-it-works-section h2{font-size:2.8rem;color:#000;margin-bottom:2rem}.how-it-works-section p{font-size:1.2rem;max-width:800px;margin:auto auto 3rem;color:var(--text-dark)}.benefits-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin-bottom:4rem}.benefit-card{background-color:var(--card-light);padding:2rem;border-radius:12px;border-left:5px solid var(--primary-color);text-align:left;transition:all .3s ease;box-shadow:0 4px 15px rgba(0,0,0,.05)}.benefit-card:hover{transform:translateY(-5px) scale(1.02);border-left-color:var(--secondary-color)}.benefit-card h3{font-size:1.8rem;color:var(--primary-color);margin-bottom:.75rem;border-bottom:1px solid var(--border-color);padding-bottom:.5rem}.benefit-card p{font-size:1.1rem;margin-bottom:1rem;color:var(--text-dark)}.benefit-card .example{font-size:.9rem;color:#666;font-style:italic;background-color:#f5f5f5;padding:.5rem;border-radius:6px}.pricing-section{text-align:center;padding:4rem 0}.pricing-section h2{font-size:2.5rem;color:var(--primary-color);margin-bottom:3rem}.pricing-cards{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap}.card{background-color:var(--card-light);border:1px solid var(--border-color);border-radius:12px;padding:2.5rem;width:350px;transition:transform .3s ease,box-shadow .3s ease;animation:fadeInUp 1s ease-out forwards;box-shadow:0 4px 12px rgba(0,0,0,.05)}.card:first-child{animation-delay:.5s}.card:nth-child(2){animation-delay:.7s}.card:nth-child(3){animation-delay:.9s}.card:hover{transform:translateY(-10px);box-shadow:0 10px 25px rgba(0,0,0,.1)}.card-header h3{font-size:1.5rem;margin-bottom:1rem;color:var(--text-dark);background:linear-gradient(to right,var(--primary-color),var(--accent-color));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.card-price{font-size:3rem;font-weight:700;color:var(--primary-color);margin-bottom:1rem}.card-price .currency{font-size:1.5rem;font-weight:400}.card-price .period{font-size:1rem;color:#9E9E9E}.card-features{list-style:none;margin-bottom:2rem;text-align:left}.card-features li{display:flex;align-items:center;margin-bottom:.75rem;color:var(--text-dark)}.card-features li:before{content:"✔";color:var(--primary-color);margin-right:.5rem}.login-button{display:inline-block;background:linear-gradient(to right,var(--primary-color),var(--accent-color));color:#fff;padding:1rem 2rem;border-radius:50px;text-decoration:none;font-weight:700;transition:background-color .3s ease,transform .3s ease;margin-top:2rem;border:none}.login-button:hover{background:linear-gradient(90deg,#5a3b9d,#c53a5d);transform:scale(1.05)}.seo-importance-section{padding:4rem 0 6rem;text-align:center}.seo-importance-section h2{font-size:3rem;color:#000;margin-bottom:.5rem}.seo-importance-section .subtitle{font-size:1.5rem;color:var(--secondary-color);margin-bottom:3rem;font-style:italic}.testimonials-section{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap;margin:3rem 0}.testimonial-card{background-color:#fdf0e9;border-radius:12px;padding:2rem;width:100%;max-width:500px;box-shadow:0 4px 12px rgba(0,0,0,.05);display:flex;flex-direction:column;justify-content:space-between;text-align:center}.testimonial-logo{margin:0 auto 1.5rem;width:80px;height:80px;display:flex;justify-content:center;align-items:center;background-color:#fff;border-radius:50%;border:2px solid #e0e0e0}.testimonial-logo img{width:60%;height:auto;object-fit:contain}.testimonial-quote{font-size:1.1rem;line-height:1.6;color:#2d2d2d;margin-bottom:1.5rem;font-style:italic}.testimonial-quote a{text-decoration:none;color:#6c4ab6}.testimonial-author{display:flex;align-items:center;gap:1rem;margin-top:1rem}.testimonial-author img{width:50px;height:50px;border-radius:50%;object-fit:cover}.testimonial-author-info{text-align:left}.testimonial-author-name{font-weight:700;font-size:1.1rem;color:#2d2d2d}.testimonial-author-title{font-size:.9rem;color:#6c757d}.imagen-responsive{max-width:100%;height:auto;display:block;padding-bottom:1.5rem}.cta-banner{background-color:rgba(255,255,255,.8);padding:3rem 2rem;border-radius:12px;display:flex;flex-direction:column;align-items:center;gap:1.5rem;box-shadow:0 8px 25px rgba(0,0,0,.08);text-align:center;border:1px solid rgba(0,0,0,.05)}.cta-banner .main-message{font-size:2.2rem;font-weight:700;color:#000;margin:0}.cta-banner .subtitle-message{font-size:1.2rem;font-weight:400;color:var(--text-dark);margin:0}.cta-button{background:linear-gradient(to right,var(--primary-color),var(--accent-color))!important;color:white!important;border:3px solid white}.cta-button:hover{background:linear-gradient(90deg,#5a3b9d,#c53a5d)!important;transform:scale(1.1)!important}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.stats-section{padding:4rem 0;text-align:center}.stats-section h2{font-size:2.8rem;color:#000;margin-bottom:2rem}.stats-section p{font-size:1.2rem;max-width:800px;margin:auto auto 3rem;color:var(--text-dark)}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin-bottom:4rem}.stat-card{background-color:var(--card-light);padding:2rem;border-radius:12px;border-top:4px solid var(--accent-color);text-align:left;transition:all .3s ease;box-shadow:0 4px 15px rgba(0,0,0,.05)}.stat-card:hover{transform:translateY(-5px) scale(1.02);border-top-color:var(--primary-color)}.stat-card h3{font-size:1.6rem;color:var(--text-dark);margin-bottom:1rem}.stat-card p{font-size:1rem;color:#555}.scanmap-hero-section{padding:4rem 0;text-align:center;background:linear-gradient(135deg,#f8f5ff,#fff8f0);border-radius:16px;margin:3rem 0;box-shadow:0 8px 30px rgba(108,74,182,.1)}.scanmap-hero-section h2{font-size:2.8rem;color:var(--secondary-color);margin-bottom:1.5rem;font-weight:800}.scanmap-hero-section p{font-size:1.25rem;max-width:800px;margin:1.5rem auto;color:var(--text-dark);line-height:1.7}.scanmap-preview{margin:2.5rem auto;max-width:900px}.scanmap-preview img{border-radius:12px;box-shadow:0 10px 25px rgba(0,0,0,.12);transition:transform .4s ease}.scanmap-preview img:hover{transform:scale(1.02)}.trial-message{display:none;padding-top:1em}.trial-message.show{display:block}.message-success{background-color:#d4edda;color:#155724;border:1px solid #c3e6cb}.message-error{background-color:#f8d7da;color:#721c24;border:1px solid #f5c6cb}.subscription-trial{padding-bottom:2em}.reviews-ai-hero-section,.scanmap-hero-section{padding:4rem 0;background-color:#fafafa;margin:3rem 0;border-radius:12px}.reviews-ai-hero-section .container,.scanmap-hero-section .container{max-width:1200px;margin:0 auto;padding:0 1.5rem}.reviews-ai-content,.scanmap-content{text-align:center}.reviews-ai-content h2,.scanmap-content h2{font-size:2.25rem;margin-bottom:1.25rem;line-height:1.2;color:#1f2937}.reviews-ai-content p,.scanmap-content p{font-size:1.125rem;color:#4b5563;margin-bottom:1.5rem;line-height:1.6}.reviews-ai-preview,.scanmap-preview{margin:2.5rem auto;max-width:900px}.reviews-ai-preview img,.scanmap-preview img{width:100%;height:auto;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.08)}.three-universes-section{padding:4rem 0;background-color:#f8fafc;margin:3rem 0;border-radius:12px}.three-universes-section .container{max-width:1200px;margin:0 auto;padding:0 1.5rem}.three-universes-content{text-align:center}.three-universes-content h2{font-size:2.25rem;margin-bottom:1.25rem;color:#1e293b;line-height:1.2}.three-universes-content p{font-size:1.125rem;color:#475569;margin-bottom:1.5rem;line-height:1.6}.three-universes-preview{margin:2.5rem auto;max-width:900px}.three-universes-preview img{width:100%;height:auto;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.08)}.universes-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin:2.5rem 0}.universe-card{background:white;padding:1.5rem;border-radius:12px;box-shadow:0 2px 8px rgba(0,0,0,.06);text-align:center;transition:transform .2s ease,box-shadow .2s ease}.universe-card:hover{transform:translateY(-4px);box-shadow:0 6px 16px rgba(0,0,0,.1)}.universe-icon{font-size:2rem;margin-bottom:1rem}.universe-card h3{font-size:1.25rem;margin-bottom:.75rem;color:#0f172a}.universe-card p{font-size:1rem;color:#64748b;margin-bottom:0}.universes-conclusion{margin-top:2rem;font-weight:600;color:#1e293b;font-size:1.125rem}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/ba9851c3c22cd980-s.woff2) format("woff2");unicode-range:u+0460-052f,u+1c80-1c8a,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/21350d82a1f187e9-s.woff2) format("woff2");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format("woff2");unicode-range:u+1f??}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format("woff2");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/df0a9ae256c0569c-s.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/8e9860b6e62d6359-s.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-family:Inter Fallback;src:local("Arial");ascent-override:90.44%;descent-override:22.52%;line-gap-override:0.00%;size-adjust:107.12%}.__className_f367f3{font-family:Inter,Inter Fallback;font-style:normal}