:root {
    --primary: #26b7a7;
    --primary-dark: #159486;
    --bg: #f3f4f6;
    --text: #2b2f36;
    --border: #d9dee5;
    --footer: #252a31;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container { width: min(1180px, 92%); margin: 0 auto; }
.topbar { background: #111; padding: 12px 0; }
.topbar-content { display: flex; justify-content: space-between; align-items: center; }
.brand { color: var(--primary); text-decoration: none; font-weight: 700; font-size: 24px; }

/* Realtime notifications (cliente, colaborador e admin) */
.rt-notif-wrap {
    position: relative;
}

.rt-notif-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(360px, 88vw);
    background: #ffffff;
    border: 1px solid #e7e9dd;
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
    z-index: 1200;
    display: none;
    overflow: hidden;
}

.rt-notif-dropdown.is-open {
    display: block;
}

.rt-notif-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid #eff1e8;
}

.rt-notif-head strong {
    font-size: 13px;
    color: #15182a;
}

.rt-notif-read-all {
    border: none;
    background: #f4f6eb;
    color: #374151;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 11px;
    cursor: pointer;
}

.rt-notif-list {
    max-height: 340px;
    overflow: auto;
    display: grid;
}

.rt-notif-item {
    border: 0;
    border-bottom: 1px solid #eff1e8;
    background: #fff;
    text-align: left;
    padding: 11px 14px;
    cursor: pointer;
}

.rt-notif-item:last-child {
    border-bottom: none;
}

.rt-notif-item:hover {
    background: #fafbf6;
}

.rt-notif-item h4 {
    margin: 0 0 4px;
    font-size: 13px;
    color: #111827;
}

.rt-notif-item p {
    margin: 0;
    font-size: 12px;
    color: #4b5563;
}

.rt-notif-item small {
    display: block;
    margin-top: 7px;
    font-size: 10px;
    color: #7b8190;
}

.rt-notif-empty {
    padding: 18px 14px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

.rt-notif-foot {
    border-top: 1px solid #eff1e8;
    padding: 10px 14px;
    background: #fafbf8;
}

.rt-notif-foot small {
    color: #79808d;
    font-size: 10px;
}

.rt-notif-toast-host {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1400;
    display: grid;
    gap: 8px;
    width: min(340px, calc(100vw - 24px));
}

.rt-notif-toast {
    border: 1px solid #d9e3c3;
    background: #fbfff3;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
    text-align: left;
    padding: 10px 12px;
    cursor: pointer;
}

.rt-notif-toast strong {
    display: block;
    font-size: 13px;
    color: #1f2937;
    margin-bottom: 3px;
}

.rt-notif-toast span {
    font-size: 12px;
    color: #4b5563;
}

    .site-header {
        background: #fff;
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        z-index: 40;
    }

    .header-inner {
        min-height: 74px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .logo {
        text-decoration: none;
        font-size: 34px;
        line-height: 1;
        font-weight: 800;
        color: var(--primary);
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .main-nav a {
        font-size: 14px;
        color: #3a404a;
        text-decoration: none;
        font-weight: 600;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .login-link {
        text-decoration: none;
        color: #2f3440;
        font-weight: 700;
    }

    .user-chip {
        background: #e8f9f7;
        color: #136f65;
        border: 1px solid #b9ede7;
        border-radius: 999px;
        padding: 8px 12px;
        font-size: 13px;
        font-weight: 700;
    }

    .main-content { padding: 24px 0 50px; }

    .landing-hero {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        column-gap: 36px;
        row-gap: 22px;
        margin-bottom: 28px;
    }

    .hero-copy,
    .hero-photo {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 24px;
    }

    .hero-copy h1 {
        margin-top: 0;
        font-size: 40px;
        line-height: 1.15;
    }

    .hero-copy ul {
        margin: 0;
        padding-left: 18px;
        color: #4f5560;
    }

    .hero-copy li { margin-bottom: 8px; }

    .hero-photo {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 320px;
        background: linear-gradient(145deg, #edf9f7 0%, #e4f4ef 100%);
    }

    .hero-placeholder {
        width: 100%;
        height: 100%;
        min-height: 240px;
        border-radius: 12px;
        border: 2px dashed #8fded5;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2e8f84;
        font-size: 22px;
        font-weight: 700;
    }

    .section-block { margin-bottom: 30px; }
    .section-title {
        margin: 0 0 16px;
        font-size: 28px;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }

    .service-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 12px;
        display: grid;
        gap: 10px;
    }

    .service-image {
        height: 94px;
        border-radius: 10px;
        background: linear-gradient(130deg, #d5f4f0 0%, #b9ebe3 100%);
        background-size: cover;
        background-position: center;
    }

    .service-card h3 {
        margin: 0;
        font-size: 15px;
    }

    .service-card p {
        margin: 0;
        color: #5d6470;
        font-size: 13px;
    }

    .how-it-works,
    .plans-block,
    .benefits-block {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 22px;
    }

    .steps-grid,
    .plans-grid,
    .benefits-grid {
        display: grid;
        gap: 12px;
    }

    .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .plans-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .benefits-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .steps-grid article,
    .plan-card,
    .benefit-item {
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 14px;
        position: relative;
        background: #f8fafc;
    }

    .plan-card {
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

    .plan-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.9));
        pointer-events: none;
    }

    .plan-card > * { position: relative; z-index: 1; }

    .steps-grid span {
        color: var(--primary-dark);
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
    }

    .steps-grid h3,
    .plan-card h3,
    .benefit-item h3 {
        margin: 8px 0;
        font-size: 16px;
    }

    .steps-grid p,
    .plan-card p,
    .benefit-item p {
        margin: 0;
        color: #5d6470;
        font-size: 13px;
    }

    /* ── PLANS V2 ─────────────────────────────────────── */
    .plans-subtitle {
        text-align: center;
        color: #5d6470;
        font-size: 15px;
        margin: -10px 0 24px;
    }

    .plans-grid-v2 {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
        align-items: stretch;
    grid-auto-rows: 1fr;
    }

    .plan-card-v2 {
        background: #fff;
        border: 2px solid var(--border);
        border-radius: 18px;
        padding: 28px 22px 24px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
        transition: box-shadow .2s, border-color .2s;
    }

    .plan-card-v2:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,.09);
        border-color: #f1dd52;
    }

    .plan-card-v2--featured {
        border-color: #f1dd52;
        box-shadow: 0 8px 32px rgba(241,221,82,.25);
        background: linear-gradient(160deg, #fffdf0 0%, #fff 60%);
    }

    .plan-badge {
        display: inline-block;
        background: #f1dd52;
        color: #3b4112;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .04em;
        text-transform: uppercase;
        border-radius: 20px;
        padding: 4px 12px;
        align-self: flex-start;
    }

    .plan-header { display: flex; flex-direction: column; gap: 6px; }

    .plan-name {
        font-size: 17px;
        font-weight: 800;
        color: var(--text);
        margin: 0;
    }

    .plan-desc {
        font-size: 13px;
        color: #5d6470;
        margin: 0;
        line-height: 1.45;
    }

    .plan-price {
        display: flex;
        align-items: baseline;
        gap: 4px;
        margin-top: 6px;
    }

    .plan-price-value {
        font-size: 26px;
        font-weight: 900;
        color: #3b4112;
        letter-spacing: -.02em;
    }

    .plan-price-freq {
        font-size: 13px;
        color: #5d6470;
    }

    .plan-features {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: 1;
    }

    .plan-features li {
        font-size: 13px;
        color: var(--text);
        padding-left: 22px;
        position: relative;
        line-height: 1.4;
    }

    .plan-features li::before {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 14px;
        font-weight: 700;
    }

    .plan-features li.feat-ok { color: var(--text); }
    .plan-features li.feat-ok::before { content: '✓'; color: #c5a21a; }

    .plan-features li.feat-no { color: #adb5bd; }
    .plan-features li.feat-no::before { content: '✗'; color: #d9dee5; }

    .plan-btn {
        display: block;
        text-align: center;
        border: 2px solid #f1dd52;
        color: #3b4112;
        background: transparent;
        border-radius: 10px;
        padding: 11px 0;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: background .15s, color .15s;
        margin-top: auto;
    }

    .plan-btn:hover {
        background: #f1dd52;
        color: #3b4112;
    }

    .plan-btn--featured {
        background: #f1dd52;
        color: #3b4112;
    }

    .plan-btn--featured:hover {
        background: #d7bf44;
        border-color: #d7bf44;
    }

    @media (max-width: 900px) {
        .plans-grid-v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 540px) {
        .plans-grid-v2 { grid-template-columns: 1fr; }
    }
    /* ── /PLANS V2 ──────────────────────────────────────── */

    .auth-shell {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px 16px 60px;
        min-height: calc(100vh - 74px - 200px);
    }

    .auth-card {
        width: 480px;
        max-width: 100%;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    }

    .auth-card.register-card {
        width: 620px;
    }

    .auth-card-header {
        text-align: center;
        font-weight: 800;
        font-size: 22px;
        padding: 28px 24px 0;
        border-bottom: none;
        color: var(--text);
    }

    .auth-card-body {
        width: 100%;
        max-width: 100%;
        padding: 24px 32px 32px;
    }

/* ========== ADMIN PANEL �?" structure (colors via vars) ========== */
.admin-brand {
    color: var(--admin-primary);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.admin-sidebar nav {
    display: grid;
    gap: 4px;
}

.admin-sidebar a {
    color: var(--admin-muted);
    text-decoration: none;
    padding: 9px 11px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.admin-sidebar a:hover {
    background: var(--admin-hover);
    color: var(--admin-text);
}

.admin-sidebar a.is-active {
    background: var(--admin-primary);
    color: var(--admin-primary-text);
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
}

.admin-topbar h1 {
    margin: 0;
    color: var(--admin-text);
    font-size: 24px;
}

.admin-topbar p {
    margin: 4px 0 0;
    color: var(--admin-muted);
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-notify {
    min-width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--admin-hover);
    color: var(--admin-text);
    font-weight: 700;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-user .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--admin-primary);
    color: var(--admin-primary-text);
    font-weight: 800;
}

.admin-user strong {
    color: var(--admin-text);
}

.admin-user small {
    display: block;
    color: var(--admin-muted);
}

.admin-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}

.kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kpi-card {
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: 14px;
    box-shadow: 0 4px 14px var(--admin-shadow);
    padding: 14px;
}

.kpi-card small {
    display: block;
    color: var(--admin-muted);
    margin-bottom: 8px;
}

.kpi-card strong {
    color: var(--admin-text);
    font-size: 24px;
    font-weight: 800;
}

.charts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chart-canvas {
    width: 100% !important;
    max-width: 100%;
    height: 240px !important;
}

.module-card {
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: 18px;
    box-shadow: 0 4px 20px var(--admin-shadow);
    padding: 24px 28px;
}

.module-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1.5px solid var(--admin-border);
}

.module-head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--admin-text);
    letter-spacing: -.02em;
}

.module-head span {
    font-size: 12px;
    font-weight: 700;
    color: #7a8462;
    background: #f3f4ec;
    border: 1.5px solid #e9eadf;
    border-radius: 999px;
    padding: 4px 12px;
}

.module-card .table-wrap {
    border-radius: 10px;
    border: 1px solid var(--admin-border);
    overflow: auto;
}

.module-card table {
    width: 100%;
    border-collapse: collapse;
}

.module-card th,
.module-card td {
    padding: 9px;
    font-size: 13px;
    border-bottom: 1px solid var(--admin-border);
    color: var(--admin-text);
    white-space: nowrap;
}

.module-card th {
    background: var(--admin-th-bg);
    color: var(--admin-text);
    text-align: left;
}

.module-card table tr:nth-child(even) {
    background: var(--admin-stripe);
}

.module-card table tr:hover {
    background: var(--admin-row-hover);
}

.toolbar-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    align-items: flex-end;
}

.toolbar-form input,
.toolbar-form select,
.toolbar-form button,
.module-card input,
.module-card select {
    background: var(--admin-input-bg);
    border: 1px solid var(--admin-border);
    color: var(--admin-text);
    border-radius: 10px;
    padding: 8px 10px;
    width: auto;
    flex: 0 1 auto;
    min-width: 0;
}

.toolbar-form input::placeholder,
.module-card input::placeholder {
    color: var(--admin-muted);
}

.admin-main .btn {
    background: var(--admin-surface);
    border-color: var(--admin-border);
    color: var(--admin-text);
}

.admin-main .btn.primary,
.admin-main .btn.tiny:hover {
    background: var(--admin-primary);
    border-color: var(--admin-primary);
    color: var(--admin-primary-text);
}

.inline-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--admin-text);
}

.mini-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.mini-list li {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--admin-border);
    border-radius: 9px;
    background: var(--admin-surface);
    padding: 8px 10px;
    gap: 10px;
}

.mini-list li span {
    color: var(--admin-muted);
    font-size: 12px;
}

.chart-wrap {
    position: relative;
    width: 100%;
    height: 260px;
}

.chart-canvas {
    width: 100%;
    height: 100%;
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: 10px;
    display: block;
}

.toast {
    margin-bottom: 12px;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
}

.toast-success {
    background: var(--admin-toast-ok-bg);
    border: 1px solid var(--admin-toast-ok-border);
    color: var(--admin-toast-ok-text);
}

.toast-error {
    background: var(--admin-toast-err-bg);
    border: 1px solid var(--admin-toast-err-border);
    color: var(--admin-toast-err-text);
}

.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* old admin responsive handled in new block below */

.auth-card-body {
        padding: 24px 16px 28px;
    }

    .auth-tabs {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid #eef0f3;
    }

    .auth-tabs strong {
        font-size: 15px;
        color: var(--text);
    }

    .link-button {
        border: 0;
        background: none;
        color: var(--primary);
        font-weight: 600;
        cursor: pointer;
        font-size: 14px;
        transition: color 0.2s;
    }

    .link-button:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

    .full { width: 100%; }
    .outline {
        border-color: #7acfc4;
        color: #1e6f66;
        text-align: center;
    }

    .separator {
        text-align: center;
        color: #8c929d;
        margin: 8px 0 14px;
    }

    .form-heading {
        margin: 2px 0 2px;
        font-size: 13px;
        font-weight: 700;
        color: #4d5460;
    }

    .check-row {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        font-size: 12px;
        color: #59616c;
    }

    .check-row input { width: auto; margin-top: 3px; }

    .auth-inline-error {
        margin: 0;
        padding: 8px 10px;
        border-radius: 8px;
        border: 1px solid #f3c3c3;
        background: #fff1f1;
        color: #9b2c2c;
        font-size: 13px;
        font-weight: 600;
    }

    .modal-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(21, 24, 29, 0.55);
        z-index: 70;
        display: grid;
        place-items: center;
        padding: 20px;
    }

    .modal-backdrop[hidden] {
        display: none !important;
    }

    .register-modal {
        width: 420px;
        max-width: 100%;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
        padding: 18px;
        position: relative;
    }

    .modal-close {
        position: absolute;
        top: 8px;
        right: 10px;
        border: 0;
        background: none;
        font-size: 30px;
        line-height: 1;
        color: #8c929d;
        cursor: pointer;
    }

    .register-modal h2 {
        margin: 2px 0 6px;
        font-size: 28px;
        line-height: 1.1;
    }

    .register-modal p {
        margin: 0 0 10px;
        color: #5e6672;
        font-size: 13px;
    }

    .register-option {
        display: grid;
        gap: 4px;
        text-decoration: none;
        color: #2d3440;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 12px;
        margin-bottom: 10px;
    }

    .register-option:hover {
        border-color: #9fded6;
        background: #f6fefd;
    }

    .register-option span {
        color: #5f6670;
        font-size: 13px;
    }

