/*
 * Easy Clinicas — renovacao das paginas publicas
 * Escopo: paginas institucionais e comerciais. Nao afeta paineis internos.
 * Versao: 2026-08-24
 */

:root {
    --ec-ink: #17112e;
    --ec-ink-soft: #514b68;
    --ec-purple: #7428e8;
    --ec-purple-deep: #3c0b92;
    --ec-violet: #9b4dff;
    --ec-lilac: #f3edff;
    --ec-mint: #22c99a;
    --ec-cyan: #29b7e8;
    --ec-paper: #ffffff;
    --ec-page: #faf9fe;
    --ec-line: rgba(73, 40, 132, .13);
    --ec-shadow-sm: 0 14px 36px rgba(37, 18, 76, .08);
    --ec-shadow-md: 0 28px 70px rgba(43, 18, 91, .14);
    --ec-radius-sm: 16px;
    --ec-radius: 24px;
    --ec-radius-lg: 34px;
}

body.public-renewed {
    background:
        radial-gradient(circle at 8% 4%, rgba(155, 77, 255, .08), transparent 24rem),
        radial-gradient(circle at 96% 16%, rgba(41, 183, 232, .07), transparent 26rem),
        var(--ec-page);
    color: var(--ec-ink);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: clip;
}

body.public-renewed * {
    box-sizing: border-box;
}

body.public-renewed ::selection {
    color: #fff;
    background: var(--ec-purple);
}

body.public-renewed a,
body.public-renewed button {
    -webkit-tap-highlight-color: transparent;
}

body.public-renewed .container {
    width: min(1180px, calc(100% - 40px));
}

/* Header */
body.public-renewed .site-header {
    top: 14px;
    width: min(1208px, calc(100% - 28px));
    margin-inline: auto;
    border: 1px solid rgba(67, 31, 128, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .86) !important;
    border: 1px solid rgba(67, 31, 128, .1) !important;
    box-shadow: 0 15px 45px rgba(47, 24, 91, .1) !important;
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    overflow: visible !important;
    transition: box-shadow .25s ease, transform .25s ease, background .25s ease;
}

body.public-renewed .site-header.is-scrolled {
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: 0 18px 54px rgba(47, 24, 91, .16) !important;
}

body.public-renewed .nav-shell {
    min-height: 72px;
    padding-inline: 18px;
}

body.public-renewed .brand img {
    width: 176px !important;
    height: 50px !important;
    max-height: 50px !important;
    object-fit: contain;
}

body.public-renewed .site-nav {
    gap: 7px;
}

body.public-renewed .site-nav > a {
    position: relative;
    padding: 10px 13px;
    border-radius: 12px;
    color: #352c4b !important;
    font-size: .88rem;
    font-weight: 750;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

body.public-renewed .site-nav > a:hover,
body.public-renewed .site-nav > a[aria-current="page"] {
    color: var(--ec-purple-deep) !important;
    background: var(--ec-lilac);
    transform: translateY(-1px);
}

body.public-renewed .site-nav > a.nav-trial {
    color: #fff !important;
    background: linear-gradient(135deg, #7c2bea, #a33cff) !important;
    box-shadow: 0 10px 24px rgba(116, 40, 232, .25);
}

body.public-renewed .site-nav > a.nav-trial:hover {
    color: #fff !important;
    background: linear-gradient(135deg, #6620d2, #8c2ee8) !important;
    box-shadow: 0 14px 30px rgba(116, 40, 232, .32);
}

body.public-renewed .nav-toggle {
    border-color: rgba(73, 40, 132, .2) !important;
    background: #f4edff !important;
}

body.public-renewed .nav-toggle span {
    background: #352c4b !important;
}

/* Hero */
body.public-renewed main {
    position: relative;
}

body.public-renewed .hero {
    position: relative;
    min-height: 590px;
    padding: 146px 0 82px;
    background:
        radial-gradient(circle at 70% 20%, rgba(190, 139, 255, .28), transparent 24rem),
        linear-gradient(135deg, #fdfcff 0%, #f4edff 54%, #edf9ff 100%) !important;
    background-size: auto, auto !important;
    border-bottom: 1px solid var(--ec-line);
    overflow: hidden;
    isolation: isolate;
}

body.public-renewed .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .42;
    background-image: radial-gradient(rgba(116, 40, 232, .22) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to right, #000, transparent 78%);
}

body.public-renewed .hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -220px;
    z-index: -1;
    border: 82px solid rgba(116, 40, 232, .08);
    border-radius: 50%;
}

body.public-renewed .hero-inner {
    position: relative;
    z-index: 2;
    gap: clamp(38px, 6vw, 82px);
    align-items: center;
}

body.public-renewed .hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 34px;
    margin-bottom: 20px;
    padding: 7px 13px;
    border: 1px solid rgba(116, 40, 232, .18);
    border-radius: 999px;
    color: var(--ec-purple-deep) !important;
    background: rgba(255, 255, 255, .72) !important;
    box-shadow: 0 8px 24px rgba(83, 36, 158, .08);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

body.public-renewed .hero .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ec-purple), var(--ec-cyan)) !important;
    box-shadow: 0 0 0 5px rgba(116, 40, 232, .08);
}

