:root{
    --bg:#070709;
    --bg-soft:#0d1118;
    --surface:#121722;
    --surface-2:#0f141d;
    --text:#f8fafc;
    --muted:#94a3b8;
    --line:rgba(255,255,255,.08);
    --cyan:#00d1e0;
    --cyan-dark:#00a0ad;
    --cta-green:#14939c;
    --cta-green-dark:#0f7f86;
    --cta-green-soft:#1aa6b0;
    --cta-green-shadow:rgba(15,127,134,.16);
    --shadow:0 22px 50px rgba(0,0,0,.28);
    --glow:0 0 24px rgba(0,209,224,.18);
    --radius-card-lg:18px;
    --radius-card:16px;
    --radius-card-sm:14px;
    --radius-chip:10px;
    --theme-page-top-space:52px;
}

[data-theme="light"]{
    --bg:#ffffff;
    --bg-soft:#f5f6f8;
    --surface:#ffffff;
    --surface-2:#fafbfd;
    --text:#111827;
    --muted:#5f6b7a;
    --line:rgba(15,23,42,.08);
    --cyan:#0b8d97;
    --cyan-dark:#086c74;
    --cta-green:#14939c;
    --cta-green-dark:#0f7f86;
    --cta-green-soft:#1aa6b0;
    --cta-green-shadow:rgba(15,127,134,.10);
    --shadow:none;
    --glow:none;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

/* Scrollbar personalizada para todas las plantillas */
.theme-docttus textarea::-webkit-scrollbar,
.theme-docttus [class*="scroll"]::-webkit-scrollbar{ width:5px; height:5px; }
.theme-docttus textarea::-webkit-scrollbar-track,
.theme-docttus [class*="scroll"]::-webkit-scrollbar-track{
    background:rgba(255,255,255,.04);border-radius:4px;
}
.theme-docttus textarea::-webkit-scrollbar-thumb,
.theme-docttus [class*="scroll"]::-webkit-scrollbar-thumb{
    background:rgba(0,209,224,.3);border-radius:4px;
}
.theme-docttus textarea::-webkit-scrollbar-thumb:hover,
.theme-docttus [class*="scroll"]::-webkit-scrollbar-thumb:hover{
    background:var(--cyan);
}
[data-theme="light"] .theme-docttus textarea::-webkit-scrollbar-thumb,
[data-theme="light"] .theme-docttus [class*="scroll"]::-webkit-scrollbar-thumb{
    background:rgba(11,141,151,.3);
}
body.theme-docttus{
    margin:0;
    background:
        radial-gradient(circle at top right, rgba(0,209,224,.10), transparent 24%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    color:var(--text);
    font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    line-height:1.6;
}

[data-theme="light"] body.theme-docttus{
    background:linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}

a{text-decoration:none;color:inherit}
button,input{font:inherit}

.theme-container{width:min(1200px,92vw);margin:0 auto}
.theme-main{display:block}

.theme-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(7,7,9,.78);
    backdrop-filter:blur(16px);
    border-bottom:1px solid transparent;
    transition:background-color .25s ease,border-color .25s ease,box-shadow .25s ease;
}

[data-theme="light"] .theme-header{background:rgba(255,255,255,.94)}
.theme-header.scrolled{border-bottom-color:var(--line);box-shadow:0 10px 30px rgba(0,0,0,.08)}
.theme-header.is-menu-open{border-bottom-color:var(--line)}

.theme-header__inner{
    min-height:84px;
    display:flex;
    align-items:center;
    gap:20px;
    position:relative;
}

.theme-brand{
    font-size:1.72rem;
    font-weight:900;
    letter-spacing:-.04em;
}

.theme-brand span,
.theme-footer__logo span{color:var(--cyan);text-shadow:var(--glow)}

.theme-header__panel{
    flex:1 1 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.theme-nav{display:flex;gap:26px;flex-wrap:wrap}
.theme-nav a{
    color:var(--muted);
    font-weight:600;
    position:relative;
    padding-bottom:4px;
}

.theme-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--cyan);
    box-shadow:var(--glow);
    transition:width .25s ease;
}

.theme-nav a:hover{color:var(--text)}
.theme-nav a:hover::after{width:100%}

.theme-header__actions{
    display:flex;
    align-items:center;
    gap:18px;
}