.btn {
    border: 1px solid #bcc4cf;
    background: #fff;
    color: #2b313b;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn.primary {
    background: var(--primary);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn.primary:hover {
    background: var(--primary-dark);
}
.btn.tiny { padding: 6px 10px; border-radius: 8px; font-size: 12px; }

.btn:disabled,
.btn[aria-disabled='true'] {
    opacity: 0.55;
    cursor: not-allowed;
    filter: grayscale(0.08);
}

    .hero-actions { display: flex; gap: 10px; margin-top: 18px; }
.grid-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.grid-cards.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cards.four-cols { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 14px;
}
.price { font-weight: 700; color: #1c5d00; }

.form-grid { display: grid; gap: 14px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
input, select, textarea {
    width: 100%;
    border: 1px solid #cfd6df;
    border-radius: 10px;
    padding: 12px 14px;
    background: #f9fafb;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(38, 183, 167, 0.15);
    background: #fff;
}

input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* Password toggle wrapper */
.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #7c8594;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.password-toggle:hover {
    color: var(--primary-dark);
    background: rgba(38, 183, 167, 0.08);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.field-invalid {
    border-color: #d9534f !important;
    box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12);
}

.field-valid {
    border-color: #22a06b !important;
    box-shadow: 0 0 0 3px rgba(34, 160, 107, 0.12);
}
.panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.align-end { display: flex; align-items: end; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { border-bottom: 1px solid #edf2ec; padding: 10px; text-align: left; }
.inline { display: inline-flex; align-items: center; gap: 8px; }

.dashboard-hero {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.dashboard-hero h1 {
    margin: 0 0 6px;
    font-size: 28px;
}

.dashboard-hero p {
    margin: 0;
    color: #5b6370;
}

.admin-hero {
    margin-bottom: 16px;
}

.stats-row {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.stats-row.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats-row.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
}

.stat-card small {
    display: block;
    color: #69707c;
    margin-bottom: 6px;
}

.stat-card strong {
    font-size: 28px;
    line-height: 1;
}

.section-elevated {
    box-shadow: 0 2px 8px rgba(18, 28, 45, 0.03);
}

.dashboard-grid-gap {
    gap: 12px;
}

.wizard-stepper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 8px;
}

.wizard-step {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fbfd;
}

.wizard-step span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid #c2c9d4;
    font-size: 12px;
    font-weight: 700;
}

.wizard-step p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
}

.wizard-step.is-active {
    border-color: #95ded6;
    background: #eefaf8;
}

.wizard-step.is-active span {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.wizard-inline-error {
    margin: 2px 0 4px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #f3c3c3;
    background: #fff1f1;
    color: #9b2c2c;
    font-size: 13px;
    font-weight: 600;
}

.auth-submit-hint {
    margin-top: -2px;
    font-size: 12px;
    display: block;
}

.auth-submit-hint.is-pending {
    color: #8a5b11;
}

.auth-submit-hint.is-ready {
    color: #1f8c57;
}

.wizard-panel {
    display: none;
    gap: 10px;
}

.wizard-panel.is-active {
    display: grid;
}

.wizard-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.wizard-actions.between {
    justify-content: space-between;
}

.wizard-summary {
    border: 1px dashed #b6d8d4;
    border-radius: 8px;
    padding: 10px;
    background: #f4fbfa;
}

.wizard-summary p,
.wizard-summary small {
    margin: 0;
    color: #4f5866;
}

.wizard-summary-list {
    margin: 10px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.wizard-summary-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px dashed #d2e8e4;
    padding-bottom: 4px;
    font-size: 13px;
}

.wizard-summary-list li span {
    color: #5a6370;
}

.cupom-badge {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 3px 8px;
    border: 1px solid transparent;
}

.cupom-badge.is-neutral {
    background: #eef1f5;
    border-color: #d8dee7;
    color: #5e6674;
}

.cupom-badge.is-valid {
    background: #e8fbf3;
    border-color: #a8e9c9;
    color: #1f8c57;
}

.cupom-badge.is-warning {
    background: #fff7e8;
    border-color: #f3d38b;
    color: #9b6c16;
}

.wizard-summary small {
    display: block;
    margin-top: 4px;
}

.alert { padding: 12px 16px; border-radius: 10px; font-size: 14px; font-weight: 500; }\n.alert.error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }\n.alert.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.notification-item { border-bottom: 1px dashed var(--border); padding: 8px 0; }

.admin-layout { display: grid; grid-template-columns: 220px 1fr; gap: 16px; }
.sidebar {
    background: #24303a;
    color: #fff;
    border-radius: 14px;
    padding: 16px;
    height: fit-content;
    position: sticky;
    top: 16px;
}
.sidebar h2 { color: var(--primary); margin-top: 0; }
.sidebar a { color: #fff; text-decoration: none; display: block; margin-bottom: 10px; }

main.main-content {
    flex: 1 0 auto;
}

.site-footer { margin-top: auto; }

.trust-strip {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-grid small {
    display: block;
    color: #68707d;
    font-size: 12px;
}

.trust-grid p {
    margin: 2px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.footer-main {
    background: var(--footer);
    color: #d7dbe3;
    padding: 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.footer-grid h4 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 13px;
}

.footer-grid a,
.footer-grid p {
    display: block;
    margin: 0 0 6px;
    color: #c1c7d2;
    text-decoration: none;
    font-size: 13px;
}

@media (max-width: 980px) {
    .landing-hero,
    .service-grid,
    .steps-grid,
    .plans-grid,
    .benefits-grid,
    .stats-row.three,
    .stats-row.four,
    .trust-grid,
    .footer-grid,
    .grid-cards,
    .grid-cards.two-cols,
    .grid-cards.four-cols,
    .grid-4,
    .wizard-stepper { grid-template-columns: 1fr; }

    .header-inner {
        min-height: auto;
        padding: 12px 0;
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
    }

    .admin-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }

    .auth-card-body { width: 100%; }
}

/* ========== ADMIN THEME VARIABLES ========== */
/* Default = Light Mode */
.admin-body {
    --admin-bg: #f5f7fa;
    --admin-surface: #ffffff;
    --admin-panel: #f0f2f6;
    --admin-border: #dfe3ea;
    --admin-text: #1a2332;
    --admin-muted: #5b6a7d;
    --admin-primary: #2d8a4e;
    --admin-primary-text: #ffffff;
    --admin-hover: #e8ecf1;
    --admin-input-bg: #ffffff;
    --admin-th-bg: #f0f2f5;
    --admin-shadow: rgba(18, 32, 56, 0.06);
    --admin-stripe: rgba(18, 32, 56, 0.025);
    --admin-row-hover: rgba(18, 32, 56, 0.05);
    --admin-toast-ok-bg: #ecfaf0;
    --admin-toast-ok-border: #b5e4c4;
    --admin-toast-ok-text: #1a6e3e;
    --admin-toast-err-bg: #fef0f0;
    --admin-toast-err-border: #f3c3c3;
    --admin-toast-err-text: #9b2c2c;
    background: var(--admin-bg);
    overflow-x: hidden;
}

/* Dark Mode */
.admin-body.theme-dark {
    --admin-bg: #0b1220;
    --admin-surface: #131c2b;
    --admin-panel: #0a111e;
    --admin-border: #1f2e44;
    --admin-text: #e8edf6;
    --admin-muted: #8b9bb2;
    --admin-primary: #a4f000;
    --admin-primary-text: #132000;
    --admin-hover: #1b2836;
    --admin-input-bg: #18222f;
    --admin-th-bg: #1a2431;
    --admin-shadow: rgba(0, 0, 0, 0.24);
    --admin-stripe: rgba(255, 255, 255, 0.02);
    --admin-row-hover: rgba(255, 255, 255, 0.04);
    --admin-toast-ok-bg: #1e3a24;
    --admin-toast-ok-border: #285f37;
    --admin-toast-ok-text: #b3ffca;
    --admin-toast-err-bg: #3d1f22;
    --admin-toast-err-border: #6e3036;
    --admin-toast-err-text: #ffd1d7;
}

.admin-body .main-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.admin-shell {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-left: 260px;
    display: block;
    background: var(--admin-bg);
    color: var(--admin-text);
    box-sizing: border-box;
    overflow-x: hidden;
}

.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    z-index: 60;
    background: var(--admin-panel);
    border-right: 1px solid var(--admin-border);
    padding: 12px 14px 16px;
    transition: width 0.25s ease, transform 0.25s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.admin-shell.is-collapsed {
    padding-left: 84px;
}

.admin-shell.is-collapsed .admin-sidebar {
    width: 84px;
}

.admin-shell.is-collapsed .admin-sidebar .admin-brand {
    font-size: 0;
}

.admin-shell.is-collapsed .admin-sidebar .admin-brand::before {
    content: 'VA';
    font-size: 22px;
}

.admin-shell.is-collapsed .admin-sidebar a {
    text-align: center;
    font-size: 0;
}

.admin-shell.is-collapsed .admin-sidebar a::first-letter {
    font-size: 13px;
}

.admin-main {
    min-height: 100vh;
    padding: 20px;
    background: var(--admin-bg);
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
}

.module-card .table-wrap,
.table-wrap {
    max-width: 100%;
}

.kpi-card,
.module-card,
.admin-sidebar a,
.admin-main .btn {
    transition: all 0.2s ease;
}

.kpi-card:hover,
.module-card:hover {
    border-color: var(--admin-primary);
    transform: translateY(-1px);
}

.admin-main .btn:hover {
    border-color: var(--admin-primary);
}

.admin-sidebar-toggle {
    margin-bottom: 8px;
}

.pagination-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* Admin form grid for create/edit forms */
.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.admin-form-grid label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--admin-muted);
}

.admin-form-grid label input,
.admin-form-grid label select,
.admin-form-grid label textarea {
    width: 100%;
    background: var(--admin-input-bg);
    border: 1px solid var(--admin-border);
    color: var(--admin-text);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
}

.admin-form-grid .full-width {
    grid-column: 1 / -1;
}

.admin-form-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

/* Servicos grid */
.servicos-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.servico-item {
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: 12px;
    padding: 12px;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
}

.servico-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0f4ff, #dfe6ff);
    background-size: cover;
    background-position: center;
    border: 1px dashed var(--admin-border);
}

.servico-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.servico-meta .muted {
    color: var(--admin-muted);
    font-size: 12px;
}

.servico-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.servico-actions .inline {
    display: inline-flex;
}

.servico-actions .servico-status {
    display: inline-flex;
}

.servico-item h4 {
    margin: 0;
    font-size: 16px;
    color: var(--admin-text);
}

.servico-item p {
    margin: 0;
    font-size: 13px;
    color: var(--admin-muted);
}

.servico-item .servico-price {
    font-weight: 800;
    font-size: 18px;
    color: var(--admin-primary);
}

.servico-item .servico-status {
    font-size: 12px;
}

@media (max-width: 768px) {
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .admin-shell,
    .admin-shell.is-collapsed {
        padding-left: 0;
    }

    .admin-sidebar {
        transform: translateX(-100%);
        width: 260px;
    }

    .admin-shell.is-open-mobile .admin-sidebar {
        transform: translateX(0);
    }

    .admin-main {
        height: auto;
        min-height: 100vh;
    }
}

/* ================================================================
   CLIENTE "MEU LAR" �?" Layout & Theme
   ================================================================ */

.cliente-body {
    --cl-bg: #f8f8f2;
    --cl-surface: #ffffff;
    --cl-panel: #3b4112;
    --cl-border: #e9eadf;
    --cl-text: #2f3411;
    --cl-muted: #70785f;
    --cl-primary: #f1dd52;
    --cl-primary-dark: #d9cc24;
    --cl-primary-text: #3b4112;
    --cl-hover: rgba(242, 232, 42, 0.16);
    --cl-shadow: rgba(59, 65, 18, 0.10);
    --cl-stripe: rgba(59, 65, 18, 0.035);
    background: var(--cl-bg);
    overflow-x: hidden;
}

.cliente-body .main-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Shell */
.cliente-shell {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-left: 260px;
    display: block;
    box-sizing: border-box;
}

/* Sidebar */
.cliente-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    z-index: 60;
    background: linear-gradient(180deg, #3b4112 0%, #4d5521 100%);
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 18px 14px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.cliente-brand {
    color: var(--cl-primary);
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    margin: 4px 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cliente-brand .brand-word {
    text-transform: lowercase;
}

.cliente-brand .brand-mark {
    font-size: 28px;
    opacity: 0.9;
}

.cliente-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    justify-content: flex-start;
}

.cliente-sidebar nav a {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0;
    transition: background 0.2s, color 0.2s;
}

.cliente-sidebar nav a:hover {
    background: rgba(242, 232, 42, 0.16);
    color: #ffffff;
}

.cliente-sidebar nav a.is-active {
    background: linear-gradient(90deg, rgba(242, 232, 42, 0.34), rgba(242, 232, 42, 0.92));
    color: var(--cl-primary-text);
}

.cliente-sidebar nav a .menu-icon {
    display: none;
}

.cliente-sidebar nav a .menu-label {
    flex: 1;
}

.badge-count {
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
    min-width: 18px;
    text-align: center;
}

.cliente-sidebar .sidebar-user {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 12px;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: center;
}

.cliente-sidebar .sidebar-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--cl-primary);
    color: var(--cl-primary-text);
    font-weight: 800;
    font-size: 16px;
}

.cliente-sidebar .sidebar-user-meta {
    display: grid;
    min-width: 0;
}

.cliente-sidebar .sidebar-user strong {
    color: #e8edf6;
    font-size: 13px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cliente-sidebar .sidebar-user small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-logout {
    margin-top: 10px;
}

.btn-logout {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--cl-primary-text);
    padding: 8px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255,255,255,0.32);
}

/* Cliente Main */
.cliente-main {
    min-height: 100vh;
    padding: 20px 22px;
    box-sizing: border-box;
}

.cliente-menu-toggle {
    display: none;
    background: #ffffff;
    color: var(--cl-primary-text);
    border: 1px solid var(--cl-border);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    padding: 0;
    font-weight: 700;
    cursor: pointer;
    margin: 0;
}

/* Topbar */
.cliente-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(248, 248, 242, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--cl-border);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: 0 10px 26px var(--cl-shadow);
}

.cliente-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cliente-topbar h1 {
    margin: 0;
    font-size: 22px;
    color: var(--cl-text);
}

.cliente-topbar p {
    margin: 4px 0 0;
    color: var(--cl-muted);
    font-size: 14px;
}

.cliente-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notif-bell {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--cl-border);
    background: #ffffff;
    display: grid;
    place-items: center;
    font-size: 16px;
    text-decoration: none;
}

.topbar-divider {
    width: 1px;
    height: 24px;
    background: var(--cl-border);
}

.cliente-topbar-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cliente-topbar-user .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    background: var(--cl-primary);
    color: var(--cl-primary-text);
}

.cliente-topbar-user strong {
    font-size: 14px;
    color: var(--cl-text);
}

.notif-bell .badge-count {
    position: absolute;
    top: -6px;
    right: -10px;
}

/* Grids */
.cliente-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
}

.cliente-grid.kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cliente-grid.two-cols-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Reuse existing module-card, kpi-card styles with cliente overrides */
.cliente-body .module-card {
    background: var(--cl-surface);
    border: 1px solid var(--cl-border);
    border-radius: 14px;
    box-shadow: 0 4px 14px var(--cl-shadow);
    padding: 16px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.cliente-body .module-card:hover {
    border-color: var(--cl-primary-dark);
}

.cliente-body .module-card h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: var(--cl-text);
}

.cliente-body .kpi-card {
    background: var(--cl-surface);
    border: 1px solid var(--cl-border);
    border-radius: 14px;
    box-shadow: 0 4px 14px var(--cl-shadow);
    padding: 16px;
    transition: border-color 0.2s, transform 0.2s;
}

.cliente-body .kpi-card:hover {
    border-color: var(--cl-primary);
    transform: translateY(-2px);
}

.cliente-body .kpi-card small {
    display: block;
    color: var(--cl-muted);
    margin-bottom: 6px;
    font-size: 13px;
}