body.public-renewed .hero h1,
body.public-renewed .hero h2.hero-title {
    max-width: 770px;
    margin: 0 0 22px;
    color: #180a37 !important;
    font-size: clamp(2.65rem, 4.4vw, 4rem);
    line-height: .99;
    letter-spacing: -.055em;
    text-wrap: balance;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none;
}

body.public-renewed .hero .hero-lead {
    max-width: 680px;
    color: #574f6a !important;
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.72;
}

body.public-renewed .hero-actions,
body.public-renewed .cta-actions {
    gap: 12px;
    margin-top: 30px;
}

body.public-renewed .btn {
    min-height: 50px;
    padding: 13px 20px;
    border-radius: 14px;
    font-weight: 850;
    letter-spacing: -.01em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

body.public-renewed .btn:hover {
    transform: translateY(-2px);
}

body.public-renewed .btn-primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #7428e8, #a43fff);
    box-shadow: 0 14px 30px rgba(116, 40, 232, .25);
}

body.public-renewed .btn-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #641fd2, #8f31e9);
    box-shadow: 0 18px 38px rgba(116, 40, 232, .32);
}

body.public-renewed .btn-secondary {
    color: #382654;
    border-color: rgba(72, 39, 126, .2);
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 10px 24px rgba(47, 24, 91, .08);
}

body.public-renewed .btn-secondary:hover {
    color: var(--ec-purple-deep);
    border-color: rgba(116, 40, 232, .32);
    background: #fff;
}

/* Conteudo visual do hero */
body.public-renewed .product-window,
body.public-renewed .hero-window,
body.public-renewed .hero-human-window,
body.public-renewed .agenda-preview-card {
    position: relative;
    border: 1px solid rgba(83, 36, 158, .14);
    border-radius: var(--ec-radius);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--ec-shadow-md);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
    transform-origin: center;
}

body.public-renewed .product-window img,
body.public-renewed .hero-window img,
body.public-renewed .hero-human-window img,
body.public-renewed .agenda-preview-card img {
    display: block;
    width: 100%;
}

body.public-renewed .product-window-bar {
    color: #4b3e60;
    background: #fbf9ff;
    border-bottom: 1px solid var(--ec-line);
}

.public-decor-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.public-decor {
    position: absolute;
    width: var(--decor-size, 94px);
    height: auto;
    filter: drop-shadow(0 18px 26px rgba(72, 23, 147, .2));
    opacity: .96;
    animation: public-float var(--decor-duration, 7s) ease-in-out infinite;
    animation-delay: var(--decor-delay, 0s);
    will-change: transform;
}