@media (min-width:961px){
    .theme-header__panel{
        justify-content:flex-end;
        min-width:0;
    }
    .theme-nav{
        position:absolute;
        left:50%;
        transform:translateX(-50%);
        margin:0;
        white-space:nowrap;
    }
    .theme-header__actions{
        margin-left:auto;
    }
}

.theme-menu-toggle{
    display:none;
    width:34px;
    height:34px;
    padding:0;
    border:none;
    border-radius:0;
    background:transparent;
    color:var(--text);
    cursor:pointer;
    box-shadow:none;
}

[data-theme="light"] .theme-menu-toggle{background:transparent}

.theme-menu-toggle span{
    display:block;
    width:20px;
    height:2px;
    margin:4px auto;
    border-radius:999px;
    background:currentColor;
    transition:transform .22s ease,opacity .22s ease;
}

.theme-header.is-menu-open .theme-menu-toggle span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.theme-header.is-menu-open .theme-menu-toggle span:nth-child(2){opacity:0}
.theme-header.is-menu-open .theme-menu-toggle span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

.theme-dots{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
}
.theme-dot{
    width:12px;
    height:12px;
    padding:0;
    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;
    cursor:pointer;
    display:block;
    flex:0 0 12px;
    appearance:none;
    -webkit-appearance:none;
    outline:none;
    background:rgba(255,255,255,.24);
    position:relative;
}

[data-theme="light"] .theme-dot{border-color:rgba(15,23,42,.16)}
.theme-dot--dark{
    background:#05070b;
    border-color:rgba(255,255,255,.28);
}
.theme-dot--light{
    background:#f8fafc;
    border-color:rgba(15,23,42,.18);
}

.theme-dot::after{
    content:"";
    position:absolute;
    inset:-5px;
    border:1px solid rgba(0,209,224,.5);
    border-radius:50%;
    opacity:0;
    transform:scale(.92);
    transition:opacity .2s ease,transform .2s ease;
}

.theme-dot.is-active::after{opacity:1;transform:scale(1)}

.theme-btn,
.btn-main,
.docttus-formats__button,
.btn-header{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:46px;
    padding:0 18px;
    border:1px solid rgba(15,127,134,.30);
    border-radius:10px;
    background:var(--cta-green);
    color:#f3fff7 !important;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    box-shadow:none;
    transition:background-color .22s ease,color .22s ease,border-color .22s ease;
}

[data-theme="light"] .theme-btn,
[data-theme="light"] .btn-main,
[data-theme="light"] .docttus-formats__button,
[data-theme="light"] .btn-header{
    background:var(--cta-green);
    color:#ffffff !important;
    border-color:rgba(15,127,134,.30);
    box-shadow:none;
}

.theme-btn:hover,
.btn-main:hover,
.docttus-formats__button:hover,
.btn-header:hover{
    color:#ffffff !important;
    border-color:rgba(11,102,108,.52);
    background:var(--cta-green-dark);
    box-shadow:none;
}

[data-theme="light"] .theme-btn:hover,
[data-theme="light"] .btn-main:hover,
[data-theme="light"] .docttus-formats__button:hover,
[data-theme="light"] .btn-header:hover{
    color:#ffffff !important;
    background:var(--cta-green-dark);
    border-color:rgba(11,102,108,.44);
    box-shadow:none;
}

.theme-btn--ghost{
    background:transparent;
    color:var(--text);
    border-color:var(--line);
    box-shadow:none;
}

.btn-header{
    min-height:42px;
    padding:0 18px;
    font-size:14px;
    font-weight:700;
}

.theme-btn i,
.btn-main i,
.docttus-formats__button i,
.btn-header i{
    font-size:14px;
}

.text-center{text-align:center}
.fw-light{font-weight:300}
.mt-40{margin-top:40px}

.theme-hero{padding:var(--theme-page-top-space) 0 48px}
.theme-grid{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:34px;align-items:start}
.theme-copy{padding:12px 0}
.theme-kicker,.theme-section__eyebrow{
    display:inline-flex;
    align-items:center;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(0,209,224,.10);
    border:1px solid rgba(0,209,224,.20);
    color:var(--cyan);
    font-size:.78rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}

[data-theme="light"] .theme-kicker,
[data-theme="light"] .theme-section__eyebrow{
    background:#ffffff;
    border-color:rgba(15,23,42,.08);
}

.theme-copy h1{
    font-size:clamp(2.6rem,5vw,4.6rem);
    line-height:1.02;
    letter-spacing:-.06em;
    margin:18px 0 14px;
    max-width:760px;
}