.cliente-body .kpi-card strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--cl-text);
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.status-pendente { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.status-aceito { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }
.status-concluido { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.status-cancelado { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

.freq-badge {
    background: #e0e7ff;
    color: #3730a3;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

/* Next service card */
.next-service-card p { margin: 4px 0; font-size: 14px; }

.poll-label {
    display: block;
    margin-top: 6px;
    color: var(--cl-muted);
    font-size: 11px;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 24px 16px;
    color: var(--cl-muted);
}

.empty-state p {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
}

.empty-state small {
    font-size: 13px;
}

/* Favoritos */
.fav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--cl-border);
    font-size: 14px;
}

.fav-item:last-child { border-bottom: none; }

/* Actions cell */
.actions-cell {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

/* Modals */
.cliente-modal {
    width: 480px;
    max-width: 95vw;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
    padding: 22px;
    position: relative;
}

.cliente-modal.modal-wide {
    width: 640px;
}

.cliente-modal h2 {
    margin: 0 0 10px;
    font-size: 20px;
}

.cliente-modal textarea,
.cliente-modal input,
.cliente-modal select {
    margin-bottom: 10px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px;
}

/* Star rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    margin: 8px 0;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 28px;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.15s;
    width: auto;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f59e0b;
}

/* Info grid (perfil) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.info-grid div {
    background: var(--cl-bg);
    border: 1px solid var(--cl-border);
    border-radius: 10px;
    padding: 12px;
}

.info-grid small {
    display: block;
    color: var(--cl-muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.info-grid strong {
    font-size: 15px;
}

/* Enderecos */
.enderecos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.endereco-card {
    background: var(--cl-bg);
    border: 1px solid var(--cl-border);
    border-radius: 12px;
    padding: 14px;
    position: relative;
}

.endereco-card.is-principal {
    border-color: var(--cl-primary);
    background: #f7fee7;
}

.principal-badge {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #65a30d;
}

.endereco-card p {
    margin: 2px 0;
    font-size: 13px;
}

.endereco-actions {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }

/* Notificações */
.notif-list {
    display: grid;
    gap: 8px;
}

.notif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--cl-border);
    border-radius: 10px;
    transition: background 0.2s;
}

.notif-item.is-unread {
    background: #eff6ff;
    border-color: #93c5fd;
}

.notif-content strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.notif-content p {
    margin: 0;
    font-size: 13px;
    color: var(--cl-muted);
}

.notif-content small {
    font-size: 11px;
    color: #9ca3af;
}

.notif-read-tag {
    font-size: 12px;
    color: #6ee7b7;
    font-weight: 600;
    white-space: nowrap;
}

/* Toast auto-dismiss */
.toast[data-toast] {
    animation: toastSlide 0.3s ease, toastFade 0.5s ease 4s forwards;
}

@keyframes toastSlide {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes toastFade {
    to { opacity: 0; height: 0; padding: 0; margin: 0; overflow: hidden; }
}

/* Responsivo cliente */
@media (max-width: 1100px) {
    .cliente-shell {
        padding-left: 0;
    }

    .cliente-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .cliente-shell.is-open-mobile .cliente-sidebar {
        transform: translateX(0);
    }

    .cliente-menu-toggle {
        display: block;
    }

    .cliente-grid.kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cliente-grid.kpi-grid,
    .cliente-grid.two-cols-grid,
    .info-grid,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .enderecos-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ADMIN �?" Extended UI Components
   =================================== */

/* Badge system */
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}
.badge-success { background: #d4edda; color: #155724; }
.badge-danger  { background: #f8d7da; color: #721c24; }
.badge-warning { background: #fff3cd; color: #856404; }
.badge-info    { background: #d1ecf1; color: #0c5460; }
.badge-secondary { background: #e2e3e5; color: #383d41; }

[data-admin-theme="dark"] .badge-success { background: #1a3a2a; color: #7ce8a0; }
[data-admin-theme="dark"] .badge-danger  { background: #3a1a1a; color: #e87c7c; }
[data-admin-theme="dark"] .badge-warning { background: #3a3518; color: #e8d67c; }
[data-admin-theme="dark"] .badge-info    { background: #183a3a; color: #7cd6e8; }
[data-admin-theme="dark"] .badge-secondary { background: #2a2a2a; color: #b0b0b0; }

/* Text color utilities */
.text-success { color: #28a745 !important; }
.text-danger  { color: #dc3545 !important; }
.text-warning { color: #d4a017 !important; }

/* Button variants */
.btn-success { background: #28a745; color: #fff; border-color: #28a745; }
.btn-success:hover { background: #218838; }
.btn-danger  { background: #dc3545; color: #fff; border-color: #dc3545; }
.btn-danger:hover  { background: #c82333; }
.btn-warning { background: #ffc107; color: #212529; border-color: #ffc107; }
.btn-warning:hover { background: #e0a800; }

/* Detail panel (inline detail sections) */
.detail-panel {
    margin-top: 18px;
    padding: 16px 18px;
    background: var(--admin-card-bg, #fff);
    border: 1px solid var(--admin-border, #e2e8f0);
    border-left: 4px solid var(--admin-primary, #2d8a4e);
    border-radius: 8px;
}
.detail-panel h4 {
    margin: 0 0 10px 0;
    font-size: 15px;
}
.detail-panel h5 {
    margin: 14px 0 6px 0;
    font-size: 13px;
    color: var(--admin-text-muted, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Timeline list */
.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 3px solid var(--admin-primary, #2d8a4e);
    padding-left: 16px;
}
.timeline-list li {
    position: relative;
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
}
.timeline-list li::before {
    content: '';
    position: absolute;
    left: -21px;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--admin-primary, #2d8a4e);
    border-radius: 50%;
}

/* Admin settings form (fieldset layout) */
.admin-settings-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.admin-settings-form fieldset {
    border: 1px solid var(--admin-border, #e2e8f0);
    border-radius: 8px;
    padding: 14px 18px;
}
.admin-settings-form legend {
    font-weight: 600;
    font-size: 14px;
    padding: 0 6px;
    color: var(--admin-primary, #2d8a4e);
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}
.form-row label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    min-width: 180px;
    flex: 1;
}
.form-row label input,
.form-row label select {
    font-size: 13px;
    padding: 6px 10px;
    border: 1px solid var(--admin-border, #e2e8f0);
    border-radius: 6px;
    background: var(--admin-card-bg, #fff);
    color: var(--admin-text, #1e293b);
}

/* Pagination enhancements */
.pagination-row {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--admin-border, #e2e8f0);
}

/* Admin table code blocks */
.admin-main table code {
    background: rgba(0,0,0,0.06);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 12px;
}
[data-admin-theme="dark"] .admin-main table code {
    background: rgba(255,255,255,0.1);
}

/* Responsive admin settings */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    .form-row label {
        min-width: 100%;
    }
    .admin-grid.two-cols {
        grid-template-columns: 1fr;
    }
}



/* -- Campos obrigatorios ------------------------------------------------------- */
label.required-field::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

/* ==========================================================================
   Vapy public polish v23 — spacing, CTA palette and minimal icons
   ========================================================================== */
:root{
    --vapy-yellow:#F2E82A;
    --vapy-cream:#fbf1bf;
    --vapy-olive:#899e6c;
    --vapy-dark:#3b4112;
}
.vapy-mini-icon{display:inline-block;vertical-align:-0.18em;flex:0 0 auto;stroke:currentColor;}
.home-banner-wrap{margin-bottom:clamp(44px,6vw,72px)!important;}
.section-block{margin-bottom:clamp(44px,5vw,68px)!important;}
.section-title{margin-bottom:clamp(20px,2.5vw,30px)!important;line-height:1.18;}
.home-banner-wrap + .section-block .section-title{margin-top:0!important;}
.service-carousel{margin-top:18px;}
.service-grid{gap:clamp(18px,2vw,28px)!important;}
.service-grid.is-slider{gap:clamp(18px,2vw,26px)!important;}
.service-card{padding:16px!important;border-radius:16px!important;box-shadow:0 10px 24px rgba(59,65,18,.06);}
.service-grid.is-slider .service-card{box-shadow:0 14px 30px rgba(59,65,18,.10);}
.service-card-body{padding:18px!important;}
.service-card h3{line-height:1.25;margin-bottom:4px!important;}
.service-card p{line-height:1.55!important;}
.service-card .btn,
.service-grid.is-slider .service-card .btn,
.btn.primary,
.hdr-cta-btn,
.pro-cta-inner .btn.primary{background:var(--vapy-yellow)!important;border-color:var(--vapy-yellow)!important;color:#1a1a1a!important;}
.service-card .btn:hover,
.service-grid.is-slider .service-card .btn:hover,
.btn.primary:hover,
.hdr-cta-btn:hover,
.pro-cta-inner .btn.primary:hover{background:#e6dc20!important;border-color:#e6dc20!important;color:#1a1a1a!important;}
.how-it-works,.plans-block,.benefits-block,.testimonials-block{padding:clamp(26px,3vw,40px)!important;border-radius:18px!important;box-shadow:0 12px 28px rgba(59,65,18,.06);}
.steps-grid,.plans-grid,.benefits-grid,.testimonials-grid,.plans-grid-v2,.imprensa-grid{gap:clamp(18px,2vw,28px)!important;}
.steps-grid article,.plan-card,.benefit-item,.testimonial-card,.imprensa-card,.plan-card-v2{padding:clamp(20px,2.2vw,30px)!important;border-radius:16px!important;}
.pro-cta-block{margin-top:clamp(42px,5vw,64px)!important;margin-bottom:clamp(42px,5vw,64px)!important;}
.pro-cta-inner{padding:clamp(42px,5vw,68px) clamp(24px,4vw,48px)!important;}
.hdr-nav-dot{width:5px;height:5px;border-radius:999px;background:var(--vapy-olive);display:inline-block;flex:0 0 5px;}
.hdr-nav-submenu{border-radius:16px!important;box-shadow:0 16px 40px rgba(59,65,18,.16)!important;}
.hdr-nav-submenu-all,.hdr-nav-submenu-item{gap:10px!important;}
.vapy-public-icon-card{width:48px;height:48px;border-radius:16px;background:var(--vapy-cream);color:var(--vapy-dark);display:inline-flex;align-items:center;justify-content:center;margin:0 auto 14px;}
@media(max-width:767px){
    .home-banner-wrap{margin-bottom:38px!important;}
    .section-block{margin-bottom:42px!important;}
    .section-title{font-size:clamp(22px,7vw,30px)!important;margin-bottom:18px!important;}
    .service-carousel{margin-top:14px;}
    .service-grid.is-slider .service-card{min-height:auto;}
    .how-it-works,.plans-block,.benefits-block,.testimonials-block{padding:22px!important;}
    .steps-grid,.benefits-grid,.testimonials-grid{grid-template-columns:1fr!important;}
}

/* =========================================================
   Vapy v26 - Home pública refinada e carrosséis estáveis
   ========================================================= */
:root {
    --vapy-yellow: #F2E82A;
    --vapy-yellow-soft: #fbf1bf;
    --vapy-green: #899e6c;
    --vapy-green-dark: #3b4112;
    --vapy-page-bg: #f4f2eb;
    --vapy-card-border: #dfe3d4;
}

.home-banner-wrap {
    width: min(1180px, 92%);
    margin: 18px auto 72px !important;
}

.home-banner-carousel {
    position: relative;
    border-radius: 18px;
}

.home-banner-viewport {
    overflow: hidden;
    border-radius: 18px;
}

.home-banner-track {
    display: flex;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.home-banner-slide {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
}

.home-banner-link,
.home-banner-slide picture,
.home-banner-slide img {
    display: block;
    width: 100%;
}

.home-banner-slide img {
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(59, 65, 18, .08);
}

.home-banner-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
    width: 38px;
    height: 58px;
    border: 0;
    background: rgba(255, 255, 255, .84);
    color: var(--vapy-green-dark);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(59, 65, 18, .14);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
}

.home-banner-nav.is-prev { left: 14px; }
.home-banner-nav.is-next { right: 14px; }
.home-banner-nav:hover { background: #fff; }

.home-banner-dots,
.service-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}

.home-banner-dot,
.service-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #ccd4bd;
    cursor: pointer;
}

.home-banner-dot.is-active,
.service-carousel-dot.is-active {
    width: 24px;
    background: var(--vapy-yellow);
}

.section-block {
    width: min(1180px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.home-banner-wrap + .section-block {
    margin-top: 0 !important;
}

.home-banner-wrap + .section-block .section-title {
    margin-top: 0 !important;
}

.service-carousel {
    position: relative;
    margin-top: 24px;
}

.service-carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 2px 2px 18px;
}

.service-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.service-grid.is-slider {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 28px !important;
}

.service-grid.is-slider .service-card {
    flex: 0 0 calc((100% - 84px) / 4);
    min-width: 0;
    scroll-snap-align: start;
}

.service-card {
    min-height: 300px;
    border: 1.5px solid var(--vapy-card-border) !important;
    border-radius: 18px !important;
    padding: 16px !important;
    background: #fff !important;
    box-shadow: 0 12px 30px rgba(59, 65, 18, .07) !important;
}

.service-image {
    height: 122px !important;
    border-radius: 14px !important;
    background-color: #f7f7ef;
}

.service-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 2px 2px !important;
}

.service-card h3 {
    font-size: 17px !important;
    line-height: 1.25 !important;
}

.service-category {
    color: var(--vapy-green) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.service-desc {
    color: #5c6470 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    min-height: 64px;
}

.service-card .btn,
.pro-cta-inner .btn.primary,
.header-actions .btn,
.btn.primary {
    background: var(--vapy-yellow) !important;
    border-color: var(--vapy-yellow) !important;
    color: #111 !important;
    border-radius: 10px !important;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800 !important;
}

.service-carousel-nav {
    position: absolute;
    top: 42%;
    z-index: 5;
    width: 34px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    color: var(--vapy-green-dark);
    box-shadow: 0 8px 20px rgba(59, 65, 18, .14);
    cursor: pointer;
    font-size: 28px;
}

.service-carousel-nav.is-prev { left: -17px; }
.service-carousel-nav.is-next { right: -17px; }
.service-carousel-nav:disabled { opacity: .38; cursor: default; }

.testimonials-block,
.pro-cta-block,
.parceiros-block,
.imprensa-block {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
}

.testimonials-block {
    background: rgba(255, 255, 255, .58);
    border: 1px solid rgba(223, 227, 212, .8);
    border-radius: 24px;
    padding: clamp(28px, 4vw, 56px) !important;
    box-shadow: 0 18px 50px rgba(59, 65, 18, .05);
}

.testimonials-grid,
.imprensa-grid,
.benefits-grid,
.steps-grid {
    display: grid;
    gap: 24px !important;
}

.testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.imprensa-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.testimonial-card,
.imprensa-card,
.benefit-item,
.steps-grid article {
    background: #fff !important;
    border: 1.5px solid var(--vapy-card-border) !important;
    border-radius: 18px !important;
    padding: 24px !important;
    box-shadow: 0 10px 28px rgba(59, 65, 18, .06);
}

.testimonial-stars {
    color: var(--vapy-green-dark);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-text,
.imprensa-quote {
    line-height: 1.65;
    color: #31351b;
}

.testimonial-author,
.imprensa-fonte {
    display: block;
    margin-top: 14px;
    color: #65704c;
    font-weight: 700;
    font-size: 13px;
}

.pro-cta-block {
    background: linear-gradient(135deg, var(--vapy-green-dark), #687817) !important;
    border-radius: 22px;
    color: #fff;
    padding: 0 !important;
    box-shadow: 0 20px 48px rgba(59, 65, 18, .18);
}

.pro-cta-inner {
    text-align: center;
    padding: clamp(38px, 5vw, 68px) 24px !important;
}

.pro-cta-inner h2 {
    color: #fff;
    margin-bottom: 10px;
}

.pro-cta-inner p {
    color: rgba(255, 255, 255, .84);
    margin-bottom: 22px;
}

.parceiros-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    align-items: center;
}

.parceiro-item {
    color: #5d6470;
    font-weight: 700;
}

.imprensa-block {
    padding-bottom: 20px;
}

@media (max-width: 980px) {
    .home-banner-wrap,
    .section-block {
        width: min(100% - 32px, 1180px);
    }

    .home-banner-wrap {
        margin-top: 16px !important;
        margin-bottom: 48px !important;
    }

    .home-banner-slide img {
        max-height: 520px;
        border-radius: 16px;
    }

    .service-grid.is-slider .service-card {
        flex-basis: min(78vw, 310px);
    }

    .service-carousel-nav.is-prev { left: -8px; }
    .service-carousel-nav.is-next { right: -8px; }

    .testimonials-grid,
    .imprensa-grid,
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }

    .testimonials-block,
    .pro-cta-block,
    .parceiros-block,
    .imprensa-block {
        margin-top: 48px !important;
        margin-bottom: 48px !important;
    }
}

@media (max-width: 640px) {
    .home-banner-nav {
        width: 30px;
        height: 44px;
        font-size: 30px;
    }

    .home-banner-nav.is-prev { left: 8px; }
    .home-banner-nav.is-next { right: 8px; }

    .service-grid.is-slider .service-card {
        flex-basis: 82vw;
    }

    .service-image {
        height: 132px !important;
    }
}

/* =========================================================
   AUTH DESKTOP/MOBILE POLISH v28
   Corrige header do login e melhora conforto visual/tátil.
   ========================================================= */
.auth-public-body {
    background:
        radial-gradient(circle at 14% 18%, rgba(242, 232, 42, .15), transparent 32%),
        linear-gradient(180deg, #f7f5ee 0%, #f0eee6 100%);
}

.auth-public-body .auth-shell {
    width: 100%;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(56px, 7vw, 92px) 24px 96px;
}

.auth-public-body .auth-card {
    max-width: 100%;
    border: 1px solid #dfddcf;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 60px rgba(59, 65, 18, .11), 0 8px 22px rgba(0, 0, 0, .055);
    overflow: hidden;
}

.auth-public-body .auth-card--login {
    width: min(540px, calc(100vw - 48px));
}

.auth-public-body .auth-card-header {
    display: grid;
    gap: 8px;
    text-align: center;
    padding: 36px 44px 22px;
    border-bottom: 1px solid #ece8d8;
    background:
        linear-gradient(180deg, rgba(251, 241, 191, .32), rgba(255, 255, 255, .92));
    color: #1f2937;
}

.auth-public-body .auth-card-header span {
    display: block;
    font-size: clamp(28px, 2.2vw, 34px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #1a1a1a;
}

.auth-public-body .auth-card-header small {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    color: #5f654d;
}

.auth-public-body .auth-card-body {
    padding: 30px 44px 38px;
}

.auth-public-body .auth-tabs {
    gap: 16px;
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ecefe7;
}

.auth-public-body .auth-tabs strong {
    font-size: 17px;
    line-height: 1.25;
    color: #111827;
}

.auth-public-body .link-button {
    color: #16a99c;
    font-weight: 800;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.auth-public-body .form-grid {
    gap: 16px;
}

.auth-public-body .auth-field-label {
    display: block;
    margin-bottom: -6px;
    font-size: 13px;
    font-weight: 800;
    color: #343a13;
}

.auth-public-body input,
.auth-public-body select,
.auth-public-body textarea {
    min-height: 54px;
    border-color: #ded9c8;
    border-radius: 13px;
    background: #fffefa;
    color: #111827;
    font-size: 16px;
    padding: 15px 16px;
}

.auth-public-body input:focus,
.auth-public-body select:focus,
.auth-public-body textarea:focus {
    border-color: #899e6c;
    box-shadow: 0 0 0 4px rgba(137, 158, 108, .18);
    background: #ffffff;
}

.auth-public-body .password-wrapper {
    display: grid;
    gap: 8px;
}

.auth-public-body .password-wrapper input {
    padding-right: 58px;
}

.auth-public-body .password-toggle {
    top: auto;
    right: 12px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    padding: 0;
    transform: none;
    color: #7d8591;
}

.auth-public-body .password-toggle:hover,
.auth-public-body .password-toggle:focus-visible {
    color: #3b4112;
    background: #f6f2df;
}

.auth-public-body .btn.primary.full {
    min-height: 56px;
    border: none;
    border-radius: 13px;
    background: #F2E82A;
    color: #111111;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(242, 232, 42, .24);
}

.auth-public-body .btn.primary.full:disabled,
.auth-public-body .btn.primary.full[disabled] {
    opacity: .62;
    box-shadow: none;
}

.auth-public-body .auth-submit-hint {
    margin-top: -4px;
    color: #8a5b11;
    font-size: 13px;
    font-weight: 700;
}

.auth-public-body .auth-card-body form > div[style*="text-align:center"] {
    margin-top: 14px !important;
}

.auth-public-body .register-modal {
    border-radius: 22px;
    border: 1px solid #e2dfd2;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
    padding: 26px;
}

@media (max-width: 640px) {
    .auth-public-body .auth-shell {
        padding: 40px 18px 80px;
        min-height: calc(100vh - 72px);
    }

    .auth-public-body .auth-card--login,
    .auth-public-body .auth-card,
    .auth-public-body .auth-card.register-card {
        width: min(100%, calc(100vw - 36px));
        border-radius: 20px;
    }

    .auth-public-body .auth-card-header {
        padding: 28px 22px 18px;
    }

    .auth-public-body .auth-card-header span {
        font-size: 30px;
    }

    .auth-public-body .auth-card-body {
        padding: 24px 20px 30px;
    }

    .auth-public-body .auth-tabs {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .auth-public-body .auth-tabs .link-button {
        font-size: 16px;
    }
}

/* =========================================================
   Vapy v36 - Seção compacta "Por que escolher a Vapy?"
   Visual menor, mais leve e fiel à paleta Vapy.
   ========================================================= */
.home-banner-wrap {
    margin-bottom: clamp(22px, 2.8vw, 34px) !important;
}

.why-vapy-strip {
    width: min(1088px, 90%);
    margin: 0 auto clamp(36px, 4vw, 54px);
    padding: clamp(22px, 2.6vw, 32px);
    border: 1px solid rgba(137, 158, 108, .24);
    border-radius: 22px;
    background:
        radial-gradient(circle at 10% 0%, rgba(242, 232, 42, .16), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(251, 248, 239, .84));
    box-shadow: 0 12px 32px rgba(59, 65, 18, .055);
}

.why-vapy-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto clamp(18px, 2.2vw, 26px);
}

.why-vapy-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(242, 232, 42, .42);
    color: #3b4112;
    font-size: 10.5px;
    font-weight: 850;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.why-vapy-header h2 {
    margin: 10px 0 0;
    color: #263006;
    font-size: clamp(26px, 2.7vw, 36px);
    line-height: 1.08;
    letter-spacing: -.028em;
}

.why-vapy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
    gap: 12px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.why-vapy-card,
.why-vapy-card.is-featured {
    min-height: 150px;
    padding: 16px 13px 15px;
    border: 1px solid rgba(205, 210, 190, .82);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 20px rgba(59, 65, 18, .045);
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.why-vapy-card:hover {
    transform: translateY(-2px);
    border-color: rgba(137, 158, 108, .48);
    background: #fff;
    box-shadow: 0 12px 28px rgba(59, 65, 18, .075);
}

.why-vapy-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 11px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3b4112;
    background: linear-gradient(135deg, #F2E82A, #fbf1bf);
    box-shadow: inset 0 0 0 1px rgba(59, 65, 18, .10), 0 8px 16px rgba(242, 232, 42, .17);
}

.why-vapy-icon-svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-vapy-card h3 {
    margin: 0 0 6px;
    color: #1f2705;
    font-size: clamp(14.5px, 1.05vw, 16.5px);
    line-height: 1.16;
    font-weight: 850;
    letter-spacing: -.012em;
}

.why-vapy-card p {
    margin: 0;
    color: #5a6045;
    font-size: 12.5px;
    line-height: 1.43;
}

.why-vapy-strip + .section-block {
    margin-top: 0 !important;
}

.why-vapy-strip + .section-block .section-title {
    margin-top: 0 !important;
}

@media (max-width: 1100px) {
    .why-vapy-strip {
        width: min(100% - 48px, 1088px);
    }

    .why-vapy-grid {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    }
}

@media (max-width: 767px) {
    .home-banner-wrap {
        margin-bottom: 20px !important;
    }

    .why-vapy-strip {
        width: min(100% - 24px, 1088px);
        margin-bottom: 34px;
        padding: 18px 12px 16px;
        border-radius: 20px;
        overflow: visible;
    }

    .why-vapy-header {
        text-align: left;
        margin-bottom: 14px;
    }

    .why-vapy-eyebrow {
        font-size: 9px;
        padding: 4px 8px;
        min-height: 22px;
    }

    .why-vapy-header h2 {
        font-size: clamp(22px, 6.5vw, 28px);
        margin-top: 8px;
    }

    .why-vapy-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        padding: 0;
        margin: 0;
        scroll-snap-type: none;
    }

    .why-vapy-grid::-webkit-scrollbar {
        display: none;
    }

    .why-vapy-card,
    .why-vapy-card.is-featured {
        min-width: 0;
        min-height: 126px;
        padding: 10px 6px 9px;
        border-radius: 14px;
        scroll-snap-align: unset;
        box-shadow: 0 6px 16px rgba(59, 65, 18, .045);
    }

    .why-vapy-card:hover {
        transform: none;
    }

    .why-vapy-icon {
        width: 34px;
        height: 34px;
        border-radius: 11px;
        margin-bottom: 7px;
    }

    .why-vapy-icon-svg {
        width: 18px;
        height: 18px;
        stroke-width: 2.45;
    }

    .why-vapy-card h3 {
        min-height: 28px;
        margin-bottom: 4px;
        font-size: 11.5px;
        line-height: 1.16;
        letter-spacing: -.02em;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .why-vapy-card p {
        font-size: 10px;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 374px) {
    .why-vapy-strip {
        width: min(100% - 18px, 1088px);
        padding-inline: 10px;
    }

    .why-vapy-grid {
        gap: 6px;
    }

    .why-vapy-card,
    .why-vapy-card.is-featured {
        min-height: 120px;
        padding: 9px 5px 8px;
    }

    .why-vapy-card h3 {
        font-size: 10.8px;
    }

    .why-vapy-card p {
        font-size: 9.4px;
    }
}

/* =========================================================
   Blog público + últimos posts da home — Vapy v34
   ========================================================= */
.home-blog-block,
.blog-list-section,
.blog-post-page {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.home-blog-head,
.blog-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.home-blog-head p,
.blog-section-head p {
    margin: 6px 0 0;
    color: #5a6045;
    line-height: 1.6;
}

.home-blog-eyebrow,
.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fbf1bf;
    color: #3b4112;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-blog-all,
.blog-card__link,
.blog-back-link {
    color: #3b4112;
    font-weight: 800;
    text-decoration: none;
}

.home-blog-all:hover,
.blog-card__link:hover,
.blog-back-link:hover {
    color: #899e6c;
}

.home-blog-grid,
.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-blog-card,
.blog-card {
    overflow: hidden;
    border: 1px solid rgba(59, 65, 18, .14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(59, 65, 18, .08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-blog-card:hover,
.blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 232, 42, .85);
    box-shadow: 0 18px 48px rgba(59, 65, 18, .13);
}

.home-blog-image,
.blog-card__image {
    display: block;
    min-height: 176px;
    background: linear-gradient(135deg, #fbf1bf, #f2e82a 55%, #899e6c);
    background-size: cover;
    background-position: center;
}

.home-blog-body,
.blog-card__body {
    padding: 20px;
}

.home-blog-body span,
.blog-card__date {
    display: inline-flex;
    margin-bottom: 10px;
    color: #899e6c;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.home-blog-body h3,
.blog-card__body h3 {
    margin: 0 0 10px;
    color: #1f2937;
    font-size: 20px;
    line-height: 1.25;
}

.home-blog-body h3 a,
.blog-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.home-blog-body p,
.blog-card__body p {
    margin: 0 0 16px;
    color: #4b5563;
    line-height: 1.65;
}

.blog-hero {
    margin: 34px auto 26px;
    padding: 0 20px;
}

.blog-hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 52px 38px;
    border: 1px solid rgba(59, 65, 18, .14);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 10%, rgba(242, 232, 42, .28), transparent 28%),
        linear-gradient(135deg, #fff, #fbf1bf 120%);
    text-align: center;
    box-shadow: 0 18px 54px rgba(59, 65, 18, .08);
}

.blog-hero h1,
.blog-post-hero h1 {
    margin: 14px 0 10px;
    color: #3b4112;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.blog-hero p,
.blog-post-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #5a6045;
    font-size: 18px;
    line-height: 1.7;
}

.blog-list-section {
    padding: 20px 20px 72px;
}

.blog-pagination,
.admin-blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.blog-pagination a,
.admin-blog-pagination a {
    padding: 10px 14px;
    border-radius: 10px;
    background: #f2e82a;
    color: #1a1a1a;
    font-weight: 800;
    text-decoration: none;
}

.blog-empty-page {
    min-height: 50vh;
    display: grid;
    place-items: center;
    padding: 60px 20px;
}

.blog-empty-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid rgba(59, 65, 18, .14);
    border-radius: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 14px 40px rgba(59, 65, 18, .08);
}

.blog-post-page {
    padding: 40px 20px 80px;
}

.blog-post-hero {
    max-width: 900px;
    margin: 0 auto 26px;
    text-align: center;
}

.blog-post-cover {
    max-width: 1040px;
    min-height: 420px;
    margin: 0 auto 34px;
    border-radius: 26px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 54px rgba(59, 65, 18, .12);
}

.blog-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 34px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

.blog-post-content {
    padding: 34px;
    border: 1px solid rgba(59, 65, 18, .12);
    border-radius: 22px;
    background: #fff;
    color: #1f2937;
    font-size: 17px;
    line-height: 1.85;
    box-shadow: 0 14px 44px rgba(59, 65, 18, .08);
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    color: #3b4112;
    line-height: 1.25;
    margin: 1.5em 0 .55em;
}

.blog-post-content p,
.blog-post-content ul,
.blog-post-content ol,
.blog-post-content blockquote {
    margin: 0 0 1.1em;
}

.blog-post-content a {
    color: #899e6c;
    font-weight: 800;
}

.blog-post-content blockquote {
    padding: 18px 20px;
    border-left: 4px solid #f2e82a;
    border-radius: 12px;
    background: #fbf1bf;
    color: #3b4112;
}

.blog-post-aside {
    position: sticky;
    top: 96px;
    padding: 22px;
    border: 1px solid rgba(59, 65, 18, .12);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 44px rgba(59, 65, 18, .08);
}

.blog-post-aside h2 {
    margin: 0 0 14px;
    color: #3b4112;
    font-size: 18px;
}

.blog-aside-link {
    display: block;
    padding: 14px 0;
    border-top: 1px solid rgba(59, 65, 18, .1);
    color: inherit;
    text-decoration: none;
}

.blog-aside-link strong {
    display: block;
    color: #1f2937;
    line-height: 1.35;
}

.blog-aside-link span {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 920px) {
    .home-blog-head,
    .blog-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-blog-grid,
    .blog-card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-hero__inner {
        padding: 34px 20px;
        border-radius: 22px;
    }

    .blog-post-cover {
        min-height: 260px;
        border-radius: 20px;
    }

    .blog-post-layout {
        grid-template-columns: 1fr;
    }

    .blog-post-content {
        padding: 22px;
        font-size: 16px;
    }

    .blog-post-aside {
        position: static;
    }
}

/* =========================================================
   Blog fix v35 — posts publicados + cards padronizados
   ========================================================= */
.home-blog-block {
    margin-top: clamp(34px, 5vw, 68px) !important;
    margin-bottom: clamp(46px, 6vw, 82px) !important;
}

.home-blog-grid,
.blog-card-grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.home-blog-card,
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.home-blog-image,
.blog-card__image {
    width: 100%;
    height: 190px;
    min-height: 190px;
    aspect-ratio: 16 / 9;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    flex: 0 0 auto;
}

.home-blog-body,
.blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.home-blog-body h3,
.blog-card__body h3 {
    min-height: 50px;
}

.home-blog-body p,
.blog-card__body p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 76px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-card__link {
    margin-top: auto;
}

.blog-post-cover {
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 320px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.blog-empty-page {
    min-height: 56vh;
}

@media (max-width: 920px) {
    .home-blog-block {
        margin-top: 34px !important;
        margin-bottom: 52px !important;
    }

    .home-blog-image,
    .blog-card__image {
        height: 186px;
        min-height: 186px;
    }

    .home-blog-body h3,
    .blog-card__body h3 {
        min-height: auto;
    }

    .home-blog-body p,
    .blog-card__body p {
        min-height: auto;
    }

    .blog-post-cover {
        min-height: 220px;
        aspect-ratio: 16 / 10;
    }
}

/* =========================================================
   Vapy v39 - Como contratar: apresentação visual em 3 passos
   ========================================================= */
.how-it-works--showcase {
    --how-ink: #3b4112;
    --how-green: #899e6c;
    --how-yellow: #F2E82A;
    --how-yellow-soft: #fbf1bf;
    --how-border: #dfe3d4;
    width: min(1180px, 92%);
    margin-top: clamp(54px, 6vw, 82px) !important;
    margin-bottom: clamp(54px, 6vw, 82px) !important;
    padding: clamp(30px, 4vw, 52px) !important;
    background:
        radial-gradient(circle at 8% 0%, rgba(242, 232, 42, .14), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fffef8 100%) !important;
    border: 1px solid var(--how-border) !important;
    border-radius: 24px !important;
    box-shadow: 0 18px 48px rgba(59, 65, 18, .08) !important;
    overflow: hidden;
}

.how-it-works-header {
    max-width: 720px;
    margin: 0 auto clamp(28px, 3.6vw, 44px);
    text-align: center;
}

.how-it-works-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin-bottom: 12px;
    padding: 6px 14px;
    border: 1px solid rgba(137, 158, 108, .24);
    border-radius: 999px;
    background: var(--how-yellow-soft);
    color: var(--how-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1;
    text-transform: uppercase;
}

.how-it-works--showcase .section-title {
    margin: 0 0 8px !important;
    color: var(--how-ink);
    font-size: clamp(30px, 3.1vw, 44px) !important;
    font-weight: 800;
    line-height: 1.08;
}

.how-it-works-header > p {
    margin: 0;
    color: #62684f;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.55;
}

.how-it-works-header > p strong {
    color: var(--how-green);
    font-weight: 800;
}

.how-it-works--showcase .how-steps-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr) !important;
    align-items: stretch;
    grid-auto-rows: 1fr;
    gap: 14px !important;
}

.how-it-works--showcase .how-step-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    min-width: 0;
    min-height: 224px;
    padding: clamp(22px, 2.4vw, 30px) !important;
    background: #fff !important;
    border: 1.5px solid var(--how-border) !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 30px rgba(59, 65, 18, .07) !important;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.how-it-works--showcase .how-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(137, 158, 108, .56) !important;
    box-shadow: 0 18px 36px rgba(59, 65, 18, .11) !important;
}

.how-step-visual {
    width: 104px;
    height: 104px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #fffef4 0%, var(--how-yellow-soft) 100%);
    color: var(--how-ink);
    box-shadow: inset 0 0 0 1px rgba(242, 232, 42, .32);
}

.how-step-icon-svg {
    width: 76px;
    height: 76px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.how-step-icon-accent {
    fill: var(--how-yellow);
    stroke: var(--how-yellow);
}

.how-step-icon-accent-mark {
    fill: none;
    stroke: var(--how-ink);
    stroke-width: 2.8;
}

.how-step-content {
    min-width: 0;
}

.how-step-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 12px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(242, 232, 42, .34);
    color: #667347 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
}

.how-it-works--showcase .how-step-card h3 {
    margin: 0 0 8px !important;
    color: var(--how-ink);
    font-size: clamp(18px, 1.55vw, 22px) !important;
    font-weight: 800;
    line-height: 1.2;
}

.how-it-works--showcase .how-step-card p {
    margin: 0 !important;
    color: #62684f !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.how-step-connector {
    width: 36px;
    height: 36px;
    align-self: center;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--how-yellow);
    color: var(--how-ink);
    box-shadow: 0 8px 18px rgba(242, 232, 42, .28);
}

.how-step-connector svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1120px) {
    .how-it-works--showcase .how-steps-grid {
        grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) !important;
        gap: 8px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 1fr;
        align-content: start;
        text-align: center;
    }

    .how-step-visual {
        margin: 0 auto 18px;
    }
}

@media (max-width: 820px) {
    .how-it-works--showcase {
        width: calc(100% - 32px);
        padding: 26px 18px !important;
        border-radius: 20px !important;
    }

    .how-it-works--showcase .how-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 92px minmax(0, 1fr);
        align-items: center;
        min-height: 0;
        padding: 20px !important;
        text-align: left;
    }

    .how-step-visual {
        width: 82px;
        height: 82px;
        margin: 0;
    }

    .how-step-icon-svg {
        width: 60px;
        height: 60px;
    }

    .how-step-connector {
        transform: rotate(90deg);
    }
}

@media (max-width: 520px) {
    .how-it-works--showcase {
        width: calc(100% - 24px);
        margin-top: 42px !important;
        margin-bottom: 42px !important;
        padding: 24px 14px !important;
    }

    .how-it-works-header {
        margin-bottom: 24px;
    }

    .how-it-works--showcase .section-title {
        font-size: 28px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
        padding: 17px !important;
        border-radius: 16px !important;
    }

    .how-step-visual {
        width: 68px;
        height: 68px;
    }

    .how-step-icon-svg {
        width: 50px;
        height: 50px;
    }

    .how-step-badge {
        margin-bottom: 7px;
        min-height: 24px;
        padding: 4px 9px;
        font-size: 10px !important;
    }

    .how-it-works--showcase .how-step-card h3 {
        font-size: 17px !important;
    }

    .how-it-works--showcase .how-step-card p {
        font-size: 13px !important;
        line-height: 1.45 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .how-it-works--showcase .how-step-card {
        transition: none;
    }
}



/* =========================================================
   Vapy v40 - Ajuste da seção "Como contratar?"
   Remove o fundo do bloco e deixa o layout mais aberto,
   próximo à referência visual aprovada.
   ========================================================= */
.how-it-works--showcase {
    width: min(1240px, calc(100% - 48px)) !important;
    margin-top: 42px !important;
    margin-bottom: 52px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.how-it-works-header {
    max-width: 840px;
    margin: 0 auto 34px !important;
    text-align: center;
}

.how-it-works-eyebrow {
    margin-bottom: 14px;
}

.how-it-works--showcase .section-title {
    font-size: clamp(34px, 4.1vw, 62px) !important;
    letter-spacing: -0.03em;
    margin-bottom: 10px !important;
}

.how-it-works-header > p {
    font-size: clamp(18px, 1.75vw, 20px);
    line-height: 1.5;
}

.how-it-works--showcase .how-steps-grid {
    display: flex !important;
    align-items: center;
    justify-content: stretch;
    gap: 18px !important;
}

.how-it-works--showcase .how-step-card {
    flex: 1 1 0;
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-height: 0;
    padding: 30px 28px !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 28px rgba(59, 65, 18, .06) !important;
}

.how-step-visual {
    width: 102px;
    height: 102px;
}

.how-step-icon-svg {
    width: 72px;
    height: 72px;
}

.how-step-content {
    display: block;
}

.how-step-badge {
    margin-bottom: 14px;
}

.how-it-works--showcase .how-step-card h3 {
    font-size: clamp(18px, 1.8vw, 23px) !important;
    line-height: 1.16;
    margin-bottom: 10px !important;
}

.how-it-works--showcase .how-step-card p {
    font-size: 16px !important;
    line-height: 1.52 !important;
}

.how-step-connector {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    align-self: center;
}

@media (max-width: 1180px) {
    .how-it-works--showcase {
        width: min(1240px, calc(100% - 40px)) !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 18px;
        padding: 24px 22px !important;
    }

    .how-step-visual {
        width: 84px;
        height: 84px;
    }

    .how-step-icon-svg {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 980px) {
    .how-it-works--showcase .how-steps-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .how-step-connector {
        transform: rotate(90deg);
        margin: -4px auto;
    }
}

@media (max-width: 640px) {
    .how-it-works--showcase {
        width: calc(100% - 24px) !important;
        margin-top: 32px !important;
        margin-bottom: 40px !important;
    }

    .how-it-works-header {
        margin-bottom: 22px !important;
    }

    .how-it-works-eyebrow {
        min-height: 28px;
        padding: 6px 12px;
        font-size: 10px;
    }

    .how-it-works--showcase .section-title {
        font-size: 30px !important;
    }

    .how-it-works-header > p {
        font-size: 16px;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 16px !important;
        border-radius: 18px !important;
    }

    .how-step-visual {
        width: 64px;
        height: 64px;
    }

    .how-step-icon-svg {
        width: 46px;
        height: 46px;
    }

    .how-it-works--showcase .how-step-card h3 {
        font-size: 17px !important;
    }

    .how-it-works--showcase .how-step-card p {
        font-size: 13px !important;
    }
}


/* =========================================================
   Vapy v41 - Como contratar fiel à referência + mobile
   ========================================================= */
.how-it-works--showcase {
    --how-ink: #202615;
    --how-green: #899e6c;
    --how-yellow: #F2E82A;
    --how-yellow-soft: #fbf1bf;
    --how-border: #e1e5d8;
    width: min(1240px, calc(100% - 48px)) !important;
    margin: 52px auto 64px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.how-it-works--showcase::before,
.how-it-works--showcase::after {
    display: none !important;
    content: none !important;
}

.how-it-works-header {
    max-width: 820px;
    margin: 0 auto 38px !important;
    text-align: center;
}

.how-it-works--showcase .section-title {
    margin: 0 0 8px !important;
    color: var(--how-ink) !important;
    font-size: clamp(38px, 4.2vw, 60px) !important;
    font-weight: 800 !important;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.how-it-works-header > p {
    margin: 0 !important;
    color: #606753 !important;
    font-size: clamp(17px, 1.7vw, 21px) !important;
    line-height: 1.5 !important;
}

.how-it-works-header > p strong {
    color: #7f925f !important;
    font-weight: 800 !important;
}

.how-it-works--showcase .how-steps-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 18px !important;
    width: 100%;
}

.how-it-works--showcase .how-step-card {
    display: grid !important;
    grid-template-columns: 118px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 24px !important;
    min-width: 0;
    min-height: 244px;
    padding: 28px 26px !important;
    background: #fff !important;
    border: 1.5px solid var(--how-border) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 28px rgba(59,65,18,.06) !important;
    text-align: left !important;
}

.how-it-works--showcase .how-step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(137,158,108,.55) !important;
    box-shadow: 0 16px 34px rgba(59,65,18,.10) !important;
}

.how-step-visual {
    width: 108px !important;
    height: 108px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: #fffdf1 !important;
    color: var(--how-ink) !important;
    box-shadow: inset 0 0 0 1px rgba(242,232,42,.38) !important;
}

.how-step-icon-svg {
    width: 76px !important;
    height: 76px !important;
}

.how-step-content {
    min-width: 0;
}

.how-step-badge {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 30px !important;
    margin: 0 0 12px !important;
    padding: 6px 13px !important;
    border-radius: 999px !important;
    background: var(--how-yellow-soft) !important;
    color: #667347 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .035em;
    line-height: 1 !important;
    text-transform: uppercase;
}

.how-it-works--showcase .how-step-card h3 {
    margin: 0 0 9px !important;
    color: var(--how-ink) !important;
    font-size: clamp(19px, 1.55vw, 23px) !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
}

.how-it-works--showcase .how-step-card p {
    margin: 0 !important;
    color: #62684f !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.how-step-connector {
    width: 38px !important;
    height: 38px !important;
    margin: 0 !important;
    justify-self: center;
    align-self: center;
    border-radius: 50% !important;
    background: var(--how-yellow) !important;
    color: var(--how-ink) !important;
    box-shadow: 0 8px 18px rgba(242,232,42,.28) !important;
}

.how-step-connector svg {
    width: 18px !important;
    height: 18px !important;
}

@media (max-width: 1180px) {
    .how-it-works--showcase {
        width: min(1180px, calc(100% - 36px)) !important;
    }

    .how-it-works--showcase .how-steps-grid {
        grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) !important;
        gap: 10px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 92px minmax(0, 1fr) !important;
        gap: 16px !important;
        padding: 24px 20px !important;
    }

    .how-step-visual {
        width: 84px !important;
        height: 84px !important;
    }

    .how-step-icon-svg {
        width: 58px !important;
        height: 58px !important;
    }
}

@media (max-width: 900px) {
    .how-it-works--showcase {
        width: calc(100% - 28px) !important;
        margin-top: 42px !important;
        margin-bottom: 48px !important;
    }

    .how-it-works-header {
        margin-bottom: 26px !important;
    }

    .how-it-works--showcase .how-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 96px minmax(0, 1fr) !important;
        min-height: 0;
        gap: 18px !important;
        padding: 22px 20px !important;
    }

    .how-step-connector {
        transform: rotate(90deg) !important;
        margin: -2px auto !important;
    }
}

@media (max-width: 560px) {
    .how-it-works--showcase {
        width: calc(100% - 24px) !important;
        margin: 34px auto 42px !important;
    }

    .how-it-works-header {
        max-width: 340px;
        margin-bottom: 22px !important;
    }

    .how-it-works--showcase .section-title {
        font-size: 30px !important;
        letter-spacing: -.025em;
    }

    .how-it-works-header > p {
        font-size: 15px !important;
        line-height: 1.45 !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 74px minmax(0, 1fr) !important;
        gap: 14px !important;
        padding: 17px 16px !important;
        border-radius: 17px !important;
    }

    .how-step-visual {
        width: 66px !important;
        height: 66px !important;
    }

    .how-step-icon-svg {
        width: 46px !important;
        height: 46px !important;
    }

    .how-step-badge {
        min-height: 24px !important;
        margin-bottom: 7px !important;
        padding: 4px 9px !important;
        font-size: 9px !important;
    }

    .how-it-works--showcase .how-step-card h3 {
        margin-bottom: 5px !important;
        font-size: 17px !important;
        line-height: 1.2 !important;
    }

    .how-it-works--showcase .how-step-card p {
        font-size: 13px !important;
        line-height: 1.42 !important;
    }

    .how-step-connector {
        width: 32px !important;
        height: 32px !important;
    }
}

@media (max-width: 390px) {
    .how-it-works--showcase .how-step-card {
        grid-template-columns: 64px minmax(0, 1fr) !important;
        gap: 12px !important;
        padding: 15px 14px !important;
    }

    .how-step-visual {
        width: 58px !important;
        height: 58px !important;
    }

    .how-step-icon-svg {
        width: 40px !important;
        height: 40px !important;
    }
}


/* =========================================================
   Vapy v42 - Como contratar alinhado à referência visual
   Layout mais compacto, equilibrado e coerente com a home.
   ========================================================= */
.how-it-works--showcase {
    --how-ink: #202615;
    --how-green: #899e6c;
    --how-yellow: #F2E82A;
    --how-yellow-soft: #fff8c9;
    --how-border: #e2e5dc;
    width: min(1180px, calc(100% - 40px)) !important;
    margin: 46px auto 56px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.how-it-works--showcase::before,
.how-it-works--showcase::after {
    display: none !important;
    content: none !important;
}

.how-it-works--showcase .how-it-works-header {
    max-width: 720px;
    margin: 0 auto 30px !important;
    text-align: center;
}

.how-it-works--showcase .section-title {
    margin: 0 0 7px !important;
    color: var(--how-ink) !important;
    font-size: clamp(28px, 2.5vw, 36px) !important;
    font-weight: 800 !important;
    letter-spacing: -.025em !important;
    line-height: 1.12 !important;
}

.how-it-works--showcase .how-it-works-header > p {
    margin: 0 !important;
    color: #606753 !important;
    font-size: clamp(15px, 1.3vw, 18px) !important;
    line-height: 1.5 !important;
}

.how-it-works--showcase .how-it-works-header > p strong {
    color: #7b8e5c !important;
    font-weight: 800 !important;
}

.how-it-works--showcase .how-steps-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
}

.how-it-works--showcase .how-step-card {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 18px !important;
    min-width: 0 !important;
    min-height: 210px !important;
    padding: 24px 22px !important;
    background: #fff !important;
    border: 1px solid var(--how-border) !important;
    border-radius: 18px !important;
    box-shadow: 0 9px 24px rgba(59, 65, 18, .055) !important;
    text-align: left !important;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease !important;
}

.how-it-works--showcase .how-step-card:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(137, 158, 108, .5) !important;
    box-shadow: 0 14px 30px rgba(59, 65, 18, .085) !important;
}

.how-it-works--showcase .how-step-visual {
    width: 88px !important;
    height: 88px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #fffef7 0%, #fff9d7 100%) !important;
    color: var(--how-ink) !important;
    box-shadow: inset 0 0 0 1px rgba(242, 232, 42, .4) !important;
}

.how-it-works--showcase .how-step-icon-svg {
    width: 62px !important;
    height: 62px !important;
}

.how-it-works--showcase .how-step-content {
    min-width: 0 !important;
}

.how-it-works--showcase .how-step-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 25px !important;
    margin: 0 0 10px !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    background: var(--how-yellow-soft) !important;
    color: #667347 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: .035em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.how-it-works--showcase .how-step-card h3 {
    margin: 0 0 7px !important;
    color: var(--how-ink) !important;
    font-size: clamp(17px, 1.35vw, 20px) !important;
    font-weight: 800 !important;
    letter-spacing: -.015em !important;
    line-height: 1.2 !important;
}

.how-it-works--showcase .how-step-card p {
    margin: 0 !important;
    color: #62684f !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.how-it-works--showcase .how-step-connector {
    width: 32px !important;
    height: 32px !important;
    margin: 0 !important;
    justify-self: center !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: var(--how-yellow) !important;
    color: var(--how-ink) !important;
    box-shadow: 0 6px 14px rgba(242, 232, 42, .24) !important;
}

.how-it-works--showcase .how-step-connector svg {
    width: 16px !important;
    height: 16px !important;
}

@media (max-width: 1080px) {
    .how-it-works--showcase {
        width: min(1060px, calc(100% - 32px)) !important;
    }

    .how-it-works--showcase .how-steps-grid {
        grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) !important;
        gap: 10px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 76px minmax(0, 1fr) !important;
        gap: 14px !important;
        min-height: 194px !important;
        padding: 21px 18px !important;
    }

    .how-it-works--showcase .how-step-visual {
        width: 72px !important;
        height: 72px !important;
    }

    .how-it-works--showcase .how-step-icon-svg {
        width: 50px !important;
        height: 50px !important;
    }

    .how-it-works--showcase .how-step-card h3 {
        font-size: 17px !important;
    }

    .how-it-works--showcase .how-step-card p {
        font-size: 13px !important;
    }
}

@media (max-width: 820px) {
    .how-it-works--showcase {
        width: calc(100% - 28px) !important;
        margin: 38px auto 46px !important;
    }

    .how-it-works--showcase .how-it-works-header {
        margin-bottom: 23px !important;
    }

    .how-it-works--showcase .section-title {
        font-size: 28px !important;
    }

    .how-it-works--showcase .how-it-works-header > p {
        font-size: 15px !important;
    }

    .how-it-works--showcase .how-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 78px minmax(0, 1fr) !important;
        gap: 16px !important;
        min-height: 0 !important;
        padding: 19px 18px !important;
    }

    .how-it-works--showcase .how-step-visual {
        width: 72px !important;
        height: 72px !important;
    }

    .how-it-works--showcase .how-step-connector {
        width: 29px !important;
        height: 29px !important;
        margin: -1px auto !important;
        transform: rotate(90deg) !important;
    }
}

@media (max-width: 480px) {
    .how-it-works--showcase {
        width: calc(100% - 24px) !important;
        margin: 32px auto 40px !important;
    }

    .how-it-works--showcase .how-it-works-header {
        max-width: 330px !important;
        margin-bottom: 20px !important;
    }

    .how-it-works--showcase .section-title {
        font-size: 26px !important;
    }

    .how-it-works--showcase .how-it-works-header > p {
        font-size: 14px !important;
        line-height: 1.45 !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 64px minmax(0, 1fr) !important;
        gap: 13px !important;
        padding: 16px 15px !important;
        border-radius: 16px !important;
    }

    .how-it-works--showcase .how-step-visual {
        width: 60px !important;
        height: 60px !important;
    }

    .how-it-works--showcase .how-step-icon-svg {
        width: 42px !important;
        height: 42px !important;
    }

    .how-it-works--showcase .how-step-badge {
        min-height: 22px !important;
        margin-bottom: 6px !important;
        padding: 4px 8px !important;
        font-size: 9px !important;
    }

    .how-it-works--showcase .how-step-card h3 {
        margin-bottom: 4px !important;
        font-size: 16px !important;
        line-height: 1.2 !important;
    }

    .how-it-works--showcase .how-step-card p {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .how-it-works--showcase .how-step-card {
        transition: none !important;
    }
}

/* =========================================================
   Vapy v43 - Planos mais largos e legíveis
   ========================================================= */
.plans-block {
    width: min(1240px, calc(100% - 48px)) !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.plans-block .section-title {
    margin-bottom: 12px !important;
    font-size: clamp(26px, 2.8vw, 34px) !important;
}

.plans-block .plans-subtitle {
    margin: 0 0 28px !important;
    font-size: 16px;
    line-height: 1.5;
}

.plans-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.plan-card-v2 {
    min-width: 0;
    padding: 30px !important;
    gap: 14px !important;
    border: 1.5px solid #dfe3d4 !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 26px rgba(59, 65, 18, .06) !important;
}

.plan-card-v2--featured {
    border-color: #F2E82A !important;
    box-shadow: 0 14px 32px rgba(242, 232, 42, .18) !important;
}

.plan-card-v2 .plan-header {
    gap: 8px;
}

.plan-card-v2 .plan-name {
    font-size: 21px !important;
    line-height: 1.2;
}

.plan-card-v2 .plan-desc {
    min-height: 48px;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.plan-card-v2 .plan-price-freq {
    display: inline-flex;
    width: fit-content;
    padding: 5px 11px;
    border-radius: 999px;
    background: #f6f5ee;
    color: #697052;
    font-size: 12px;
    font-weight: 700;
}

.plan-features-title {
    margin: 2px 0 0;
    color: #3b4112;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.plan-card-v2 .plan-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin-bottom: 8px;
}

.plan-card-v2 .plan-features li {
    min-width: 0;
    font-size: 14px;
    line-height: 1.45;
}

.plan-card-v2 .plan-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F2E82A;
    border-color: #F2E82A;
    color: #1a1a1a;
    font-weight: 800;
}

.plan-card-v2 .plan-btn:hover {
    background: #d8ce1e;
    border-color: #d8ce1e;
    color: #1a1a1a;
}

@media (max-width: 820px) {
    .plans-block {
        width: calc(100% - 32px) !important;
    }

    .plans-grid-v2 {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
}

@media (max-width: 520px) {
    .plans-block {
        width: calc(100% - 24px) !important;
    }

    .plans-block .section-title,
    .plans-block .plans-subtitle {
        text-align: left;
    }

    .plan-card-v2 {
        padding: 22px 18px !important;
    }

    .plan-card-v2 .plan-desc {
        min-height: 0;
        font-size: 14px !important;
    }

    .plan-card-v2 .plan-features {
        grid-template-columns: 1fr;
        gap: 9px;
    }
}


/* =========================================================
   Vapy v44 - Planos: 4 cards em uma linha no desktop
   e carrossel horizontal por toque no mobile.
   ========================================================= */
.plans-carousel {
    position: relative;
    width: 100%;
}

.plans-grid-v2,
.plans-page-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.plans-grid-v2 .plan-card-v2,
.plans-page-grid .plan-card-v2 {
    min-width: 0;
    height: 100%;
    padding: 24px 22px !important;
    gap: 12px !important;
}

.plans-grid-v2 .plan-card-v2 .plan-name,
.plans-page-grid .plan-card-v2 .plan-name {
    font-size: 19px !important;
    line-height: 1.22;
}

.plans-grid-v2 .plan-card-v2 .plan-desc,
.plans-page-grid .plan-card-v2 .plan-desc {
    min-height: 66px;
    font-size: 14px !important;
    line-height: 1.52 !important;
}

.plans-grid-v2 .plan-card-v2 .plan-features,
.plans-page-grid .plan-card-v2 .plan-features {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
}

.plans-grid-v2 .plan-card-v2 .plan-features li,
.plans-page-grid .plan-card-v2 .plan-features li {
    font-size: 13px !important;
    line-height: 1.38 !important;
}

.plans-carousel-nav,
.plans-carousel-dots {
    display: none;
}

@media (max-width: 1099px) and (min-width: 821px) {
    .plans-grid-v2,
    .plans-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }

    .plans-grid-v2 .plan-card-v2 .plan-desc,
    .plans-page-grid .plan-card-v2 .plan-desc {
        min-height: 48px;
    }
}

@media (max-width: 820px) {
    .plans-block {
        overflow: visible !important;
    }

    .plans-carousel {
        margin-inline: 0;
        padding-bottom: 28px;
    }

    .plans-grid-v2,
    .plans-page-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 14px !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 4px;
        padding: 4px 4px 14px !important;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .plans-grid-v2::-webkit-scrollbar,
    .plans-page-grid::-webkit-scrollbar {
        display: none;
    }

    .plans-grid-v2 .plan-card-v2,
    .plans-page-grid .plan-card-v2 {
        flex: 0 0 min(84vw, 340px);
        width: min(84vw, 340px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        height: auto;
        padding: 24px 20px !important;
    }

    .plans-grid-v2 .plan-card-v2 .plan-desc,
    .plans-page-grid .plan-card-v2 .plan-desc {
        min-height: 0;
        font-size: 14px !important;
    }

    .plans-grid-v2 .plan-card-v2 .plan-features,
    .plans-page-grid .plan-card-v2 .plan-features {
        gap: 9px !important;
    }

    .plans-carousel-nav {
        position: absolute;
        z-index: 5;
        top: 46%;
        width: 42px;
        height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(59, 65, 18, .12);
        border-radius: 14px;
        background: rgba(255, 255, 255, .96);
        color: #3b4112;
        box-shadow: 0 10px 24px rgba(59, 65, 18, .14);
        font-size: 26px;
        line-height: 1;
        cursor: pointer;
        transform: translateY(-50%);
        transition: opacity .18s ease, transform .18s ease;
    }

    .plans-carousel-nav.is-prev { left: -7px; }
    .plans-carousel-nav.is-next { right: -7px; }
    .plans-carousel-nav:active { transform: translateY(-50%) scale(.96); }
    .plans-carousel-nav[disabled] { opacity: .35; pointer-events: none; }

    .plans-carousel-dots {
        min-height: 10px;
        margin-top: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
    }

    .plans-carousel-dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: #d9ddce;
        cursor: pointer;
        transition: width .18s ease, background .18s ease;
    }

    .plans-carousel-dot.is-active {
        width: 24px;
        background: #F2E82A;
    }
}

@media (max-width: 420px) {
    .plans-grid-v2 .plan-card-v2,
    .plans-page-grid .plan-card-v2 {
        flex-basis: calc(100vw - 58px);
        width: calc(100vw - 58px);
    }

    .plans-carousel-nav {
        width: 38px;
        height: 48px;
    }
}


/* =========================================================
   Vapy v45 - Performance das imagens do blog
   Imagens nativas, lazy loading e dimensões estáveis.
   ========================================================= */
.home-blog-image,
.blog-card__image,
.blog-post-cover {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fbf1bf, #f2e82a 55%, #899e6c);
}

.home-blog-image img,
.blog-card__image img,
.blog-post-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-blog-image img,
.blog-card__image img {
    transition: transform .28s ease;
}

.home-blog-card:hover .home-blog-image img,
.blog-card:hover .blog-card__image img {
    transform: scale(1.025);
}

.blog-post-cover {
    margin: 0;
}

.blog-post-cover img {
    aspect-ratio: 16 / 7;
}

@media (max-width: 920px) {
    .blog-post-cover img {
        aspect-ratio: 16 / 10;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-blog-image img,
    .blog-card__image img {
        transition: none;
    }
}


/* =========================================================
   Vapy v46 - Banner "Quer ser uma Vapy?"
   Usa imagens dedicadas para desktop e mobile e substitui
   o CTA verde anterior por uma peça visual responsiva.
   ========================================================= */
.home-pro-banner {
    width: min(1180px, calc(100% - 40px)) !important;
    margin-top: clamp(44px, 5vw, 68px) !important;
    margin-bottom: clamp(40px, 4.5vw, 64px) !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.home-pro-banner-link {
    display: block;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #fbf1bf;
    box-shadow: 0 18px 42px rgba(59, 65, 18, .10);
    transition: transform .2s ease, box-shadow .2s ease;
}

.home-pro-banner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(59, 65, 18, .14);
}

.home-pro-banner picture,
.home-pro-banner img {
    display: block;
    width: 100%;
}

.home-pro-banner img {
    height: auto;
    object-fit: cover;
}

.home-pro-banner-link:focus-visible {
    outline: 3px solid #F2E82A;
    outline-offset: 4px;
}

@media (max-width: 700px) {
    .home-pro-banner {
        width: calc(100% - 24px) !important;
        margin-top: 36px !important;
        margin-bottom: 40px !important;
    }

    .home-pro-banner-link {
        border-radius: 18px;
        box-shadow: 0 14px 34px rgba(59, 65, 18, .10);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-pro-banner-link {
        transition: none;
    }
}

/* =========================================================
   Vapy v47 - Depoimentos administráveis e slider responsivo
   ========================================================= */
.testimonials-slider-section {
    width: min(1180px, calc(100% - 40px));
    margin-top: clamp(52px, 6vw, 78px) !important;
    margin-bottom: clamp(52px, 6vw, 78px) !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.testimonials-slider-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.testimonials-slider-head > div:first-child {
    max-width: 720px;
}

.testimonials-slider-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 9px;
    padding: 5px 11px;
    border: 1px solid rgba(137, 158, 108, .25);
    border-radius: 999px;
    background: #fbf1bf;
    color: #3b4112;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1;
    text-transform: uppercase;
}

.testimonials-slider-section .section-title {
    margin: 0 0 7px !important;
    color: #3b4112;
    font-size: clamp(27px, 2.7vw, 36px) !important;
    line-height: 1.16;
}

.testimonials-slider-head p {
    margin: 0;
    color: #66705a;
    font-size: 15px;
    line-height: 1.55;
}

.testimonials-slider-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.testimonials-slider-controls button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe3d4;
    border-radius: 50%;
    background: #fff;
    color: #3b4112;
    box-shadow: 0 8px 20px rgba(59, 65, 18, .07);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.testimonials-slider-controls button:hover,
.testimonials-slider-controls button:focus-visible {
    border-color: #F2E82A;
    background: #fffceb;
    transform: translateY(-2px);
    outline: none;
}

.testimonials-slider-controls svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testimonials-slider-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-inline: contain;
    border-radius: 20px;
}

.testimonials-slider-viewport::-webkit-scrollbar {
    display: none;
}

.testimonials-slider-track {
    display: flex;
    align-items: stretch;
    grid-auto-rows: 1fr;
    gap: 22px;
    width: max-content;
    min-width: 100%;
    padding: 2px 1px 10px;
}

.testimonials-slider-section .testimonial-slide {
    position: relative;
    flex: 0 0 calc((min(1180px, calc(100vw - 40px)) - 44px) / 3);
    min-width: 0;
    min-height: 254px;
    display: flex;
    flex-direction: column;
    padding: 28px !important;
    overflow: hidden;
    scroll-snap-align: start;
    background:
        radial-gradient(circle at 100% 0%, rgba(242, 232, 42, .16), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fffef9 100%) !important;
    border: 1px solid #dfe3d4 !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 30px rgba(59, 65, 18, .065) !important;
}

.testimonial-quote-mark {
    position: absolute;
    top: 12px;
    right: 18px;
    color: rgba(137, 158, 108, .15);
    font-family: Georgia, serif;
    font-size: 74px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.testimonials-slider-section .testimonial-stars {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 3px;
    margin: 0 0 17px;
    color: #d6d9ce;
    font-size: 16px;
    letter-spacing: 0;
}

.testimonials-slider-section .testimonial-stars .is-filled {
    color: #d3b800;
}

.testimonials-slider-section .testimonial-text {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    margin: 0 0 24px !important;
    color: #2f3419 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.testimonial-author-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F2E82A;
    color: #3b4112;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(242, 232, 42, .22);
}

.testimonial-author-row > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.testimonials-slider-section .testimonial-author {
    margin: 0;
    color: #3b4112;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.testimonial-author-row > div > span {
    margin-top: 2px;
    color: #89907a;
    font-size: 12px;
    line-height: 1.25;
}

.testimonials-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    min-height: 20px;
    margin-top: 14px;
}

.testimonials-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d8ddcc;
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.testimonials-slider-dot.is-active {
    width: 25px;
    background: #F2E82A;
}

@media (max-width: 1019px) {
    .testimonials-slider-section .testimonial-slide {
        flex-basis: calc((100vw - 62px) / 2);
    }
}

@media (max-width: 719px) {
    .testimonials-slider-section {
        width: calc(100% - 24px);
        margin-top: 42px !important;
        margin-bottom: 46px !important;
    }

    .testimonials-slider-head {
        align-items: flex-end;
        gap: 14px;
        margin-bottom: 18px;
    }

    .testimonials-slider-section .section-title {
        font-size: 26px !important;
    }

    .testimonials-slider-head p {
        font-size: 14px;
    }

    .testimonials-slider-controls {
        gap: 7px;
    }

    .testimonials-slider-controls button {
        width: 38px;
        height: 38px;
    }

    .testimonials-slider-section .testimonial-slide {
        flex-basis: calc(100vw - 24px);
        min-height: 248px;
        padding: 24px 22px !important;
    }

    .testimonials-slider-track {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .testimonials-slider-head > div:first-child {
        grid-column: 1 / -1;
    }

    .testimonials-slider-controls {
        grid-column: 2;
        justify-self: end;
        margin-top: -2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-slider-viewport {
        scroll-behavior: auto;
    }

    .testimonials-slider-controls button,
    .testimonials-slider-dot {
        transition: none;
    }
}


/* =========================================================
   Vapy v48 - Correção do slider de depoimentos
   Evita corte do terceiro card no desktop, mostra o card
   inteiro no mobile e remove a sombra inferior desnecessária.
   ========================================================= */
.testimonials-slider-viewport {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 0;
    scroll-padding-inline: 0;
}

.testimonials-slider-track {
    width: 100%;
    min-width: 100%;
    max-width: none;
    padding: 0;
    gap: 22px;
    box-sizing: border-box;
}

.testimonials-slider-section .testimonial-slide {
    flex: 0 0 calc((100% - 44px) / 3);
    width: calc((100% - 44px) / 3);
    max-width: calc((100% - 44px) / 3);
    box-shadow: none !important;
}

@media (max-width: 1019px) {
    .testimonials-slider-section .testimonial-slide {
        flex-basis: calc((100% - 22px) / 2);
        width: calc((100% - 22px) / 2);
        max-width: calc((100% - 22px) / 2);
    }
}

@media (max-width: 719px) {
    .testimonials-slider-section {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
    }

    .testimonials-slider-viewport {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .testimonials-slider-track {
        width: 100%;
        min-width: 100%;
        gap: 14px;
        padding: 0;
    }

    .testimonials-slider-section .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        box-shadow: none !important;
    }
}


/* =========================================================
   Vapy v53 - Seção institucional dividida na home
   Imagem otimizada à esquerda e conteúdo/CTA à direita.
   ========================================================= */
.home-belief-split {
    width: min(1180px, calc(100% - 40px)) !important;
    margin-top: clamp(30px, 3vw, 42px) !important;
    margin-bottom: clamp(30px, 3vw, 42px) !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
    column-gap: 24px;
    row-gap: 24px;
    align-items: stretch;
    grid-auto-rows: 1fr;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.home-belief-split__media,
.home-belief-split__content {
    min-width: 0;
    min-height: 0;
    height: 100%;
    border: 1px solid rgba(137, 158, 108, .18);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(59, 65, 18, .08);
    overflow: hidden;
}

.home-belief-split__media {
    height: clamp(350px, 29vw, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f3df;
}

.home-belief-split__media picture,
.home-belief-split__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.home-belief-split__media picture {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-belief-split__media img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: #f8f3df;
}

.home-belief-split__content {
    height: clamp(350px, 29vw, 400px);
    min-height: 0;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background:
        radial-gradient(circle at 100% 0, rgba(242, 232, 42, .10), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #fbfbf4 100%);
}

.home-belief-split__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 10px;
    padding: 5px 12px;
    border: 1px solid rgba(242, 232, 42, .72);
    border-radius: 999px;
    background: rgba(242, 232, 42, .16);
    color: #3d4814;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-belief-split__content h2 {
    margin: 0 0 12px;
    color: #718456;
    font-size: clamp(27px, 2.5vw, 34px);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.home-belief-split__content p {
    margin: 0 0 10px;
    color: #232814;
    font-size: clamp(13px, .95vw, 15px);
    line-height: 1.42;
}

.home-belief-split__content p:last-of-type {
    margin-bottom: 18px;
}

.home-belief-split__content strong {
    color: #718456;
    font-weight: 900;
}

.home-belief-split__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid #899e6c;
    border-radius: 12px;
    background: #899e6c;
    color: #fff !important;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(137, 158, 108, .24);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.home-belief-split__cta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-belief-split__cta:hover {
    background: #758a5b;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(117, 138, 91, .28);
}

.home-belief-split__cta:focus-visible {
    outline: 3px solid rgba(242, 232, 42, .58);
    outline-offset: 4px;
}

@media (max-width: 1100px) {
    .home-belief-split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 24px;
    }

    .home-belief-split__media,
    .home-belief-split__content {
        min-height: 390px;
        height: 390px;
    }

    .home-belief-split__content {
        padding: 28px 26px;
    }

    .home-belief-split__content h2 {
        font-size: clamp(28px, 3.6vw, 34px);
    }

    .home-belief-split__content p {
        font-size: 14px;
        line-height: 1.48;
    }
}

/* Desktop: tipografia institucional mais legível, com os dois cards sempre na mesma altura. */
@media (min-width: 1024px) {
    .home-belief-split {
        grid-auto-rows: auto;
        align-items: stretch;
    }

    .home-belief-split__media,
    .home-belief-split__content {
        height: auto;
        min-height: 400px;
    }

    .home-belief-split__content {
        padding: 26px 32px;
    }

    .home-belief-split__content p {
        font-size: 15px;
        line-height: 1.45;
    }

    .home-belief-split__content p:last-of-type {
        margin-bottom: 16px;
    }
}

@media (max-width: 760px) {
    .home-belief-split {
        width: calc(100% - 24px) !important;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-belief-split__media,
    .home-belief-split__content {
        min-height: 0;
        height: auto;
        border-radius: 20px;
    }

    .home-belief-split__media {
        aspect-ratio: 4 / 3;
    }

    .home-belief-split__media img {
        object-fit: cover;
        object-position: center center;
    }

    .home-belief-split__content {
        padding: 26px 22px 28px;
    }

    .home-belief-split__content h2 {
        margin-bottom: 16px;
        font-size: clamp(28px, 9vw, 36px);
    }

    .home-belief-split__content p {
        font-size: 14px;
        line-height: 1.55;
    }

    .home-belief-split__cta {
        width: 100%;
        min-height: 52px;
    }
}

@media (max-width: 420px) {
    .home-belief-split__content {
        padding: 24px 18px 26px;
    }

    .home-belief-split__eyebrow {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .how-it-works--showcase .how-step-card {
        transition: none;
    }
}



/* =========================================================
   Vapy v40 - Ajuste da seção "Como contratar?"
   Remove o fundo do bloco e deixa o layout mais aberto,
   próximo à referência visual aprovada.
   ========================================================= */
.how-it-works--showcase {
    width: min(1240px, calc(100% - 48px)) !important;
    margin-top: 42px !important;
    margin-bottom: 52px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.how-it-works-header {
    max-width: 840px;
    margin: 0 auto 34px !important;
    text-align: center;
}

.how-it-works-eyebrow {
    margin-bottom: 14px;
}

.how-it-works--showcase .section-title {
    font-size: clamp(34px, 4.1vw, 62px) !important;
    letter-spacing: -0.03em;
    margin-bottom: 10px !important;
}

.how-it-works-header > p {
    font-size: clamp(18px, 1.75vw, 20px);
    line-height: 1.5;
}

.how-it-works--showcase .how-steps-grid {
    display: flex !important;
    align-items: center;
    justify-content: stretch;
    gap: 18px !important;
}

.how-it-works--showcase .how-step-card {
    flex: 1 1 0;
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-height: 0;
    padding: 30px 28px !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 28px rgba(59, 65, 18, .06) !important;
}

.how-step-visual {
    width: 102px;
    height: 102px;
}

.how-step-icon-svg {
    width: 72px;
    height: 72px;
}

.how-step-content {
    display: block;
}

.how-step-badge {
    margin-bottom: 14px;
}

.how-it-works--showcase .how-step-card h3 {
    font-size: clamp(18px, 1.8vw, 23px) !important;
    line-height: 1.16;
    margin-bottom: 10px !important;
}

.how-it-works--showcase .how-step-card p {
    font-size: 16px !important;
    line-height: 1.52 !important;
}

.how-step-connector {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    align-self: center;
}

@media (max-width: 1180px) {
    .how-it-works--showcase {
        width: min(1240px, calc(100% - 40px)) !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 18px;
        padding: 24px 22px !important;
    }

    .how-step-visual {
        width: 84px;
        height: 84px;
    }

    .how-step-icon-svg {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 980px) {
    .how-it-works--showcase .how-steps-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .how-step-connector {
        transform: rotate(90deg);
        margin: -4px auto;
    }
}

@media (max-width: 640px) {
    .how-it-works--showcase {
        width: calc(100% - 24px) !important;
        margin-top: 32px !important;
        margin-bottom: 40px !important;
    }

    .how-it-works-header {
        margin-bottom: 22px !important;
    }

    .how-it-works-eyebrow {
        min-height: 28px;
        padding: 6px 12px;
        font-size: 10px;
    }

    .how-it-works--showcase .section-title {
        font-size: 30px !important;
    }

    .how-it-works-header > p {
        font-size: 16px;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 16px !important;
        border-radius: 18px !important;
    }

    .how-step-visual {
        width: 64px;
        height: 64px;
    }

    .how-step-icon-svg {
        width: 46px;
        height: 46px;
    }

    .how-it-works--showcase .how-step-card h3 {
        font-size: 17px !important;
    }

    .how-it-works--showcase .how-step-card p {
        font-size: 13px !important;
    }
}


/* =========================================================
   Vapy v41 - Como contratar fiel à referência + mobile
   ========================================================= */
.how-it-works--showcase {
    --how-ink: #202615;
    --how-green: #899e6c;
    --how-yellow: #F2E82A;
    --how-yellow-soft: #fbf1bf;
    --how-border: #e1e5d8;
    width: min(1240px, calc(100% - 48px)) !important;
    margin: 52px auto 64px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.how-it-works--showcase::before,
.how-it-works--showcase::after {
    display: none !important;
    content: none !important;
}

.how-it-works-header {
    max-width: 820px;
    margin: 0 auto 38px !important;
    text-align: center;
}

.how-it-works--showcase .section-title {
    margin: 0 0 8px !important;
    color: var(--how-ink) !important;
    font-size: clamp(38px, 4.2vw, 60px) !important;
    font-weight: 800 !important;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.how-it-works-header > p {
    margin: 0 !important;
    color: #606753 !important;
    font-size: clamp(17px, 1.7vw, 21px) !important;
    line-height: 1.5 !important;
}

.how-it-works-header > p strong {
    color: #7f925f !important;
    font-weight: 800 !important;
}

.how-it-works--showcase .how-steps-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 18px !important;
    width: 100%;
}

.how-it-works--showcase .how-step-card {
    display: grid !important;
    grid-template-columns: 118px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 24px !important;
    min-width: 0;
    min-height: 244px;
    padding: 28px 26px !important;
    background: #fff !important;
    border: 1.5px solid var(--how-border) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 28px rgba(59,65,18,.06) !important;
    text-align: left !important;
}

.how-it-works--showcase .how-step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(137,158,108,.55) !important;
    box-shadow: 0 16px 34px rgba(59,65,18,.10) !important;
}

.how-step-visual {
    width: 108px !important;
    height: 108px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: #fffdf1 !important;
    color: var(--how-ink) !important;
    box-shadow: inset 0 0 0 1px rgba(242,232,42,.38) !important;
}

.how-step-icon-svg {
    width: 76px !important;
    height: 76px !important;
}

.how-step-content {
    min-width: 0;
}

.how-step-badge {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 30px !important;
    margin: 0 0 12px !important;
    padding: 6px 13px !important;
    border-radius: 999px !important;
    background: var(--how-yellow-soft) !important;
    color: #667347 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .035em;
    line-height: 1 !important;
    text-transform: uppercase;
}

.how-it-works--showcase .how-step-card h3 {
    margin: 0 0 9px !important;
    color: var(--how-ink) !important;
    font-size: clamp(19px, 1.55vw, 23px) !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
}

.how-it-works--showcase .how-step-card p {
    margin: 0 !important;
    color: #62684f !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.how-step-connector {
    width: 38px !important;
    height: 38px !important;
    margin: 0 !important;
    justify-self: center;
    align-self: center;
    border-radius: 50% !important;
    background: var(--how-yellow) !important;
    color: var(--how-ink) !important;
    box-shadow: 0 8px 18px rgba(242,232,42,.28) !important;
}

.how-step-connector svg {
    width: 18px !important;
    height: 18px !important;
}

@media (max-width: 1180px) {
    .how-it-works--showcase {
        width: min(1180px, calc(100% - 36px)) !important;
    }

    .how-it-works--showcase .how-steps-grid {
        grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) !important;
        gap: 10px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 92px minmax(0, 1fr) !important;
        gap: 16px !important;
        padding: 24px 20px !important;
    }

    .how-step-visual {
        width: 84px !important;
        height: 84px !important;
    }

    .how-step-icon-svg {
        width: 58px !important;
        height: 58px !important;
    }
}

@media (max-width: 900px) {
    .how-it-works--showcase {
        width: calc(100% - 28px) !important;
        margin-top: 42px !important;
        margin-bottom: 48px !important;
    }

    .how-it-works-header {
        margin-bottom: 26px !important;
    }

    .how-it-works--showcase .how-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 96px minmax(0, 1fr) !important;
        min-height: 0;
        gap: 18px !important;
        padding: 22px 20px !important;
    }

    .how-step-connector {
        transform: rotate(90deg) !important;
        margin: -2px auto !important;
    }
}

@media (max-width: 560px) {
    .how-it-works--showcase {
        width: calc(100% - 24px) !important;
        margin: 34px auto 42px !important;
    }

    .how-it-works-header {
        max-width: 340px;
        margin-bottom: 22px !important;
    }

    .how-it-works--showcase .section-title {
        font-size: 30px !important;
        letter-spacing: -.025em;
    }

    .how-it-works-header > p {
        font-size: 15px !important;
        line-height: 1.45 !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 74px minmax(0, 1fr) !important;
        gap: 14px !important;
        padding: 17px 16px !important;
        border-radius: 17px !important;
    }

    .how-step-visual {
        width: 66px !important;
        height: 66px !important;
    }

    .how-step-icon-svg {
        width: 46px !important;
        height: 46px !important;
    }

    .how-step-badge {
        min-height: 24px !important;
        margin-bottom: 7px !important;
        padding: 4px 9px !important;
        font-size: 9px !important;
    }

    .how-it-works--showcase .how-step-card h3 {
        margin-bottom: 5px !important;
        font-size: 17px !important;
        line-height: 1.2 !important;
    }

    .how-it-works--showcase .how-step-card p {
        font-size: 13px !important;
        line-height: 1.42 !important;
    }

    .how-step-connector {
        width: 32px !important;
        height: 32px !important;
    }
}

@media (max-width: 390px) {
    .how-it-works--showcase .how-step-card {
        grid-template-columns: 64px minmax(0, 1fr) !important;
        gap: 12px !important;
        padding: 15px 14px !important;
    }

    .how-step-visual {
        width: 58px !important;
        height: 58px !important;
    }

    .how-step-icon-svg {
        width: 40px !important;
        height: 40px !important;
    }
}


/* =========================================================
   Vapy v42 - Como contratar alinhado à referência visual
   Layout mais compacto, equilibrado e coerente com a home.
   ========================================================= */
.how-it-works--showcase {
    --how-ink: #202615;
    --how-green: #899e6c;
    --how-yellow: #F2E82A;
    --how-yellow-soft: #fff8c9;
    --how-border: #e2e5dc;
    width: min(1180px, calc(100% - 40px)) !important;
    margin: 46px auto 56px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.how-it-works--showcase::before,
.how-it-works--showcase::after {
    display: none !important;
    content: none !important;
}

.how-it-works--showcase .how-it-works-header {
    max-width: 720px;
    margin: 0 auto 30px !important;
    text-align: center;
}

.how-it-works--showcase .section-title {
    margin: 0 0 7px !important;
    color: var(--how-ink) !important;
    font-size: clamp(28px, 2.5vw, 36px) !important;
    font-weight: 800 !important;
    letter-spacing: -.025em !important;
    line-height: 1.12 !important;
}

.how-it-works--showcase .how-it-works-header > p {
    margin: 0 !important;
    color: #606753 !important;
    font-size: clamp(15px, 1.3vw, 18px) !important;
    line-height: 1.5 !important;
}

.how-it-works--showcase .how-it-works-header > p strong {
    color: #7b8e5c !important;
    font-weight: 800 !important;
}

.how-it-works--showcase .how-steps-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
}

.how-it-works--showcase .how-step-card {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 18px !important;
    min-width: 0 !important;
    min-height: 210px !important;
    padding: 24px 22px !important;
    background: #fff !important;
    border: 1px solid var(--how-border) !important;
    border-radius: 18px !important;
    box-shadow: 0 9px 24px rgba(59, 65, 18, .055) !important;
    text-align: left !important;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease !important;
}

.how-it-works--showcase .how-step-card:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(137, 158, 108, .5) !important;
    box-shadow: 0 14px 30px rgba(59, 65, 18, .085) !important;
}

.how-it-works--showcase .how-step-visual {
    width: 88px !important;
    height: 88px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #fffef7 0%, #fff9d7 100%) !important;
    color: var(--how-ink) !important;
    box-shadow: inset 0 0 0 1px rgba(242, 232, 42, .4) !important;
}

.how-it-works--showcase .how-step-icon-svg {
    width: 62px !important;
    height: 62px !important;
}

.how-it-works--showcase .how-step-content {
    min-width: 0 !important;
}

.how-it-works--showcase .how-step-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 25px !important;
    margin: 0 0 10px !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    background: var(--how-yellow-soft) !important;
    color: #667347 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: .035em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.how-it-works--showcase .how-step-card h3 {
    margin: 0 0 7px !important;
    color: var(--how-ink) !important;
    font-size: clamp(17px, 1.35vw, 20px) !important;
    font-weight: 800 !important;
    letter-spacing: -.015em !important;
    line-height: 1.2 !important;
}

.how-it-works--showcase .how-step-card p {
    margin: 0 !important;
    color: #62684f !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.how-it-works--showcase .how-step-connector {
    width: 32px !important;
    height: 32px !important;
    margin: 0 !important;
    justify-self: center !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: var(--how-yellow) !important;
    color: var(--how-ink) !important;
    box-shadow: 0 6px 14px rgba(242, 232, 42, .24) !important;
}

.how-it-works--showcase .how-step-connector svg {
    width: 16px !important;
    height: 16px !important;
}

@media (max-width: 1080px) {
    .how-it-works--showcase {
        width: min(1060px, calc(100% - 32px)) !important;
    }

    .how-it-works--showcase .how-steps-grid {
        grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) !important;
        gap: 10px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 76px minmax(0, 1fr) !important;
        gap: 14px !important;
        min-height: 194px !important;
        padding: 21px 18px !important;
    }

    .how-it-works--showcase .how-step-visual {
        width: 72px !important;
        height: 72px !important;
    }

    .how-it-works--showcase .how-step-icon-svg {
        width: 50px !important;
        height: 50px !important;
    }

    .how-it-works--showcase .how-step-card h3 {
        font-size: 17px !important;
    }

    .how-it-works--showcase .how-step-card p {
        font-size: 13px !important;
    }
}

@media (max-width: 820px) {
    .how-it-works--showcase {
        width: calc(100% - 28px) !important;
        margin: 38px auto 46px !important;
    }

    .how-it-works--showcase .how-it-works-header {
        margin-bottom: 23px !important;
    }

    .how-it-works--showcase .section-title {
        font-size: 28px !important;
    }

    .how-it-works--showcase .how-it-works-header > p {
        font-size: 15px !important;
    }

    .how-it-works--showcase .how-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 78px minmax(0, 1fr) !important;
        gap: 16px !important;
        min-height: 0 !important;
        padding: 19px 18px !important;
    }

    .how-it-works--showcase .how-step-visual {
        width: 72px !important;
        height: 72px !important;
    }

    .how-it-works--showcase .how-step-connector {
        width: 29px !important;
        height: 29px !important;
        margin: -1px auto !important;
        transform: rotate(90deg) !important;
    }
}

@media (max-width: 480px) {
    .how-it-works--showcase {
        width: calc(100% - 24px) !important;
        margin: 32px auto 40px !important;
    }

    .how-it-works--showcase .how-it-works-header {
        max-width: 330px !important;
        margin-bottom: 20px !important;
    }

    .how-it-works--showcase .section-title {
        font-size: 26px !important;
    }

    .how-it-works--showcase .how-it-works-header > p {
        font-size: 14px !important;
        line-height: 1.45 !important;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 64px minmax(0, 1fr) !important;
        gap: 13px !important;
        padding: 16px 15px !important;
        border-radius: 16px !important;
    }

    .how-it-works--showcase .how-step-visual {
        width: 60px !important;
        height: 60px !important;
    }

    .how-it-works--showcase .how-step-icon-svg {
        width: 42px !important;
        height: 42px !important;
    }

    .how-it-works--showcase .how-step-badge {
        min-height: 22px !important;
        margin-bottom: 6px !important;
        padding: 4px 8px !important;
        font-size: 9px !important;
    }

    .how-it-works--showcase .how-step-card h3 {
        margin-bottom: 4px !important;
        font-size: 16px !important;
        line-height: 1.2 !important;
    }

    .how-it-works--showcase .how-step-card p {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .how-it-works--showcase .how-step-card {
        transition: none !important;
    }
}

/* =========================================================
   Vapy v43 - Planos mais largos e legíveis
   ========================================================= */
.plans-block {
    width: min(1240px, calc(100% - 48px)) !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.plans-block .section-title {
    margin-bottom: 12px !important;
    font-size: clamp(26px, 2.8vw, 34px) !important;
}

.plans-block .plans-subtitle {
    margin: 0 0 28px !important;
    font-size: 16px;
    line-height: 1.5;
}

.plans-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.plan-card-v2 {
    min-width: 0;
    padding: 30px !important;
    gap: 14px !important;
    border: 1.5px solid #dfe3d4 !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 26px rgba(59, 65, 18, .06) !important;
}

.plan-card-v2--featured {
    border-color: #F2E82A !important;
    box-shadow: 0 14px 32px rgba(242, 232, 42, .18) !important;
}

.plan-card-v2 .plan-header {
    gap: 8px;
}

.plan-card-v2 .plan-name {
    font-size: 21px !important;
    line-height: 1.2;
}

.plan-card-v2 .plan-desc {
    min-height: 48px;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.plan-card-v2 .plan-price-freq {
    display: inline-flex;
    width: fit-content;
    padding: 5px 11px;
    border-radius: 999px;
    background: #f6f5ee;
    color: #697052;
    font-size: 12px;
    font-weight: 700;
}

.plan-features-title {
    margin: 2px 0 0;
    color: #3b4112;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.plan-card-v2 .plan-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin-bottom: 8px;
}

.plan-card-v2 .plan-features li {
    min-width: 0;
    font-size: 14px;
    line-height: 1.45;
}

.plan-card-v2 .plan-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F2E82A;
    border-color: #F2E82A;
    color: #1a1a1a;
    font-weight: 800;
}

.plan-card-v2 .plan-btn:hover {
    background: #d8ce1e;
    border-color: #d8ce1e;
    color: #1a1a1a;
}

@media (max-width: 820px) {
    .plans-block {
        width: calc(100% - 32px) !important;
    }

    .plans-grid-v2 {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
}

@media (max-width: 520px) {
    .plans-block {
        width: calc(100% - 24px) !important;
    }

    .plans-block .section-title,
    .plans-block .plans-subtitle {
        text-align: left;
    }

    .plan-card-v2 {
        padding: 22px 18px !important;
    }

    .plan-card-v2 .plan-desc {
        min-height: 0;
        font-size: 14px !important;
    }

    .plan-card-v2 .plan-features {
        grid-template-columns: 1fr;
        gap: 9px;
    }
}


/* =========================================================
   Vapy v44 - Planos: 4 cards em uma linha no desktop
   e carrossel horizontal por toque no mobile.
   ========================================================= */
.plans-carousel {
    position: relative;
    width: 100%;
}

.plans-grid-v2,
.plans-page-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.plans-grid-v2 .plan-card-v2,
.plans-page-grid .plan-card-v2 {
    min-width: 0;
    height: 100%;
    padding: 24px 22px !important;
    gap: 12px !important;
}

.plans-grid-v2 .plan-card-v2 .plan-name,
.plans-page-grid .plan-card-v2 .plan-name {
    font-size: 19px !important;
    line-height: 1.22;
}

.plans-grid-v2 .plan-card-v2 .plan-desc,
.plans-page-grid .plan-card-v2 .plan-desc {
    min-height: 66px;
    font-size: 14px !important;
    line-height: 1.52 !important;
}

.plans-grid-v2 .plan-card-v2 .plan-features,
.plans-page-grid .plan-card-v2 .plan-features {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
}

.plans-grid-v2 .plan-card-v2 .plan-features li,
.plans-page-grid .plan-card-v2 .plan-features li {
    font-size: 13px !important;
    line-height: 1.38 !important;
}

.plans-carousel-nav,
.plans-carousel-dots {
    display: none;
}

@media (max-width: 1099px) and (min-width: 821px) {
    .plans-grid-v2,
    .plans-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }

    .plans-grid-v2 .plan-card-v2 .plan-desc,
    .plans-page-grid .plan-card-v2 .plan-desc {
        min-height: 48px;
    }
}

@media (max-width: 820px) {
    .plans-block {
        overflow: visible !important;
    }

    .plans-carousel {
        margin-inline: 0;
        padding-bottom: 28px;
    }

    .plans-grid-v2,
    .plans-page-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 14px !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 4px;
        padding: 4px 4px 14px !important;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .plans-grid-v2::-webkit-scrollbar,
    .plans-page-grid::-webkit-scrollbar {
        display: none;
    }

    .plans-grid-v2 .plan-card-v2,
    .plans-page-grid .plan-card-v2 {
        flex: 0 0 min(84vw, 340px);
        width: min(84vw, 340px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        height: auto;
        padding: 24px 20px !important;
    }

    .plans-grid-v2 .plan-card-v2 .plan-desc,
    .plans-page-grid .plan-card-v2 .plan-desc {
        min-height: 0;
        font-size: 14px !important;
    }

    .plans-grid-v2 .plan-card-v2 .plan-features,
    .plans-page-grid .plan-card-v2 .plan-features {
        gap: 9px !important;
    }

    .plans-carousel-nav {
        position: absolute;
        z-index: 5;
        top: 46%;
        width: 42px;
        height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(59, 65, 18, .12);
        border-radius: 14px;
        background: rgba(255, 255, 255, .96);
        color: #3b4112;
        box-shadow: 0 10px 24px rgba(59, 65, 18, .14);
        font-size: 26px;
        line-height: 1;
        cursor: pointer;
        transform: translateY(-50%);
        transition: opacity .18s ease, transform .18s ease;
    }

    .plans-carousel-nav.is-prev { left: -7px; }
    .plans-carousel-nav.is-next { right: -7px; }
    .plans-carousel-nav:active { transform: translateY(-50%) scale(.96); }
    .plans-carousel-nav[disabled] { opacity: .35; pointer-events: none; }

    .plans-carousel-dots {
        min-height: 10px;
        margin-top: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
    }

    .plans-carousel-dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: #d9ddce;
        cursor: pointer;
        transition: width .18s ease, background .18s ease;
    }

    .plans-carousel-dot.is-active {
        width: 24px;
        background: #F2E82A;
    }
}

@media (max-width: 420px) {
    .plans-grid-v2 .plan-card-v2,
    .plans-page-grid .plan-card-v2 {
        flex-basis: calc(100vw - 58px);
        width: calc(100vw - 58px);
    }

    .plans-carousel-nav {
        width: 38px;
        height: 48px;
    }
}


/* =========================================================
   Vapy v45 - Performance das imagens do blog
   Imagens nativas, lazy loading e dimensões estáveis.
   ========================================================= */
.home-blog-image,
.blog-card__image,
.blog-post-cover {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fbf1bf, #f2e82a 55%, #899e6c);
}

.home-blog-image img,
.blog-card__image img,
.blog-post-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-blog-image img,
.blog-card__image img {
    transition: transform .28s ease;
}

.home-blog-card:hover .home-blog-image img,
.blog-card:hover .blog-card__image img {
    transform: scale(1.025);
}

.blog-post-cover {
    margin: 0;
}

.blog-post-cover img {
    aspect-ratio: 16 / 7;
}

@media (max-width: 920px) {
    .blog-post-cover img {
        aspect-ratio: 16 / 10;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-blog-image img,
    .blog-card__image img {
        transition: none;
    }
}


/* =========================================================
   Vapy v46 - Banner "Quer ser uma Vapy?"
   Usa imagens dedicadas para desktop e mobile e substitui
   o CTA verde anterior por uma peça visual responsiva.
   ========================================================= */
.home-pro-banner {
    width: min(1180px, calc(100% - 40px)) !important;
    margin-top: clamp(44px, 5vw, 68px) !important;
    margin-bottom: clamp(40px, 4.5vw, 64px) !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.home-pro-banner-link {
    display: block;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #fbf1bf;
    box-shadow: 0 18px 42px rgba(59, 65, 18, .10);
    transition: transform .2s ease, box-shadow .2s ease;
}

.home-pro-banner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(59, 65, 18, .14);
}

.home-pro-banner picture,
.home-pro-banner img {
    display: block;
    width: 100%;
}

.home-pro-banner img {
    height: auto;
    object-fit: cover;
}

.home-pro-banner-link:focus-visible {
    outline: 3px solid #F2E82A;
    outline-offset: 4px;
}

@media (max-width: 700px) {
    .home-pro-banner {
        width: calc(100% - 24px) !important;
        margin-top: 36px !important;
        margin-bottom: 40px !important;
    }

    .home-pro-banner-link {
        border-radius: 18px;
        box-shadow: 0 14px 34px rgba(59, 65, 18, .10);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-pro-banner-link {
        transition: none;
    }
}

/* =========================================================
   Vapy v47 - Depoimentos administráveis e slider responsivo
   ========================================================= */
.testimonials-slider-section {
    width: min(1180px, calc(100% - 40px));
    margin-top: clamp(52px, 6vw, 78px) !important;
    margin-bottom: clamp(52px, 6vw, 78px) !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.testimonials-slider-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.testimonials-slider-head > div:first-child {
    max-width: 720px;
}

.testimonials-slider-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 9px;
    padding: 5px 11px;
    border: 1px solid rgba(137, 158, 108, .25);
    border-radius: 999px;
    background: #fbf1bf;
    color: #3b4112;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1;
    text-transform: uppercase;
}

.testimonials-slider-section .section-title {
    margin: 0 0 7px !important;
    color: #3b4112;
    font-size: clamp(27px, 2.7vw, 36px) !important;
    line-height: 1.16;
}

.testimonials-slider-head p {
    margin: 0;
    color: #66705a;
    font-size: 15px;
    line-height: 1.55;
}

.testimonials-slider-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.testimonials-slider-controls button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe3d4;
    border-radius: 50%;
    background: #fff;
    color: #3b4112;
    box-shadow: 0 8px 20px rgba(59, 65, 18, .07);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.testimonials-slider-controls button:hover,
.testimonials-slider-controls button:focus-visible {
    border-color: #F2E82A;
    background: #fffceb;
    transform: translateY(-2px);
    outline: none;
}

.testimonials-slider-controls svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testimonials-slider-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-inline: contain;
    border-radius: 20px;
}

.testimonials-slider-viewport::-webkit-scrollbar {
    display: none;
}

.testimonials-slider-track {
    display: flex;
    align-items: stretch;
    grid-auto-rows: 1fr;
    gap: 22px;
    width: max-content;
    min-width: 100%;
    padding: 2px 1px 10px;
}

.testimonials-slider-section .testimonial-slide {
    position: relative;
    flex: 0 0 calc((min(1180px, calc(100vw - 40px)) - 44px) / 3);
    min-width: 0;
    min-height: 254px;
    display: flex;
    flex-direction: column;
    padding: 28px !important;
    overflow: hidden;
    scroll-snap-align: start;
    background:
        radial-gradient(circle at 100% 0%, rgba(242, 232, 42, .16), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fffef9 100%) !important;
    border: 1px solid #dfe3d4 !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 30px rgba(59, 65, 18, .065) !important;
}

.testimonial-quote-mark {
    position: absolute;
    top: 12px;
    right: 18px;
    color: rgba(137, 158, 108, .15);
    font-family: Georgia, serif;
    font-size: 74px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.testimonials-slider-section .testimonial-stars {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 3px;
    margin: 0 0 17px;
    color: #d6d9ce;
    font-size: 16px;
    letter-spacing: 0;
}

.testimonials-slider-section .testimonial-stars .is-filled {
    color: #d3b800;
}

.testimonials-slider-section .testimonial-text {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    margin: 0 0 24px !important;
    color: #2f3419 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.testimonial-author-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F2E82A;
    color: #3b4112;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(242, 232, 42, .22);
}

.testimonial-author-row > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.testimonials-slider-section .testimonial-author {
    margin: 0;
    color: #3b4112;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.testimonial-author-row > div > span {
    margin-top: 2px;
    color: #89907a;
    font-size: 12px;
    line-height: 1.25;
}

.testimonials-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    min-height: 20px;
    margin-top: 14px;
}

.testimonials-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d8ddcc;
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.testimonials-slider-dot.is-active {
    width: 25px;
    background: #F2E82A;
}

@media (max-width: 1019px) {
    .testimonials-slider-section .testimonial-slide {
        flex-basis: calc((100vw - 62px) / 2);
    }
}

@media (max-width: 719px) {
    .testimonials-slider-section {
        width: calc(100% - 24px);
        margin-top: 42px !important;
        margin-bottom: 46px !important;
    }

    .testimonials-slider-head {
        align-items: flex-end;
        gap: 14px;
        margin-bottom: 18px;
    }

    .testimonials-slider-section .section-title {
        font-size: 26px !important;
    }

    .testimonials-slider-head p {
        font-size: 14px;
    }

    .testimonials-slider-controls {
        gap: 7px;
    }

    .testimonials-slider-controls button {
        width: 38px;
        height: 38px;
    }

    .testimonials-slider-section .testimonial-slide {
        flex-basis: calc(100vw - 24px);
        min-height: 248px;
        padding: 24px 22px !important;
    }

    .testimonials-slider-track {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .testimonials-slider-head > div:first-child {
        grid-column: 1 / -1;
    }

    .testimonials-slider-controls {
        grid-column: 2;
        justify-self: end;
        margin-top: -2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-slider-viewport {
        scroll-behavior: auto;
    }

    .testimonials-slider-controls button,
    .testimonials-slider-dot {
        transition: none;
    }
}


/* =========================================================
   Vapy v48 - Correção do slider de depoimentos
   Evita corte do terceiro card no desktop, mostra o card
   inteiro no mobile e remove a sombra inferior desnecessária.
   ========================================================= */
.testimonials-slider-viewport {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 0;
    scroll-padding-inline: 0;
}

.testimonials-slider-track {
    width: 100%;
    min-width: 100%;
    max-width: none;
    padding: 0;
    gap: 22px;
    box-sizing: border-box;
}

.testimonials-slider-section .testimonial-slide {
    flex: 0 0 calc((100% - 44px) / 3);
    width: calc((100% - 44px) / 3);
    max-width: calc((100% - 44px) / 3);
    box-shadow: none !important;
}

@media (max-width: 1019px) {
    .testimonials-slider-section .testimonial-slide {
        flex-basis: calc((100% - 22px) / 2);
        width: calc((100% - 22px) / 2);
        max-width: calc((100% - 22px) / 2);
    }
}

@media (max-width: 719px) {
    .testimonials-slider-section {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
    }

    .testimonials-slider-viewport {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .testimonials-slider-track {
        width: 100%;
        min-width: 100%;
        gap: 14px;
        padding: 0;
    }

    .testimonials-slider-section .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        box-shadow: none !important;
    }
}


/* =========================================================
   Vapy v52 - CTA Seja uma Vapy no cabeçalho
   ========================================================= */
.hdr-pro-cta{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:9px 15px;border:1px solid #899e6c;border-radius:8px;background:#899e6c;color:#fff!important;font-size:13px;font-weight:800;text-decoration:none;white-space:nowrap;box-shadow:0 4px 12px rgba(137,158,108,.18);transition:background .15s,border-color .15s,transform .15s,box-shadow .15s;}
.hdr-pro-cta:hover{background:#768b5b;border-color:#768b5b;color:#fff!important;transform:translateY(-1px);box-shadow:0 7px 16px rgba(137,158,108,.25);}
.hdr-pro-cta:focus-visible{outline:3px solid rgba(137,158,108,.32);outline-offset:3px;}
.mob-drawer-cta-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin:10px 12px 12px;}
.mob-drawer-links .mob-drawer-cta{display:flex;align-items:center;justify-content:center;min-width:0;min-height:46px;margin:0;padding:10px 7px;border:0;border-radius:8px;text-align:center;font-size:11px;font-weight:900;line-height:1.15;letter-spacing:.01em;}
.mob-drawer-links .mob-drawer-cta--service{background:#F2E82A;color:#1a1a1a;}
.mob-drawer-links .mob-drawer-cta--pro{background:#899e6c;color:#fff;}
@media(max-width:767px){.hdr-pro-cta{display:none!important;}}

/* ========================================================================== 
   Vapy Home V140.9 — carrossel de serviços, passos mobile e conteúdo responsivo
   ========================================================================== */
.home-services-block .service-carousel {
    --home-service-gap: 24px;
    position: relative;
}

.home-services-block .service-carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    padding: 4px 4px 18px;
}

.home-services-block .service-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.home-services-block .service-grid.is-slider {
    display: flex !important;
    grid-template-columns: none !important;
    gap: var(--home-service-gap) !important;
    width: 100%;
}

.home-services-block .service-grid.is-slider .service-card {
    min-width: 0;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

@media (min-width: 981px) {
    .home-services-block .service-visible-1 .service-card {
        flex: 0 0 100% !important;
    }

    .home-services-block .service-visible-2 .service-card {
        flex: 0 0 calc((100% - 24px) / 2) !important;
    }

    .home-services-block .service-visible-3 .service-card {
        flex: 0 0 calc((100% - 48px) / 3) !important;
    }

    .home-services-block .service-visible-4 .service-card {
        flex: 0 0 calc((100% - 72px) / 4) !important;
    }

    .home-services-block .service-carousel:not(.has-desktop-overflow) .service-carousel-nav,
    .home-services-block .service-carousel:not(.has-desktop-overflow) .service-carousel-dots {
        display: none !important;
    }
}

@media (max-width: 980px) {
    .home-services-block .service-carousel {
        --home-service-gap: 16px;
    }

    .home-services-block .service-grid.is-slider .service-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: none !important;
    }

    .home-services-block .service-carousel-nav {
        top: 46%;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(59, 65, 18, .12);
        background: rgba(255, 255, 255, .96);
        font-size: 24px;
    }

    .home-services-block .service-carousel-nav.is-prev {
        left: 10px;
    }

    .home-services-block .service-carousel-nav.is-next {
        right: 10px;
    }

    .home-services-block .service-carousel-dots {
        margin-top: 8px;
    }
}

@media (max-width: 640px) {
    .home-services-block .service-carousel-viewport {
        padding-inline: 2px;
    }

    .home-services-block .service-card {
        min-height: 0 !important;
    }

    .home-services-block .service-image {
        height: clamp(190px, 52vw, 230px) !important;
    }

    .home-services-block .service-card-body {
        padding: 20px 14px 12px !important;
    }

    .home-services-block .service-card .btn {
        width: 100%;
        min-height: 50px;
    }
}

/* A etiqueta só entra na composição mobile solicitada. */
.how-it-works--showcase .how-it-works-eyebrow {
    display: none;
}

@media (max-width: 760px) {
    .how-it-works--showcase {
        padding: 34px 18px 38px !important;
        overflow: hidden;
    }

    .how-it-works--showcase .how-it-works-header {
        margin: 0 auto 30px !important;
        text-align: center;
    }

    .how-it-works--showcase .how-it-works-eyebrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        padding: 6px 15px;
        border: 1px solid rgba(137, 158, 108, .34);
        border-radius: 999px;
        color: #3b4112;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .16em;
        text-transform: uppercase;
    }

    .how-it-works--showcase .section-title {
        position: relative;
        margin: 0 0 18px !important;
        font-size: clamp(34px, 10vw, 44px) !important;
        line-height: 1.02 !important;
        letter-spacing: -.045em;
    }

    .how-it-works--showcase .section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px;
        width: 72px;
        height: 5px;
        border-radius: 999px;
        background: #f2e82a;
        transform: translateX(-50%) rotate(-4deg);
    }

    .how-it-works--showcase .how-it-works-header > p {
        margin: 0 !important;
        color: #50554b;
        font-size: clamp(18px, 5.3vw, 23px) !important;
        line-height: 1.35 !important;
    }

    .how-it-works--showcase .how-steps-grid {
        position: relative;
        display: flex !important;
        flex-direction: column;
        gap: 24px !important;
        padding: 0 0 0 58px;
        counter-reset: vapy-how-step;
    }

    .how-it-works--showcase .how-steps-grid::before {
        content: '';
        position: absolute;
        top: 34px;
        bottom: 34px;
        left: 22px;
        border-left: 2px dashed rgba(59, 65, 18, .62);
    }

    .how-it-works--showcase .how-step-card {
        position: relative;
        display: grid !important;
        grid-template-columns: 96px minmax(0, 1fr);
        align-items: center;
        gap: 18px !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 22px 20px !important;
        border-radius: 22px !important;
        counter-increment: vapy-how-step;
    }

    .how-it-works--showcase .how-step-card::before {
        content: counter(vapy-how-step);
        position: absolute;
        top: 50%;
        left: -58px;
        z-index: 2;
        display: grid;
        width: 44px;
        height: 44px;
        place-items: center;
        border-radius: 50%;
        background: #f2e82a;
        color: #232814;
        font-size: 20px;
        font-weight: 900;
        box-shadow: 0 8px 18px rgba(242, 232, 42, .28);
        transform: translateY(-50%);
    }

    .how-it-works--showcase .how-step-visual {
        width: 92px !important;
        height: 92px !important;
        margin: 0 !important;
        border-radius: 50% !important;
    }

    .how-it-works--showcase .how-step-icon-svg {
        width: 64px !important;
        height: 64px !important;
    }

    .how-it-works--showcase .how-step-content {
        min-width: 0;
        text-align: left;
    }

    .how-it-works--showcase .how-step-badge,
    .how-it-works--showcase .how-step-connector {
        display: none !important;
    }

    .how-it-works--showcase .how-step-card h3 {
        margin: 0 0 8px !important;
        font-size: clamp(21px, 5.8vw, 28px) !important;
        line-height: 1.15 !important;
    }

    .how-it-works--showcase .how-step-card p {
        margin: 0 !important;
        color: #5c625a !important;
        font-size: clamp(15px, 4.2vw, 18px) !important;
        line-height: 1.42 !important;
    }

    /* A imagem da seção "Acreditamos que" permanece compacta no celular. */
    .home-belief-split__media {
        width: 100%;
        height: auto !important;
        max-height: 260px;
        aspect-ratio: 16 / 10 !important;
    }

    .home-belief-split__media picture,
    .home-belief-split__media img {
        width: 100%;
        height: 100%;
    }

    .home-belief-split__media img {
        object-fit: cover !important;
        object-position: center center !important;
    }

    .home-belief-split__content {
        padding: 24px 20px 26px !important;
    }

    .home-belief-split__content h2 {
        font-size: clamp(30px, 9vw, 36px) !important;
    }

    .home-belief-split__content p {
        font-size: 14px !important;
        line-height: 1.48 !important;
    }

    .home-blog-head .section-title {
        margin-bottom: 12px !important;
        font-size: clamp(34px, 11vw, 44px) !important;
        line-height: 1.02 !important;
        letter-spacing: -.035em;
    }
}

@media (max-width: 430px) {
    .how-it-works--showcase {
        padding-inline: 14px !important;
    }

    .how-it-works--showcase .how-steps-grid {
        padding-left: 50px;
    }

    .how-it-works--showcase .how-steps-grid::before {
        left: 18px;
    }

    .how-it-works--showcase .how-step-card {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 14px !important;
        padding: 18px 15px !important;
    }

    .how-it-works--showcase .how-step-card::before {
        left: -50px;
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .how-it-works--showcase .how-step-visual {
        width: 76px !important;
        height: 76px !important;
    }

    .how-it-works--showcase .how-step-icon-svg {
        width: 54px !important;
        height: 54px !important;
    }
}

.home-blog-subtitle {
    display: grid;
    gap: 4px;
    margin: 0;
}

.home-blog-subtitle strong,
.home-blog-subtitle span {
    display: block;
}

.home-blog-subtitle strong {
    color: #3b4112;
    font-weight: 800;
}

.home-services-block .service-carousel-nav[hidden],
.home-services-block .service-carousel-dots[hidden] {
    display: none !important;
}

/* =========================================================
   Vapy v141.2 — restauração compacta do bloco institucional no desktop
   Recupera o enquadramento anterior sem alterar tablet e mobile.
   ========================================================= */
@media (min-width: 1101px) {
    .home-belief-split {
        width: min(1020px, calc(100% - 72px)) !important;
        grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr) !important;
        column-gap: 26px !important;
        row-gap: 0 !important;
        align-items: stretch !important;
        grid-auto-rows: 330px !important;
        height: 330px !important;
        min-height: 330px !important;
        max-height: 330px !important;
        margin-top: 34px !important;
        margin-bottom: 40px !important;
        overflow: visible !important;
    }

    .home-belief-split__media,
    .home-belief-split__content {
        align-self: stretch !important;
        min-height: 330px !important;
        height: 330px !important;
        max-height: 330px !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }

    .home-belief-split__media picture,
    .home-belief-split__media img {
        width: 100% !important;
        height: 100% !important;
    }

    .home-belief-split__media img {
        object-fit: cover !important;
        object-position: center center !important;
    }

    .home-belief-split__content {
        padding: 18px 22px !important;
        justify-content: center !important;
    }

    .home-belief-split__eyebrow {
        display: inline-flex !important;
        flex: 0 0 auto !important;
        min-height: 24px !important;
        margin: 0 0 7px !important;
        padding: 4px 10px !important;
        font-size: 9px !important;
        line-height: 1 !important;
    }

    .home-belief-split__content h2 {
        flex: 0 0 auto !important;
        margin: 0 0 8px !important;
        font-size: 27px !important;
        line-height: 1.02 !important;
    }

    .home-belief-split__content p {
        flex: 0 0 auto !important;
        margin: 0 0 7px !important;
        font-size: 12.5px !important;
        line-height: 1.32 !important;
    }

    .home-belief-split__content p:last-of-type {
        margin-bottom: 10px !important;
    }

    .home-belief-split__cta {
        flex: 0 0 auto !important;
        min-height: 38px !important;
        padding: 8px 14px !important;
        border-radius: 10px !important;
        font-size: 12.5px !important;
    }

    .home-belief-split__cta svg {
        width: 16px !important;
        height: 16px !important;
    }
}

@media (min-width: 761px) and (max-width: 1100px) {
    .home-belief-split {
        width: min(960px, calc(100% - 40px)) !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        column-gap: 24px !important;
        row-gap: 0 !important;
        align-items: stretch !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .home-belief-split__media,
    .home-belief-split__content {
        min-height: 390px !important;
        height: 390px !important;
        max-height: 390px !important;
        overflow: hidden !important;
    }

    .home-belief-split__content {
        padding: 24px 22px !important;
        justify-content: center !important;
    }

    .home-belief-split__content h2 {
        font-size: clamp(26px, 3.2vw, 31px) !important;
    }

    .home-belief-split__content p {
        font-size: 13px !important;
        line-height: 1.38 !important;
    }
}

/* =========================================================
   Vapy v141.3 — estabilização final da home no mobile
   Corrige regressões de "Como contratar", elimina o espaço
   entre imagem/conteúdo institucional e recompõe o cabeçalho
   do Guia Vapy sem alterar desktop ou tablet.
   ========================================================= */
@media (max-width: 760px) {
    /* COMO CONTRATAR: reset completo contra regras legadas duplicadas. */
    body .how-it-works--showcase {
        position: relative !important;
        display: block !important;
        width: calc(100% - 24px) !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 34px auto 38px !important;
        padding: 26px 14px 22px !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    body .how-it-works--showcase .how-it-works-header {
        position: static !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 0 24px !important;
        padding: 0 !important;
        text-align: center !important;
        overflow: visible !important;
    }

    body .how-it-works--showcase .how-it-works-eyebrow {
        display: inline-flex !important;
        width: auto !important;
        height: auto !important;
        min-height: 28px !important;
        margin: 0 0 10px !important;
        padding: 5px 12px !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
    }

    body .how-it-works--showcase .section-title {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 0 16px !important;
        padding: 0 0 9px !important;
        font-size: clamp(34px, 10.5vw, 45px) !important;
        line-height: 1.02 !important;
        text-align: center !important;
        transform: none !important;
    }

    body .how-it-works--showcase .how-it-works-header > p {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: clamp(18px, 5vw, 22px) !important;
        line-height: 1.35 !important;
        text-align: center !important;
    }

    body .how-it-works--showcase .how-steps-grid {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 0 0 50px !important;
        gap: 18px !important;
        overflow: visible !important;
        box-sizing: border-box !important;
        counter-reset: vapy-how-step !important;
    }

    body .how-it-works--showcase .how-steps-grid::before {
        content: '' !important;
        position: absolute !important;
        z-index: 0 !important;
        top: 30px !important;
        bottom: 30px !important;
        left: 18px !important;
        width: 0 !important;
        height: auto !important;
        border: 0 !important;
        border-left: 2px dashed rgba(59, 65, 18, .58) !important;
        transform: none !important;
    }

    body .how-it-works--showcase .how-step-card {
        position: relative !important;
        z-index: 1 !important;
        display: grid !important;
        grid-template-columns: 78px minmax(0, 1fr) !important;
        align-items: center !important;
        flex: 0 0 auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: 136px !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 18px 15px !important;
        gap: 14px !important;
        overflow: visible !important;
        box-sizing: border-box !important;
        border: 1px solid rgba(137, 158, 108, .22) !important;
        border-radius: 22px !important;
        background: #fff !important;
        box-shadow: 0 14px 28px rgba(59, 65, 18, .08) !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        counter-increment: vapy-how-step !important;
    }

    body .how-it-works--showcase .how-step-card::before {
        content: counter(vapy-how-step) !important;
        position: absolute !important;
        z-index: 3 !important;
        top: 50% !important;
        left: -50px !important;
        display: grid !important;
        width: 38px !important;
        height: 38px !important;
        place-items: center !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 50% !important;
        background: #f2e82a !important;
        color: #232814 !important;
        font-size: 17px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        box-shadow: 0 8px 18px rgba(242, 232, 42, .28) !important;
        transform: translateY(-50%) !important;
    }

    body .how-it-works--showcase .how-step-visual {
        position: static !important;
        display: grid !important;
        width: 76px !important;
        height: 76px !important;
        min-width: 76px !important;
        min-height: 76px !important;
        margin: 0 !important;
        padding: 0 !important;
        place-items: center !important;
        border-radius: 50% !important;
        transform: none !important;
    }

    body .how-it-works--showcase .how-step-icon-svg {
        display: block !important;
        width: 54px !important;
        height: 54px !important;
        max-width: 54px !important;
        max-height: 54px !important;
    }

    body .how-it-works--showcase .how-step-content {
        position: static !important;
        display: block !important;
        min-width: 0 !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
        overflow: visible !important;
        transform: none !important;
    }

    body .how-it-works--showcase .how-step-badge,
    body .how-it-works--showcase .how-step-connector {
        display: none !important;
    }

    body .how-it-works--showcase .how-step-card h3 {
        position: static !important;
        display: block !important;
        width: auto !important;
        height: auto !important;
        margin: 0 0 7px !important;
        padding: 0 !important;
        font-size: clamp(20px, 5.6vw, 25px) !important;
        line-height: 1.12 !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        transform: none !important;
    }

    body .how-it-works--showcase .how-step-card p {
        position: static !important;
        display: block !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #5c625a !important;
        font-size: clamp(14px, 4vw, 17px) !important;
        line-height: 1.38 !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        transform: none !important;
    }

    /* Mantém os planos abaixo do fluxo, sem invasão ou sobreposição. */
    body .plans-block {
        position: relative !important;
        z-index: 0 !important;
        clear: both !important;
        margin-top: 0 !important;
    }

    /* ACREDITAMOS QUE: duas linhas naturais, sem linha fantasma de 1fr. */
    body section.home-belief-split {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        grid-template-rows: auto auto !important;
        grid-auto-rows: auto !important;
        align-items: start !important;
        width: calc(100% - 24px) !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 34px auto 40px !important;
        padding: 0 !important;
        column-gap: 0 !important;
        row-gap: 16px !important;
        gap: 16px !important;
        overflow: visible !important;
    }

    body section.home-belief-split .home-belief-split__media {
        grid-row: auto !important;
        align-self: start !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        aspect-ratio: 4 / 3 !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }

    body section.home-belief-split .home-belief-split__media picture,
    body section.home-belief-split .home-belief-split__media img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body section.home-belief-split .home-belief-split__media img {
        object-fit: cover !important;
        object-position: center center !important;
    }

    body section.home-belief-split .home-belief-split__content {
        grid-row: auto !important;
        align-self: start !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 24px 20px 26px !important;
        border-radius: 20px !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    body section.home-belief-split .home-belief-split__content h2 {
        margin-bottom: 14px !important;
        font-size: clamp(30px, 9vw, 36px) !important;
        line-height: 1.04 !important;
    }

    body section.home-belief-split .home-belief-split__content p {
        font-size: 14px !important;
        line-height: 1.48 !important;
    }

    /* GUIA VAPY: devolve o respiro aprovado entre etiqueta e título. */
    body .home-blog-head .home-blog-eyebrow {
        display: inline-flex !important;
        width: auto !important;
        margin: 0 0 10px !important;
    }

    body .home-blog-head .section-title {
        margin: 0 0 12px !important;
    }

    body .home-blog-head .home-blog-subtitle {
        margin-top: 0 !important;
        gap: 5px !important;
    }
}

@media (max-width: 390px) {
    body .how-it-works--showcase .how-steps-grid {
        padding-left: 46px !important;
    }

    body .how-it-works--showcase .how-steps-grid::before {
        left: 16px !important;
    }

    body .how-it-works--showcase .how-step-card {
        grid-template-columns: 70px minmax(0, 1fr) !important;
        min-height: 128px !important;
        padding: 16px 13px !important;
        gap: 12px !important;
    }

    body .how-it-works--showcase .how-step-card::before {
        left: -46px !important;
        width: 34px !important;
        height: 34px !important;
        font-size: 16px !important;
    }

    body .how-it-works--showcase .how-step-visual {
        width: 68px !important;
        height: 68px !important;
        min-width: 68px !important;
        min-height: 68px !important;
    }

    body .how-it-works--showcase .how-step-icon-svg {
        width: 48px !important;
        height: 48px !important;
    }
}

/* =========================================================
   Vapy v175 — legibilidade do texto institucional da home
   Deve permanecer no final do arquivo para prevalecer sobre
   as regras legadas compactas da versão v141.2.
   ========================================================= */
@media (min-width: 1101px) {
    body section.home-belief-split {
        grid-auto-rows: minmax(380px, auto) !important;
        height: auto !important;
        min-height: 380px !important;
        max-height: none !important;
    }

    body section.home-belief-split .home-belief-split__media,
    body section.home-belief-split .home-belief-split__content {
        height: auto !important;
        min-height: 380px !important;
        max-height: none !important;
    }

    body section.home-belief-split .home-belief-split__content p {
        font-size: 15px !important;
        line-height: 1.45 !important;
    }
}