.public-decor.decor-a { right: 4%; top: 21%; --decor-size: 108px; --decor-duration: 7.5s; }
.public-decor.decor-b { left: 2.3%; bottom: 8%; --decor-size: 74px; --decor-duration: 8.8s; --decor-delay: -2s; }
.public-decor.decor-c { right: 36%; bottom: 4%; --decor-size: 64px; --decor-duration: 6.8s; --decor-delay: -3.5s; }

@keyframes public-float {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
    50% { transform: translate3d(0, -14px, 0) rotate(3deg); }
}

/* Faixa de confianca */
body.public-renewed .proof {
    position: relative;
    padding: 0;
    border: 0;
    background: transparent;
    transform: translateY(-28px);
    z-index: 3;
}

body.public-renewed .proof-grid {
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--ec-line);
    border-radius: var(--ec-radius);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--ec-shadow-sm);
    backdrop-filter: blur(14px);
}

body.public-renewed .proof-card {
    min-height: 110px;
    padding: 18px;
    border: 0;
    border-radius: 17px;
    background: linear-gradient(145deg, #fff, #fbf8ff);
    box-shadow: none;
}

body.public-renewed .proof-card:hover {
    transform: translateY(-3px);
    background: #f7f1ff;
}

body.public-renewed .proof-icon,
body.public-renewed .proof-icon-visual {
    color: var(--ec-purple);
    background: var(--ec-lilac);
}

/* Secoes e cards */
body.public-renewed .section {
    position: relative;
    padding: clamp(76px, 8vw, 116px) 0;
    background: transparent;
}

body.public-renewed .section-soft {
    background:
        radial-gradient(circle at 12% 22%, rgba(155, 77, 255, .08), transparent 22rem),
        linear-gradient(180deg, #f5f1fb, #faf9fe);
    border-block: 1px solid rgba(73, 40, 132, .08);
}

body.public-renewed .section-dark {
    color: #fff;
    background:
        radial-gradient(circle at 82% 28%, rgba(155, 77, 255, .28), transparent 24rem),
        radial-gradient(circle at 12% 90%, rgba(41, 183, 232, .12), transparent 23rem),
        #1d0c3b;
}

body.public-renewed .section-head {
    max-width: 780px;
    margin-bottom: 42px;
}

body.public-renewed .section-head.center {
    margin-inline: auto;
}

body.public-renewed .section h2,
body.public-renewed .section-title {
    color: #1c1038;
    font-size: clamp(2.05rem, 4vw, 3.65rem);
    line-height: 1.07;
    letter-spacing: -.045em;
    text-wrap: balance;
}

body.public-renewed .section-dark h2,
body.public-renewed .section-dark .section-title {
    color: #fff;
}

body.public-renewed .section-head p,
body.public-renewed .section p {
    color: var(--ec-ink-soft);
    line-height: 1.72;
}

body.public-renewed .section-dark p {
    color: rgba(255, 255, 255, .76);
}

body.public-renewed :is(.card, .resource-card, .segment-card, .plan-card, .comparison-card, .seo-benefit-card, .seo-detail-card, .faq-item) {
    border: 1px solid var(--ec-line);
    border-radius: var(--ec-radius);
    background: rgba(255, 255, 255, .93);
    box-shadow: var(--ec-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

body.public-renewed :is(.card, .resource-card, .segment-card, .plan-card, .comparison-card, .seo-benefit-card, .seo-detail-card):hover {
    transform: translateY(-6px);
    border-color: rgba(116, 40, 232, .25);
    box-shadow: var(--ec-shadow-md);
}

body.public-renewed :is(.resource-grid, .segment-grid, .print-grid, .comparison-grid, .seo-benefit-grid, .seo-detail-grid) {
    gap: 22px;
}

body.public-renewed :is(.resource-media, .segment-media, .print-card-media) {
    background: linear-gradient(145deg, #efe6ff, #eaf8ff);
}

body.public-renewed .plan-included-grid span {
    border-color: rgba(116, 40, 232, .14);
    background: #fff;
    box-shadow: 0 10px 24px rgba(47, 24, 91, .06);
}

/* Planos */
body.public-renewed.planos-page #planos {
    padding-top: clamp(74px, 8vw, 108px);
}

body.public-renewed.planos-page .plan-grid-trio {
    align-items: stretch;
    gap: 22px;
}

body.public-renewed.planos-page .plan-card {
    overflow: hidden;
    border-radius: 28px;
}

body.public-renewed.planos-page .plan-card.featured {
    border: 2px solid var(--ec-purple);
    transform: translateY(-10px);
    box-shadow: 0 30px 72px rgba(93, 34, 195, .2);
}

body.public-renewed.planos-page .plan-card.featured:hover {
    transform: translateY(-15px);
}

body.public-renewed.planos-page .plan-media {
    padding: 18px 18px 0;
    background: linear-gradient(145deg, #f8f4ff, #eff9ff);
}

body.public-renewed.planos-page .plan-media img {
    border-radius: 18px;
}

body.public-renewed.planos-page .price {
    color: var(--ec-purple-deep);
}

body.public-renewed.planos-page .badge {
    box-shadow: none;
}

/* FAQ e textos legais */
body.public-renewed details,
body.public-renewed .faq-item {
    overflow: hidden;
}

body.public-renewed details summary {
    color: #24113f;
    font-weight: 800;
}

body.public-renewed.legal-page .hero {
    min-height: auto;
    padding-bottom: 74px;
}

body.public-renewed.legal-page .legal-grid {
    gap: 28px;
}

body.public-renewed.legal-page .legal-index,
body.public-renewed.legal-page .legal-doc {
    border: 1px solid var(--ec-line);
    border-radius: var(--ec-radius);
    background: #fff;
    box-shadow: var(--ec-shadow-sm);
}

body.public-renewed.legal-page .legal-doc section + section {
    border-color: rgba(73, 40, 132, .1);
}

/* CTA final */
body.public-renewed .cta-band {
    position: relative;
    gap: 34px;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--ec-radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
    box-shadow: 0 30px 72px rgba(0, 0, 0, .2);
    overflow: hidden;
}

body.public-renewed .section:not(.section-dark) .cta-band {
    border-color: rgba(116, 40, 232, .14);
    background: linear-gradient(135deg, #f0e5ff, #ecfaff);
    box-shadow: var(--ec-shadow-md);
}

body.public-renewed .cta-band::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 270px;
    height: 270px;
    border: 48px solid rgba(155, 77, 255, .14);
    border-radius: 50%;
    pointer-events: none;
}

body.public-renewed .cta-band > * {
    position: relative;
    z-index: 1;
}

/* Footer */
body.public-renewed .ec-footer.site-footer {
    color: #fff;
    background:
        radial-gradient(circle at 15% 0%, rgba(155, 77, 255, .22), transparent 25rem),
        #140727;
    border-top: 0;
}

body.public-renewed .ec-footer-shell {
    gap: 42px;
}

body.public-renewed .ec-footer-column h3,
body.public-renewed .ec-footer-brand p {
    color: #fff;
}

body.public-renewed .ec-footer a,
body.public-renewed .ec-footer span {
    color: rgba(255, 255, 255, .7);
}

body.public-renewed .ec-footer a:hover {
    color: #fff;
}

body.public-renewed .ec-footer-bottom {
    border-color: rgba(255, 255, 255, .1);
}

/* Barra curta de conversao no celular */
.public-mobile-cta {
    display: none;
}

/* Revelacao progressiva: conteudo continua visivel sem JS */
body.public-renewed.public-js [data-public-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

body.public-renewed.public-js [data-public-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cadastro do ambiente de teste */
body.trial-public {
    position: relative;
    padding: 38px;
    background:
        radial-gradient(circle at 10% 12%, rgba(155, 77, 255, .22), transparent 24rem),
        radial-gradient(circle at 92% 82%, rgba(41, 183, 232, .16), transparent 28rem),
        #160a2b;
}

body.trial-public::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .2;
    background-image: radial-gradient(rgba(255, 255, 255, .5) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(135deg, #000, transparent 72%);
}

body.trial-public .register-container {
    position: relative;
    max-width: 1180px;
    min-height: min(780px, calc(100vh - 76px));
    border-color: rgba(255, 255, 255, .15);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 36px 90px rgba(0, 0, 0, .36);
}

body.trial-public .register-info {
    position: relative;
    flex: .92;
    padding: clamp(38px, 5vw, 68px);
    border-right: 0;
    background:
        linear-gradient(145deg, rgba(38, 9, 91, .92), rgba(96, 26, 193, .82)),
        url('/assets/images/landing/elements-20260824/37_padrao_de_pontos.png') 90% 12% / 110px auto no-repeat,
        #3c0b92;
    overflow: hidden;
}

body.trial-public .register-info::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: 24px;
    width: 190px;
    height: 190px;
    background: url('/assets/images/landing/elements-20260824/42_anel_orbital_3d.png') center / contain no-repeat;
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, .22));
    opacity: .58;
    animation: public-spin-slow 18s linear infinite;
}

body.trial-public .register-info > * {
    position: relative;
    z-index: 1;
}

body.trial-public .brand-logo {
    width: min(230px, 80%);
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .94);
}

body.trial-public .register-form-area {
    padding: clamp(32px, 5vw, 62px);
    background: #fff;
    color: var(--ec-ink);
}

body.trial-public .form-header h3 {
    color: #1c1038;
    font-size: clamp(1.65rem, 2.6vw, 2.25rem);
    letter-spacing: -.03em;
}

body.trial-public .form-header p,
body.trial-public .register-form-area .text-muted,
body.trial-public .security-badge {
    color: #6c647d !important;
}

body.trial-public .onboarding-steps {
    gap: 8px;
    padding: 7px;
    border-radius: 16px;
    background: #f5f1fb;
}

body.trial-public .onboarding-step-pill {
    border: 0;
    border-radius: 11px;
    color: #756d83;
    background: transparent;
}

body.trial-public .onboarding-step-pill.active {
    color: #fff;
    background: linear-gradient(135deg, #7428e8, #9b4dff);
    box-shadow: 0 10px 22px rgba(116, 40, 232, .2);
}

body.trial-public .form-label {
    color: #342948;
    font-weight: 750;
}

body.trial-public .form-control,
body.trial-public .input-group-text,
body.trial-public .file-preview-box,
body.trial-public .theme-option,
body.trial-public .plan-option,
body.trial-public .need-chip {
    color: #342948;
    border-color: rgba(73, 40, 132, .16);
    background: #fbfaff;
}

body.trial-public .form-control:focus {
    color: #24173a;
    border-color: var(--ec-violet);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(116, 40, 232, .1);
}

body.trial-public .input-group-text {
    color: var(--ec-purple);
}

body.trial-public .theme-option:has(input:checked),
body.trial-public .plan-option:has(input:checked),
body.trial-public .need-chip:has(input:checked) {
    border-color: var(--ec-purple);
    background: #f3ebff;
    box-shadow: 0 10px 28px rgba(116, 40, 232, .1);
}

body.trial-public .btn-neon {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, #7428e8, #a43fff);
    box-shadow: 0 14px 30px rgba(116, 40, 232, .24);
}

body.trial-public .btn-neon:hover {
    color: #fff;
    background: linear-gradient(135deg, #641fd2, #8f31e9);
    transform: translateY(-1px);
}

body.trial-public .btn-outline-light {
    color: #49355f;
    border-color: rgba(73, 40, 132, .22);
}

body.trial-public .btn-outline-light:hover {
    color: var(--ec-purple-deep);
    border-color: var(--ec-purple);
    background: #f5efff;
}

body.trial-public .recommendation-box,
body.trial-public .signup-notice {
    color: #342948;
    border-color: rgba(116, 40, 232, .2);
    background: #f2eaff;
}

body.trial-public .link-secondary {
    color: var(--ec-purple) !important;
}

@keyframes public-spin-slow {
    to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
    body.public-renewed .site-header {
        width: calc(100% - 20px);
        top: 10px;
    }

    body.public-renewed .hero {
        min-height: auto;
        padding-top: 132px;
    }

    body.public-renewed .public-decor.decor-a { right: 1%; opacity: .7; }
    body.public-renewed .public-decor.decor-b { left: .5%; }
    body.public-renewed .public-decor.decor-c { display: none; }

    body.trial-public {
        padding: 24px;
    }
}

@media (max-width: 760px) {
    body.public-renewed {
        padding-bottom: 76px;
    }

    body.public-renewed .container {
        width: min(100% - 28px, 1180px);
    }

    body.public-renewed .site-header {
        border-radius: 16px;
    }

    body.public-renewed .nav-shell {
        min-height: 64px;
        padding-inline: 12px;
    }

    body.public-renewed .brand img {
        width: 148px;
    }

    body.public-renewed .site-nav {
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        padding: 12px;
        border: 1px solid var(--ec-line);
        border-radius: 16px;
        background: rgba(255, 255, 255, .98);
        box-shadow: var(--ec-shadow-md);
    }

    body.public-renewed .site-nav > a {
        width: 100%;
        padding: 12px 14px;
    }

    body.public-renewed .hero {
        padding: 112px 0 66px;
    }

    body.public-renewed .hero h1,
    body.public-renewed .hero h2.hero-title {
        font-size: clamp(2.35rem, 12vw, 3.7rem);
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    body.public-renewed .hero-actions,
    body.public-renewed .cta-actions {
        align-items: stretch;
    }

    body.public-renewed .hero-actions .btn,
    body.public-renewed .cta-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    body.public-renewed .product-window,
    body.public-renewed .hero-window,
    body.public-renewed .hero-human-window,
    body.public-renewed .agenda-preview-card {
        border-radius: 19px;
        transform: none;
    }

    body.public-renewed .proof {
        transform: translateY(-18px);
    }

    body.public-renewed .proof-grid {
        padding: 8px;
        border-radius: 19px;
    }

    body.public-renewed .section {
        padding: 66px 0;
    }

    body.public-renewed.planos-page .plan-card.featured,
    body.public-renewed.planos-page .plan-card.featured:hover {
        transform: none;
    }

    .public-decor.decor-a { top: 17%; right: -28px; --decor-size: 74px; opacity: .5 !important; }
    .public-decor.decor-b { display: none; }

    .public-mobile-cta {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 9999;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 8px;
        padding: 8px;
        border: 1px solid rgba(116, 40, 232, .16);
        border-radius: 17px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 18px 48px rgba(37, 18, 76, .2);
        backdrop-filter: blur(16px);
    }

    .public-mobile-cta a {
        display: flex;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        padding: 10px 15px;
        border-radius: 12px;
        color: #fff;
        background: linear-gradient(135deg, #7428e8, #9b4dff);
        font-size: .86rem;
        font-weight: 850;
        text-decoration: none;
    }

    .public-mobile-cta a:last-child {
        width: 48px;
        color: #fff;
        background: #18a972;
        font-size: 0;
    }

    .public-mobile-cta a:last-child::before {
        content: "WA";
        font-size: .78rem;
        letter-spacing: -.03em;
    }

    body.trial-public {
        display: block;
        min-height: 100vh;
        padding: 12px;
    }

    body.trial-public .register-container {
        width: 100% !important;
        max-width: 550px !important;
        min-height: calc(100vh - 24px);
        margin-inline: auto !important;
        border-radius: 22px;
    }

    body.trial-public .register-form-area {
        padding: 28px 20px;
    }

    body.trial-public .onboarding-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    body.public-renewed *,
    body.trial-public * {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    body.public-renewed.public-js [data-public-reveal] {
        opacity: 1;
        transform: none;
    }
}