.theme-copy h1 span{color:var(--cyan)}
.theme-copy p{font-size:1.08rem;color:var(--muted);max-width:760px}
.theme-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}

.theme-rating{
    display:inline-flex;
    align-items:center;
    gap:16px;
    padding:12px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.03);
    border:1px solid var(--line);
    margin-bottom:24px;
}

[data-theme="light"] .theme-rating{
    background:#ffffff;
    box-shadow:0 10px 24px rgba(15,23,42,.05);
}

.theme-avatars{display:flex}
.theme-avatars span{
    width:34px;
    height:34px;
    margin-left:-10px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.68rem;
    font-weight:900;
    color:#001419;
    background:linear-gradient(135deg,#9bf6ff,#00d1e0);
    border:2px solid var(--bg);
}

[data-theme="light"] .theme-avatars span{
    border-color:#ffffff;
}

.theme-avatars span:first-child{margin-left:0}
.theme-rating__text{display:flex;flex-direction:column;line-height:1.2}
.theme-rating__text strong{font-size:.95rem}
.theme-rating__text span{font-size:.82rem;color:var(--muted)}

.theme-metrics{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
    margin-top:28px;
}

.theme-metrics div,
.theme-panel,
.theme-card,
.theme-steps > div,
.theme-fit__item,
.theme-testimonial,
.theme-tool-card,
.theme-newsletter__box{
    background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,0)),var(--surface);
    border:1px solid var(--line);
    border-radius:var(--radius-card-lg);
    box-shadow:var(--shadow);
}

[data-theme="light"] .theme-metrics div,
[data-theme="light"] .theme-panel,
[data-theme="light"] .theme-card,
[data-theme="light"] .theme-steps > div,
[data-theme="light"] .theme-fit__item,
[data-theme="light"] .theme-testimonial,
[data-theme="light"] .theme-tool-card,
[data-theme="light"] .theme-newsletter__box{
    background:#ffffff;
}

.theme-metrics div{padding:18px}
.theme-metrics strong{display:block;font-size:1.1rem;color:var(--cyan);margin-bottom:6px}
.theme-metrics span{display:block;font-size:.92rem;color:var(--muted)}

.theme-panel{
    padding:24px;
    position:sticky;
    top:108px;
}

.theme-panel__badge{
    display:inline-flex;
    margin-bottom:18px;
    padding:8px 10px;
    border-radius:999px;
    background:rgba(0,209,224,.10);
    color:var(--cyan);
    font-size:.72rem;
    font-weight:800;
    text-transform:uppercase;
}

[data-theme="light"] .theme-panel__badge{
    background:#ffffff;
    border:1px solid rgba(15,23,42,.08);
}

.theme-panel__price{
    display:block;
    font-size:2.6rem;
    line-height:1;
    letter-spacing:-.08em;
    margin-bottom:14px;
}

.theme-panel p,.theme-checklist{color:var(--muted)}
.theme-checklist{padding-left:18px;margin:18px 0 22px}

.theme-section{padding:76px 0}
.theme-section h2{
    font-size:clamp(1.9rem,3vw,3rem);
    line-height:1.06;
    letter-spacing:-.04em;
    max-width:780px;
    margin:16px 0 0;
}

.theme-section__intro{
    max-width:760px;
    margin-top:16px;
    color:var(--muted);
    font-size:1.04rem;
}

.theme-section--soft{
    background:rgba(255,255,255,.02);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

[data-theme="light"] .theme-section--soft{background:#f8fafb}

.theme-cards,
.theme-steps,
.theme-tools-grid{
    display:grid;
    gap:20px;
    margin-top:34px;
}

.theme-cards{grid-template-columns:repeat(4,minmax(0,1fr))}
.theme-steps{grid-template-columns:repeat(3,minmax(0,1fr))}
.theme-tools-grid{grid-template-columns:repeat(3,minmax(0,1fr))}

.theme-card,
.theme-steps > div,
.theme-tool-card{padding:24px}
.theme-card i{font-size:1.2rem;color:var(--cyan);margin-bottom:14px}
.theme-card h3{margin:0 0 8px}
.theme-card p,.theme-steps p,.theme-tool-card p{margin:0;color:var(--muted)}
.theme-steps strong,.theme-tool-card strong{display:block;margin-bottom:8px}

.theme-fit{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
    margin-top:34px;
}

.theme-fit__item{padding:24px}
.theme-fit__item strong{
    display:block;
    color:var(--cyan);
    font-size:.82rem;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:8px;
}

.theme-fit__item p{
    margin:0 0 16px;
    color:var(--muted);
}

.theme-tools{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:22px;
}

.theme-tools span{
    display:inline-flex;
    align-items:center;
    padding:12px 14px;
    border-radius:999px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.03);
    color:var(--text);
    font-weight:700;
}

[data-theme="light"] .theme-tools span{
    background:#ffffff;
}

.theme-testimonials__slider{
    position:relative;
    margin-top:34px;
    min-height:320px;
}

.theme-testimonial{
    position:absolute;
    inset:0;
    padding:30px;
    opacity:0;
    visibility:hidden;
    transition:opacity .28s ease,visibility .28s ease;
}

.theme-testimonial.is-active{
    opacity:1;
    visibility:visible;
}

.theme-testimonial__user{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

.theme-testimonial__avatar{
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#9bf6ff,#00d1e0);
    color:#001419;
    font-weight:900;
}

.theme-testimonial__user strong{display:block;font-size:1.08rem}
.theme-testimonial__user span{display:block;color:var(--muted);font-size:.92rem}
.theme-testimonial p{margin:0;color:var(--muted);font-size:1.02rem;max-width:720px}

.theme-testimonial__stats{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    margin-top:26px;
}

.theme-testimonial__stats div{
    padding:18px;
    border-radius:var(--radius-card);
    background:rgba(255,255,255,.03);
    border:1px solid var(--line);
}

[data-theme="light"] .theme-testimonial__stats div{
    background:#ffffff;
}

.theme-testimonial__stats strong{
    display:block;
    font-size:1.7rem;
    line-height:1;
    color:var(--cyan);
    margin-bottom:8px;
}

.theme-testimonial__stats span{display:block;color:var(--muted)}

.theme-testimonials__dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:20px;
}

.theme-testimonials__dots button{
    width:11px;
    height:11px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.22);
    cursor:pointer;
}

[data-theme="light"] .theme-testimonials__dots button{background:rgba(15,23,42,.18)}
.theme-testimonials__dots button.is-active{background:var(--cyan)}

.theme-newsletter{padding:72px 0;border-top:1px solid var(--line)}
.theme-newsletter__box{
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
}

.theme-newsletter__box h3{font-size:clamp(1.6rem,2.5vw,2.2rem);line-height:1.1;margin:0 0 10px}
.theme-newsletter__box p{margin:0;color:var(--muted);max-width:620px}

.theme-newsletter__form{
    display:grid;
    grid-template-columns:minmax(240px,1fr) auto;
    gap:12px;
    width:min(460px,100%);
}

.theme-newsletter__form input{
    width:100%;
    padding:15px 16px;
    border-radius:var(--radius-card-sm);
    border:1px solid var(--line);
    background:rgba(255,255,255,.03);
    color:var(--text);
    outline:none;
}

[data-theme="light"] .theme-newsletter__form input{
    background:#ffffff;
}

.theme-footer{padding:44px 0 34px}
.theme-footer__grid{
    display:grid;
    grid-template-columns:1.4fr repeat(3,minmax(0,1fr));
    gap:24px;
}

.theme-footer__logo{
    font-size:1.4rem;
    font-weight:900;
    margin:0 0 10px;
}

.theme-footer__brand p,
.theme-footer li,
.theme-footer small,
.theme-footer > .theme-container > p,
.theme-footer h4 + p{color:var(--muted)}

.theme-footer h4{margin:0 0 12px;font-size:1rem}
.theme-footer ul{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.theme-footer a:hover{color:var(--cyan)}

.theme-footer__bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid var(--line);
}

.theme-social{display:flex;gap:10px;flex-wrap:wrap}
.theme-social a{
    width:36px;
    height:36px;
    border-radius:50%;
    border:1px solid var(--line);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.74rem;
    font-weight:800;
}

.theme-card,
.theme-steps > div,
.theme-fit__item,
.theme-tool-card,
.theme-testimonial,
.theme-newsletter__box,
.theme-panel{
    transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}

.theme-card:hover,
.theme-steps > div:hover,
.theme-fit__item:hover,
.theme-tool-card:hover{
    transform:translateY(-4px);
    border-color:rgba(0,209,224,.28);
}

