﻿/* ================================================================
   VAPY CHECKOUT v7  Single-Page Scroll
   Classes: vpf-* (Vapy Parafuzo Framework)
   ================================================================ */

:root {
    --vpf-primary: #F1DD52;
    --vpf-primary-dark: #c9b730;
    --vpf-primary-light: #fefce8;
    --vpf-primary-text: #1a1a1a;
    --vpf-success: #16a34a;
    --vpf-danger: #dc2626;
    --vpf-gray-50: #f9fafb;
    --vpf-gray-100: #f3f4f6;
    --vpf-gray-200: #e5e7eb;
    --vpf-gray-400: #9ca3af;
    --vpf-gray-600: #4b5563;
    --vpf-gray-800: #1f2937;
    --vpf-radius: 12px;
    --vpf-shadow: 0 1px 4px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.05);
    --vpf-shadow-md: 0 4px 24px rgba(241,221,82,.25);
}

/* LAYOUT */
.vpf-checkout {
    max-width: 1140px;
    margin: 0 auto;
    padding: 24px 16px 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--vpf-gray-800);
}

.vpf-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

@media (max-width: 900px) {
    .vpf-body { grid-template-columns: 1fr; }
    /* Sidebar esconde no mobile — substituído pela barra inferior fixa */
    .vpf-summary-col { display: none; }
}

/* ── BARRA INFERIOR FIXA — MOBILE ONLY ─────────────────────────────── */
.vpf-mobile-bar { display: none; }

@media (max-width: 900px) {
    .vpf-mobile-bar {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 200;
        background: #fff;
        border-top: 1.5px solid #e5e7eb;
        padding: 12px 16px;
        align-items: center;
        gap: 12px;
        box-shadow: 0 -4px 20px rgba(0,0,0,.10);
    }
    .vpf-mobile-bar-price { flex: 1; min-width: 0; }
    .vpf-mobile-bar-label { font-size: 11px; color: #6b7280; font-weight: 500; margin: 0 0 1px; }
    .vpf-mobile-bar-value { font-size: 22px; font-weight: 800; color: #1a1a1a; line-height: 1.1; white-space: nowrap; }
    .vpf-mobile-bar-btn {
        flex-shrink: 0;
        background: #F5C800; color: #3b3000;
        border: none; border-radius: 10px;
        font-size: 15px; font-weight: 800;
        padding: 13px 24px; cursor: pointer;
        display: flex; align-items: center; gap: 6px;
        white-space: nowrap;
    }
    .vpf-mobile-bar-btn:disabled { opacity: .6; cursor: not-allowed; }
    /* Espaço extra no final para a barra não cobrir o botão original */
    .vpf-checkout { padding-bottom: 100px; }
    /* Esconde o botão "Confirmar" original no mobile (está na barra) */
    .vpf-btn-finalizar-wrap { display: none; }
    /* Info inline no mobile — trust badges compactos */
    .vpf-mobile-summary-inline {
        display: block;
        background: #fff;
        border-radius: 12px;
        border: 1.5px solid #e5e7eb;
        padding: 14px 16px;
        margin-bottom: 16px;
        font-size: 13px;
        color: #4b5563;
    }
    .vpf-mobile-summary-inline .vpf-trust-badges {
        flex-direction: row; flex-wrap: wrap; gap: 8px; font-size: 12px;
    }
}

@media (min-width: 901px) {
    .vpf-mobile-bar { display: none !important; }
    .vpf-mobile-summary-inline { display: none !important; }
    .vpf-btn-finalizar-wrap { display: block; }
}

.vpf-main-col { display: flex; flex-direction: column; gap: 16px; }

/* SEÇÃO */
.vpf-section {
    background: #fff;
    border-radius: var(--vpf-radius);
    box-shadow: var(--vpf-shadow);
    padding: 24px 28px 28px;
}

.vpf-section-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.vpf-section-num {
    width: 32px; height: 32px; min-width: 32px;
    border-radius: 50%;
    background: var(--vpf-primary);
    color: var(--vpf-primary-text);
    font-size: 14px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}

.vpf-section-title { font-size: 18px; font-weight: 700; margin: 0 0 4px; color: var(--vpf-gray-800); }
.vpf-section-desc  { font-size: 13px; color: var(--vpf-gray-600); margin: 0; line-height: 1.5; }
.vpf-section-label { font-size: 14px; font-weight: 600; color: var(--vpf-gray-800); margin: 0 0 10px; }

/* PROPERTY CARDS */
.vpf-property-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }

.vpf-property-card {
    border: 2px solid var(--vpf-gray-200);
    border-radius: var(--vpf-radius);
    padding: 18px 14px;
    background: #fff;
    cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    transition: border-color .15s, box-shadow .15s, transform .1s;
    text-align: center;
}
.vpf-property-card:hover { border-color: var(--vpf-primary); box-shadow: var(--vpf-shadow-md); transform: translateY(-2px); }
.vpf-property-card.vpf-selected { border-color: var(--vpf-primary); background: var(--vpf-primary-light); box-shadow: 0 0 0 3px rgba(241,221,82,.35); }
.vpf-prop-icon  { font-size: 0; }
.vpf-prop-name  { font-size: 14px; font-weight: 600; color: var(--vpf-gray-800); }
.vpf-prop-hours { font-size: 12px; color: var(--vpf-gray-600); }

/* CONTADORES */
.vpf-counters { display: flex; flex-direction: column; }

.vpf-counter-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--vpf-gray-100);
}
.vpf-counter-row--last { border-bottom: none; }
.vpf-counter-info { display: flex; flex-direction: column; gap: 2px; }
.vpf-counter-label { font-size: 15px; font-weight: 600; }
.vpf-counter-hint  { font-size: 12px; color: var(--vpf-gray-600); }

.vpf-counter-ctrl {
    display: flex; align-items: center; gap: 12px;
    background: var(--vpf-gray-50);
    border-radius: 999px;
    padding: 4px;
    border: 1.5px solid var(--vpf-gray-200);
}

.vpf-cnt-btn {
    width: 32px; height: 32px;
    border-radius: 50%; border: none;
    background: #fff;
    font-size: 18px; font-weight: 600;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--vpf-primary-dark);
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    transition: background .15s, transform .1s;
}
.vpf-cnt-btn:hover  { background: var(--vpf-primary-light); transform: scale(1.08); }
.vpf-cnt-btn:active { transform: scale(.95); }
.vpf-cnt-btn:disabled { opacity: .4; cursor: default; }
.vpf-cnt-val { font-size: 17px; font-weight: 700; min-width: 40px; text-align: center; }

/* FREQUÊNCIA */
.vpf-freq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 720px) { .vpf-freq-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .vpf-freq-grid { grid-template-columns: 1fr; } }

.vpf-freq-card {
    position: relative;
    border: 2px solid var(--vpf-gray-200);
    border-radius: var(--vpf-radius);
    padding: 14px 12px 12px;
    background: #fff;
    cursor: pointer;
    display: flex; flex-direction: column; gap: 4px;
    transition: border-color .15s;
    overflow: hidden;
}
.vpf-freq-card--with-badge { padding-top: 30px; }
.vpf-freq-card--with-badge .vpf-freq-type { padding-right: 92px; }
.vpf-freq-card input[type="radio"] { display: none; }
.vpf-freq-card:hover { border-color: var(--vpf-primary); }
.vpf-freq-card.vpf-selected { border-color: var(--vpf-primary); background: var(--vpf-primary-light); }
.vpf-freq-badge-tag { position: absolute; top: 8px; right: 8px; font-size: 10px; font-weight: 700; line-height: 1.2; white-space: nowrap; background: var(--vpf-primary); color: var(--vpf-primary-text); padding: 2px 6px; border-radius: 999px; }
.vpf-freq-type { font-size: 10px; color: var(--vpf-gray-400); text-transform: uppercase; letter-spacing: .45px; }
.vpf-freq-name { font-size: 11px; line-height: 1.15; font-weight: 700; color: var(--vpf-gray-800); }
.vpf-freq-perks { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 3px; }
.vpf-freq-perks li { font-size: 12px; color: var(--vpf-gray-600); padding-left: 18px; position: relative; }
.vpf-freq-perks li::before { position: absolute; left: 0; }
.vpf-freq-perks li.ok { color: var(--vpf-success); }
.vpf-freq-perks li.ok::before { content: ''; font-weight: 700; }
.vpf-freq-perks li.no::before { content: ''; color: var(--vpf-gray-400); }

/* OPCIONAIS */
.vpf-optionals-grid { display: flex; flex-direction: column; gap: 8px; }
.vpf-optional-card {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    border: 1.5px solid var(--vpf-gray-200);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    background: #fff;
}
.vpf-optional-card:has(.vpf-opt-check:checked),
.vpf-optional-card.vpf-checked { border-color: var(--vpf-primary); background: var(--vpf-primary-light); }
.vpf-optional-card input { display: none; }
.vpf-opt-check-icon { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--vpf-gray-200); margin-left: auto; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background .15s, border-color .15s; }
.vpf-optional-card:has(.vpf-opt-check:checked) .vpf-opt-check-icon { background: var(--vpf-primary); border-color: var(--vpf-primary); }
.vpf-optional-card:has(.vpf-opt-check:checked) .vpf-opt-check-icon::after { content: ''; color: var(--vpf-primary-text); font-size: 12px; font-weight: 700; }
.vpf-opt-name  { font-size: 14px; font-weight: 500; flex: 1; }
.vpf-opt-price { font-size: 14px; font-weight: 700; color: var(--vpf-success); }

/* DATE CARDS */
.vpf-date-cards-row {
    display: flex; gap: 8px; flex-wrap: nowrap; overflow-x: auto;
    padding-bottom: 4px; scrollbar-width: none;
}
.vpf-date-cards-row::-webkit-scrollbar { display: none; }
.vpf-date-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-width: 60px; padding: 10px 6px; border: 1.5px solid var(--vpf-gray-200);
    border-radius: 12px; background: #fff; cursor: pointer; gap: 3px;
    transition: border-color .15s, background .15s, transform .1s; flex-shrink: 0;
    font-family: inherit;
}
.vpf-date-card:hover { border-color: var(--vpf-primary); transform: translateY(-1px); }
.vpf-date-card.vpf-selected {
    border-color: var(--vpf-primary); background: var(--vpf-primary); color: #1a1a1a;
}
.vpf-date-card.vpf-selected .vpf-dc-day,
.vpf-date-card.vpf-selected .vpf-dc-num { color: #1a1a1a; }
.vpf-dc-day  { font-size: 12px; font-weight: 500; color: var(--vpf-gray-600); }
.vpf-dc-num  { font-size: 20px; font-weight: 700; color: var(--vpf-gray-800); line-height: 1.1; }
.vpf-dc-icon { font-size: 18px; line-height: 1.2; }
.vpf-date-card--more { background: #f8f8f8; min-width: 68px; }
.vpf-date-card--more .vpf-dc-day { font-size: 13px; font-weight: 600; }
.vpf-date-card--disabled,
.data-indisponivel {
    background: #e0e0e0;
    color: #999;
    pointer-events: none;
    border-color: #d1d5db;
    cursor: not-allowed;
}
.vpf-date-card--disabled .vpf-dc-day,
.vpf-date-card--disabled .vpf-dc-num,
.data-indisponivel .vpf-dc-day,
.data-indisponivel .vpf-dc-num {
    color: #999;
}

/* CALENDAR MODAL */
.vpf-cal-modal {
    position: fixed; inset: 0; background: rgba(0,0,0,.45);
    display: flex; align-items: center; justify-content: center; z-index: 9990;
}
.vpf-cal-wrap {
    background: #fff; border-radius: 18px; padding: 24px 20px;
    width: 330px; max-width: 95vw; position: relative;
    box-shadow: 0 10px 48px rgba(0,0,0,.22);
}
.vpf-cal-close {
    position: absolute; top: 12px; right: 14px; font-size: 24px; line-height: 1;
    background: none; border: none; cursor: pointer; color: var(--vpf-gray-400); padding: 0;
}
.vpf-cal-close:hover { color: var(--vpf-gray-800); }
.vpf-cal-nav-header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.vpf-cal-month-lbl { font-size: 16px; font-weight: 700; color: var(--vpf-gray-800); }
.vpf-cal-nav {
    background: none; border: 1.5px solid var(--vpf-gray-200);
    border-radius: 8px; padding: 4px 11px; cursor: pointer;
    font-size: 15px; color: var(--vpf-gray-600); transition: border-color .15s;
    font-family: inherit;
}
.vpf-cal-nav:hover:not(:disabled) { border-color: var(--vpf-primary); }
.vpf-cal-nav:disabled { opacity: .3; cursor: default; }
.vpf-cal-wh {
    display: grid; grid-template-columns: repeat(7,1fr);
    text-align: center; margin-bottom: 4px;
}
.vpf-cal-wh span { font-size: 11px; font-weight: 700; color: var(--vpf-gray-400); padding: 3px 0; }
.vpf-cal-days {
    display: grid; grid-template-columns: repeat(7,1fr); gap: 2px;
}
.vpf-cal-empty { min-height: 36px; }
.vpf-cal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; border: none; background: none;
    font-size: 13px; font-weight: 500; cursor: pointer;
    color: var(--vpf-gray-800); transition: background .12s; font-family: inherit;
}
.vpf-cal-past  { color: #ccc; cursor: not-allowed; }
.vpf-cal-today { background: var(--vpf-primary-light); font-weight: 700; }
.vpf-cal-day:not(.vpf-cal-past):hover { background: var(--vpf-primary-light); }
.vpf-cal-sel, .vpf-cal-sel:hover { background: var(--vpf-primary) !important; color: #1a1a1a; font-weight: 700; }
.vpf-cal-day--disabled {
    background: #eeeeee;
    color: #999;
    cursor: not-allowed;
}

/* DATE + SLOTS */
.vpf-slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
.vpf-slot-btn { border: 1.5px solid var(--vpf-gray-200); border-radius: 10px; background: #fff; padding: 12px 8px; text-align: center; cursor: pointer; transition: border-color .15s, background .15s, transform .1s; font-size: 13px; font-weight: 600; color: var(--vpf-gray-800); }
.vpf-slot-btn:hover { border-color: var(--vpf-primary); transform: translateY(-1px); }
.vpf-slot-btn.vpf-selected { border-color: var(--vpf-primary); background: var(--vpf-primary-light); color: var(--vpf-gray-800); }
.vpf-slot-btn--disabled {
    background: #e5e7eb;
    color: #9ca3af;
    border-color: #d1d5db;
    cursor: pointer;
}
.vpf-slot-btn--disabled:hover { transform: none; border-color: #d1d5db; }
.vpf-slot-badge {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #166534;
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 999px;
    padding: 2px 6px;
}
.vpf-slot-start { display: block; font-size: 16px; font-weight: 700; }
.vpf-slot-end   { display: block; font-size: 11px; color: var(--vpf-gray-400); font-weight: 400; margin-top: 2px; }
.vpf-slots-loading, .vpf-slots-empty { padding: 20px 0; color: var(--vpf-gray-600); font-size: 14px; }
.vpf-slot-lock-timer {
    margin-top: 10px;
    background: #ecfeff;
    border: 1px solid #67e8f9;
    color: #155e75;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 700;
}
.vpf-recurrence-info {
    margin-top: 10px;
    background: #fffbeb;
    border: 1px solid #F5C800;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #78350f;
}
.vpf-alt-suggestions { margin-bottom: 8px; }
.vpf-alt-list { margin: 10px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.vpf-alt-list li { margin: 0; }
.vpf-alt-slot-btn { border: 1px solid #d8c94a; background: #fffbea; color: #303312; border-radius: 8px; padding: 8px 12px; font-weight: 700; cursor: pointer; }
.vpf-alt-slot-btn:hover, .vpf-alt-slot-btn:focus-visible { background: #f5e451; outline: 2px solid rgba(59,65,18,.2); outline-offset: 2px; }
.vpf-slots-warning {
    margin: 0 0 10px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    color: #9a3412;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 12px;
}

/* BANNERS DE SERVIÇO */
.vpf-includes-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
}
.vpf-includes-banner--all {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}
.vpf-includes-banner--products {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    color: #1e3a5f;
}
.vpf-includes-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* MÓVEIS */
.vpf-furniture-grid { display: grid; gap: 10px; margin-top: 8px; }
.vpf-furniture-card { border: 1.5px solid #e5e7eb; border-radius: 12px; padding: 14px 16px; background: #fff; }
.vpf-furniture-card-top { display: flex; align-items: center; gap: 12px; }
.vpf-furniture-icon { font-size: 24px; flex-shrink: 0; }
.vpf-furniture-info { flex: 1; }
.vpf-furniture-info strong { display: block; font-size: 14px; font-weight: 600; color: #111; }
.vpf-furniture-price { font-size: 12px; color: #6b7280; }
.vpf-furniture-add-btn { background: #F5C800; color: #000; border: none; border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; flex-shrink: 0; }
.vpf-furniture-add-btn:hover { background: #e0b400; }
.vpf-furniture-added-list { margin-top: 12px; }
.vpf-furniture-added-row { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: #f0fdf4; border: 1px solid #86efac; border-radius: 8px; margin-bottom: 6px; font-size: 13px; }
.vpf-fa-name { flex: 1; color: #166534; font-weight: 500; }
.vpf-fa-price { color: #166534; font-weight: 700; white-space: nowrap; }
.vpf-fa-remove { background: none; border: none; color: #dc3545; cursor: pointer; font-size: 14px; font-weight: 700; padding: 0 4px; }
.vpf-furn-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 16px; }
.vpf-furn-modal-box { background: #fff; border-radius: 16px; padding: 24px; max-width: 400px; width: 100%; box-shadow: 0 8px 40px rgba(0,0,0,.18); }
.vpf-furn-modal-title { font-size: 17px; font-weight: 700; margin-bottom: 16px; color: #111; }
.vpf-furn-modal-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.vpf-furn-opt { display: flex; align-items: center; gap: 10px; border: 1.5px solid #e5e7eb; border-radius: 10px; padding: 10px 14px; cursor: pointer; }
.vpf-furn-opt:has(input:checked) { border-color: #F5C800; background: #fffbeb; }
.vpf-furn-opt-name { flex: 1; font-size: 14px; }
.vpf-furn-opt-price { font-weight: 700; font-size: 14px; color: #111; white-space: nowrap; }
.vpf-furn-modal-footer { display: flex; gap: 10px; justify-content: flex-end; }
.vpf-furn-cancel { background: #f3f4f6; color: #374151; border: none; border-radius: 8px; padding: 10px 18px; font-size: 14px; cursor: pointer; }
.vpf-furn-confirm { background: #F5C800; color: #000; border: none; border-radius: 8px; padding: 10px 18px; font-size: 14px; font-weight: 600; cursor: pointer; }
.vpf-furn-confirm:hover { background: #e0b400; }

.vpf-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .vpf-form-grid { grid-template-columns: 1fr; } }
.vpf-field { display: flex; flex-direction: column; gap: 6px; }
.vpf-field--full { grid-column: 1 / -1; }
.vpf-field--sm, .vpf-field--lg { grid-column: span 1; }
.vpf-field label { font-size: 13px; font-weight: 600; color: var(--vpf-gray-600); }
.vpf-field input[type="text"],
.vpf-field input[type="email"],
.vpf-field input[type="tel"],
.vpf-field input[type="date"] {
    height: 44px;
    border: 1.5px solid var(--vpf-gray-200);
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
    color: var(--vpf-gray-800);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.vpf-field input:focus { outline: none; border-color: var(--vpf-primary); box-shadow: 0 0 0 3px rgba(241,221,82,.35); }

/* BOTÕES */
.vpf-btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%;
    padding: 15px 24px;
    background: var(--vpf-primary);
    color: var(--vpf-primary-text);
    border: none;
    border-radius: 10px;
    font-size: 16px; font-weight: 700;
    cursor: pointer;
    transition: background .15s, transform .1s, box-shadow .15s;
    box-shadow: 0 2px 8px rgba(241,221,82,.35);
}
.vpf-btn-primary:hover { background: var(--vpf-primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(241,221,82,.45); }
.vpf-btn-primary:active { transform: translateY(0); }
.vpf-btn-primary:disabled { opacity: .6; cursor: default; transform: none; }

/* ALERTS */
.vpf-alert-error { background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; color: var(--vpf-danger); padding: 12px 16px; font-size: 14px; margin-top: 12px; }

/* CEP COBERTURA BANNER */
.vapy-cep-banner { border-radius: 8px; padding: 9px 13px; font-size: 13px; font-weight: 600; margin-top: 8px; }
.vapy-cep-banner--ok   { background: #f0fdf4; border: 1.5px solid #86efac; color: #166534; }
.vapy-cep-banner--erro { background: #fef2f2; border: 1.5px solid #fca5a5; color: #991b1b; }

/* SPINNER */
.vpf-spinner { width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; display: inline-block; animation: vpf-spin .7s linear infinite; }
@keyframes vpf-spin { to { transform: rotate(360deg); } }
.vpf-price-loading .vpf-spinner { border-color: rgba(241,221,82,.4); border-top-color: var(--vpf-primary-dark); }

/* SECURE NOTE */
.vpf-secure-note { font-size: 13px; color: var(--vpf-gray-400); text-align: center; margin-top: 10px; }

/* SIDEBAR */
.vpf-summary-col { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 16px; }
.vpf-summary-card { background: #fff; border-radius: var(--vpf-radius); box-shadow: var(--vpf-shadow); padding: 24px; }
.vpf-summary-svc { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.vpf-summary-icon { font-size: 28px; }
.vpf-summary-title { font-size: 17px; font-weight: 700; margin: 0; color: var(--vpf-gray-800); }
.vpf-summary-rows { display: flex; flex-direction: column; }
.vpf-summary-detail { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--vpf-gray-100); font-size: 14px; }
.vpf-summary-detail:last-child { border-bottom: none; }
.vpf-sum-label { color: var(--vpf-gray-600); }
.vpf-sum-val   { font-weight: 600; }
.vpf-summary-divider { height: 1px; background: var(--vpf-gray-200); margin: 16px 0; }
.vpf-price-loading { text-align: center; color: var(--vpf-gray-600); font-size: 13px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.vpf-price-main { font-size: 36px; font-weight: 800; color: var(--vpf-gray-800); text-align: center; line-height: 1.1; }
.vpf-price-original { font-size: 13px; color: var(--vpf-gray-400); text-align: center; text-decoration: line-through; margin-bottom: 4px; }
.vpf-price-discount { font-size: 13px; color: var(--vpf-success); font-weight: 600; text-align: center; margin-top: 6px; background: #f0fdf4; padding: 5px 10px; border-radius: 6px; }
.vpf-price-dynamic-hint {
    margin-top: 8px;
    font-size: 12px;
    text-align: center;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 6px 8px;
    line-height: 1.35;
}

/* FAQ */
.vpf-faq-card { background: #fff; border-radius: var(--vpf-radius); box-shadow: var(--vpf-shadow); padding: 20px 24px; }
.vpf-faq-card h4 { margin: 0 0 12px; font-size: 12px; font-weight: 700; color: var(--vpf-gray-400); text-transform: uppercase; letter-spacing: .8px; }
.vpf-faq-item { border-bottom: 1px solid var(--vpf-gray-100); padding: 10px 0; }
.vpf-faq-item:last-child { border-bottom: none; }
.vpf-faq-item summary { font-size: 14px; font-weight: 500; cursor: pointer; list-style: none; color: var(--vpf-gray-800); }
.vpf-faq-item summary::-webkit-details-marker { display: none; }
.vpf-faq-item p { margin: 8px 0 0; font-size: 13px; color: var(--vpf-gray-600); line-height: 1.5; }

/* TRUST */
.vpf-trust-badges { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--vpf-gray-600); }

/* Vapy v22 — regras UX para Studio e ícones minimalistas */
.vpf-prop-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    color: #3b4112;
    background: #fbf8ea;
    border: 1.5px solid #e8e3d3;
    line-height: 1;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

.vpf-prop-svg {
    width: 23px;
    height: 23px;
    display: block;
}

.vpf-property-card:hover .vpf-prop-icon {
    border-color: #f2e82a;
    transform: translateY(-1px);
}

.vpf-property-card.vpf-selected .vpf-prop-icon {
    background: #f2e82a;
    border-color: #d9cc24;
    color: #3b4112;
}

.vpf-counter-row--locked {
    opacity: .78;
}

.vpf-counter-row--locked .vpf-counter-hint::after {
    content: ' · fixo para Studio';
    color: #899e6c;
    font-weight: 700;
}

.vpf-counter-row--locked .vpf-counter-ctrl {
    background: #f5f4ed;
}

.vpf-counter-row--locked .vpf-cnt-btn {
    box-shadow: none;
    opacity: .35;
}

/* Vapy v25 — ícones SVG minimalistas no checkout */
.vpf-prop-icon .vapy-mini-icon,
.vpf-summary-icon .vapy-mini-icon,
.vpf-includes-icon .vapy-mini-icon,
.vpf-furniture-icon .vapy-mini-icon,
.genero-icon .vapy-mini-icon,
.vpf-trust-badges .vapy-mini-icon,
.vpf-lock-inline .vapy-mini-icon,
.vpf-btn-primary .vapy-mini-icon,
.vpf-mobile-bar-btn .vapy-mini-icon {
    display: block;
    stroke: currentColor;
}
.vpf-summary-icon,
.vpf-includes-icon,
.vpf-furniture-icon,
.genero-icon,
.vpf-lock-inline,
.vpf-trust-badges span,
.vpf-btn-primary,
.vpf-mobile-bar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.vpf-summary-icon,
.vpf-includes-icon,
.vpf-furniture-icon,
.genero-icon {
    color: #3b4112;
}
.vpf-lock-inline {
    color: #899e6c;
    vertical-align: -2px;
}
.vpf-includes-banner .vpf-includes-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 12px;
    background: #fbf1bf;
    color: #3b4112;
}
.vpf-furniture-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 14px;
    background: #fbf1bf;
}
.genero-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 14px;
    background: #fbf1bf;
}
.vpf-trust-badges span {
    justify-content: flex-start;
    color: #5f6847;
}

/* =========================================================
   ORIENTAÇÕES ANTES DA CONFIRMAÇÃO DO PEDIDO — V38
   ========================================================= */
body.vpf-guidelines-open {
    overflow: hidden;
}

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

.vpf-guidelines-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.vpf-guidelines-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, .58);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.vpf-guidelines-dialog {
    position: relative;
    width: min(760px, 100%);
    max-height: min(90vh, 860px);
    overflow: auto;
    overscroll-behavior: contain;
    background: #fff;
    border: 1px solid rgba(59, 65, 18, .14);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(26, 26, 26, .24);
    padding: 26px;
    color: #1a1a1a;
    animation: vpfGuidelinesIn .2s ease-out;
}

.vpf-guidelines-dialog:focus {
    outline: none;
}

.vpf-guidelines-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid #e8e3d3;
    border-radius: 50%;
    background: #fff;
    color: #3b4112;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}

.vpf-guidelines-close:hover {
    background: #fbf8e8;
    transform: scale(1.04);
}

.vpf-guidelines-header {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
    padding-right: 46px;
    margin-bottom: 20px;
}

.vpf-guidelines-heart {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(145deg, #F2E82A, #fbf1bf);
    color: #3b4112;
    box-shadow: 0 8px 22px rgba(242, 232, 42, .28);
}

.vpf-guidelines-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    margin-bottom: 8px;
    border-radius: 999px;
    background: #fbf1bf;
    color: #3b4112;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.vpf-guidelines-header h2 {
    margin: 0;
    color: #3b4112;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.08;
    letter-spacing: -.03em;
}

.vpf-guidelines-header p {
    margin: 8px 0 0;
    color: #5f654b;
    font-size: 14px;
    line-height: 1.55;
}

.vpf-guidelines-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.vpf-guidelines-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid #ece8d9;
    border-radius: 14px;
    background: #fffef9;
}

.vpf-guidelines-item:last-child {
    grid-column: 1 / -1;
}

.vpf-guidelines-item-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fbf1bf;
    color: #3b4112;
    flex: 0 0 auto;
}

.vpf-guidelines-item h3 {
    margin: 0 0 4px;
    color: #24280d;
    font-size: 14px;
    line-height: 1.3;
}

.vpf-guidelines-item p {
    margin: 0;
    color: #646a54;
    font-size: 12.5px;
    line-height: 1.5;
}

.vpf-guidelines-thanks {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(242, 232, 42, .7);
    border-radius: 13px;
    background: linear-gradient(90deg, #fffceb, #fff);
    color: #3b4112;
}

.vpf-guidelines-thanks span {
    display: grid;
    place-items: center;
    color: #d8ce1e;
}

.vpf-guidelines-thanks p {
    margin: 0;
    font-size: 13px;
}

.vpf-guidelines-ack {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    padding: 13px 14px;
    border: 1.5px solid #d9ddc8;
    border-radius: 13px;
    background: #fafbf6;
    color: #303513;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.vpf-guidelines-ack:has(input:checked) {
    border-color: #899e6c;
    background: #f4f8ec;
}

.vpf-guidelines-ack input {
    width: 19px;
    height: 19px;
    margin: 0;
    accent-color: #899e6c;
    flex: 0 0 auto;
}

.vpf-guidelines-error {
    margin: 7px 0 0;
    color: #dc2626;
    font-size: 12px;
    font-weight: 700;
}

.vpf-guidelines-actions {
    display: grid;
    grid-template-columns: minmax(130px, .42fr) minmax(230px, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.vpf-guidelines-secondary,
.vpf-guidelines-primary {
    min-height: 48px;
    border-radius: 10px;
    padding: 0 16px;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.vpf-guidelines-secondary {
    border: 1px solid #dcdccb;
    background: #fff;
    color: #3b4112;
}

.vpf-guidelines-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #F2E82A;
    background: #F2E82A;
    color: #111;
    box-shadow: 0 8px 20px rgba(242, 232, 42, .25);
}

.vpf-guidelines-primary:not(:disabled):hover,
.vpf-guidelines-secondary:hover {
    transform: translateY(-1px);
}

.vpf-guidelines-primary:disabled {
    cursor: not-allowed;
    opacity: .48;
    box-shadow: none;
}

@keyframes vpfGuidelinesIn {
    from { opacity: 0; transform: translateY(12px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 680px) {
    .vpf-guidelines-modal {
        place-items: end center;
        padding: 0;
    }

    .vpf-guidelines-dialog {
        width: 100%;
        max-height: 92dvh;
        border-radius: 22px 22px 0 0;
        padding: 20px 16px calc(16px + env(safe-area-inset-bottom));
        animation-name: vpfGuidelinesSheetIn;
    }

    .vpf-guidelines-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .vpf-guidelines-header {
        grid-template-columns: 44px 1fr;
        gap: 11px;
        padding-right: 38px;
        margin-bottom: 14px;
    }

    .vpf-guidelines-heart {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .vpf-guidelines-heart svg {
        width: 21px;
        height: 21px;
    }

    .vpf-guidelines-eyebrow {
        min-height: 23px;
        margin-bottom: 6px;
        font-size: 9px;
    }

    .vpf-guidelines-header h2 {
        font-size: 23px;
    }

    .vpf-guidelines-header p {
        font-size: 12.5px;
        line-height: 1.45;
    }

    .vpf-guidelines-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .vpf-guidelines-item,
    .vpf-guidelines-item:last-child {
        grid-column: auto;
    }

    .vpf-guidelines-item {
        grid-template-columns: 36px 1fr;
        gap: 10px;
        padding: 11px;
    }

    .vpf-guidelines-item-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .vpf-guidelines-item h3 {
        font-size: 13px;
    }

    .vpf-guidelines-item p {
        font-size: 11.5px;
        line-height: 1.42;
    }

    .vpf-guidelines-thanks {
        padding: 10px 11px;
    }

    .vpf-guidelines-thanks p,
    .vpf-guidelines-ack {
        font-size: 12px;
    }

    .vpf-guidelines-actions {
        grid-template-columns: 1fr;
    }

    .vpf-guidelines-primary {
        order: -1;
        min-height: 52px;
        font-size: 13.5px;
    }

    .vpf-guidelines-secondary {
        min-height: 44px;
    }
}

@keyframes vpfGuidelinesSheetIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .vpf-guidelines-dialog {
        animation: none;
    }
}

/* Lava e Passa — volume e modalidades */
.vpf-laundry-block {
    margin-top: 24px;
}

.vpf-laundry-block:first-of-type {
    margin-top: 0;
}

.vpf-laundry-title {
    margin: 0 0 8px;
}

.vpf-laundry-volume-grid,
.vpf-modalidade-grid {
    display: grid;
    gap: 10px;
}

.vpf-laundry-volume-card,
.vpf-modalidade-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 74px;
    padding: 14px 16px;
    border: 1.5px solid #deded5;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.vpf-laundry-volume-card:hover,
.vpf-modalidade-card:hover {
    border-color: #c9ad20;
}

.vpf-laundry-volume-card.vpf-selected,
.vpf-modalidade-card.vpf-selected {
    border-color: #F5C800;
    background: #fffaf0;
    box-shadow: 0 0 0 1px rgba(245, 200, 0, .16);
}

.vpf-laundry-volume-radio,
.vpf-modalidade-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vpf-laundry-radio-dot {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border: 1.7px solid #b8b8b0;
    border-radius: 50%;
    background: #fff;
}

.vpf-selected .vpf-laundry-radio-dot {
    border-color: #d4a900;
}

.vpf-selected .vpf-laundry-radio-dot::after {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #d4a900;
}

.vpf-laundry-volume-copy,
.vpf-modalidade-copy {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.vpf-laundry-volume-copy strong,
.vpf-modalidade-heading strong {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.25;
}

.vpf-laundry-volume-copy small,
.vpf-modalidade-copy small {
    color: #707070;
    font-size: 13px;
    line-height: 1.4;
}

.vpf-modalidade-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vpf-modalidade-rate {
    flex: 0 0 auto;
    color: #5b4b00;
    font-size: 13px;
    font-weight: 750;
}

.vpf-modalidade-card--recommended {
    border-width: 2px;
}

.vpf-modalidade-highlight {
    color: #b88700;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
}

.vpf-laundry-price-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 0 0;
    color: #666;
    font-size: 12px;
    line-height: 1.45;
}

@media (min-width: 768px) {
    .vpf-laundry-volume-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .vpf-laundry-volume-card,
    .vpf-modalidade-card {
        min-height: 72px;
        padding: 13px 14px;
    }

    .vpf-modalidade-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }
}

/* Correção visual 119 — Lava e Passa */
.vpf-laundry-block {
    margin-top: 26px;
}

.vpf-laundry-block + .vpf-laundry-block {
    margin-top: 28px;
}

.vpf-laundry-title {
    margin: 0 0 6px;
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 800;
}

.vpf-laundry-volume-grid,
.vpf-modalidade-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
}

.vpf-laundry-volume-card,
.vpf-modalidade-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 76px;
    padding: 15px 17px;
    border: 1.5px solid #dfe3e8;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(26, 26, 26, .03);
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.vpf-laundry-volume-card:hover,
.vpf-modalidade-card:hover {
    border-color: #c7a800;
    box-shadow: 0 5px 16px rgba(26, 26, 26, .06);
    transform: translateY(-1px);
}

.vpf-laundry-volume-card.vpf-selected,
.vpf-modalidade-card.vpf-selected {
    border-color: #F5C800;
    background: #fffaf0;
    box-shadow: 0 0 0 1px rgba(245, 200, 0, .2), 0 6px 18px rgba(245, 200, 0, .12);
}

.vpf-modalidade-card--recommended {
    border-width: 2px;
    border-color: #e0bd20;
}

.vpf-modalidade-card--recommended.vpf-selected {
    background: linear-gradient(135deg, #fff9e8 0%, #fffdf7 100%);
}

.vpf-laundry-radio-dot {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border: 1.8px solid #b7bcc3;
    border-radius: 50%;
    background: #fff;
}

.vpf-selected .vpf-laundry-radio-dot {
    border-color: #d3a900;
}

.vpf-selected .vpf-laundry-radio-dot::after {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #d3a900;
}

.vpf-laundry-volume-copy,
.vpf-modalidade-copy {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.vpf-laundry-volume-copy strong,
.vpf-modalidade-heading strong {
    color: #151515;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.vpf-laundry-volume-copy small,
.vpf-modalidade-copy small {
    color: #737983;
    font-size: 13px;
    line-height: 1.45;
}

.vpf-modalidade-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.vpf-modalidade-rate {
    flex: 0 0 auto;
    color: #514400;
    font-size: 13px;
    font-weight: 800;
}

.vpf-modalidade-highlight {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #b88700;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.vpf-laundry-price-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 0 0;
    color: #666;
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .vpf-laundry-volume-card,
    .vpf-modalidade-card {
        min-height: 72px;
        padding: 14px;
    }

    .vpf-modalidade-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }
}

/* Correção 120 — carregamento no <head> e acabamento visual Lava e Passa */
#laundry_volume_section,
#laundry_modality_section {
    display: block;
    width: 100%;
    margin-top: 26px;
}

#laundry_volume_section .vpf-section-desc,
#laundry_modality_section .vpf-section-desc {
    margin: 0;
    color: #5f6368;
    font-size: 13px;
    line-height: 1.5;
}

#laundry_volume_section .vpf-laundry-volume-grid,
#laundry_modality_section .vpf-modalidade-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 14px;
}

#laundry_volume_section .vpf-laundry-volume-card,
#laundry_modality_section .vpf-modalidade-card {
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-width: 0;
    min-height: 78px;
    margin: 0;
    padding: 15px 17px;
    border: 1.5px solid #dde2e8;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(26, 26, 26, .03);
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

#laundry_volume_section .vpf-laundry-volume-card:hover,
#laundry_modality_section .vpf-modalidade-card:hover {
    border-color: #d1b200;
    box-shadow: 0 5px 16px rgba(26, 26, 26, .07);
    transform: translateY(-1px);
}

#laundry_volume_section .vpf-laundry-volume-card.vpf-selected,
#laundry_modality_section .vpf-modalidade-card.vpf-selected {
    border-color: #F5C800;
    background: #fffaf0;
    box-shadow: 0 0 0 1px rgba(245, 200, 0, .20), 0 6px 18px rgba(245, 200, 0, .12);
}

#laundry_modality_section .vpf-modalidade-card--recommended {
    border: 2px solid #e1bd14;
}

#laundry_modality_section .vpf-modalidade-card--recommended.vpf-selected {
    background: linear-gradient(135deg, #fff8df 0%, #fffdf7 100%);
}

#laundry_volume_section .vpf-laundry-volume-radio,
#laundry_modality_section .vpf-modalidade-radio {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

#laundry_volume_section .vpf-laundry-radio-dot,
#laundry_modality_section .vpf-laundry-radio-dot {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border: 1.8px solid #b7bcc3;
    border-radius: 50%;
    background: #fff;
}

#laundry_volume_section .vpf-selected .vpf-laundry-radio-dot,
#laundry_modality_section .vpf-selected .vpf-laundry-radio-dot {
    border-color: #d3a900;
}

#laundry_volume_section .vpf-selected .vpf-laundry-radio-dot::after,
#laundry_modality_section .vpf-selected .vpf-laundry-radio-dot::after {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #d3a900;
}

#laundry_volume_section .vpf-laundry-volume-copy,
#laundry_modality_section .vpf-modalidade-copy {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

#laundry_volume_section .vpf-laundry-volume-copy strong,
#laundry_modality_section .vpf-modalidade-heading strong {
    color: #171717;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

#laundry_volume_section .vpf-laundry-volume-copy small,
#laundry_modality_section .vpf-modalidade-copy small {
    display: block;
    color: #6f7580;
    font-size: 13px;
    line-height: 1.45;
}

#laundry_modality_section .vpf-modalidade-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

#laundry_modality_section .vpf-modalidade-rate {
    flex: 0 0 auto;
    color: #4f4200;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

#laundry_modality_section .vpf-modalidade-highlight {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 2px 0;
    color: #b68400;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

#laundry_modality_section .vpf-laundry-price-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 0 0;
    color: #60656e;
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 640px) {
    #laundry_volume_section .vpf-laundry-volume-card,
    #laundry_modality_section .vpf-modalidade-card {
        min-height: 72px;
        padding: 14px;
    }

    #laundry_modality_section .vpf-modalidade-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }
}


/* Correção 121 — bloco Lava e Passa servido também por /public/assets */
#laundry_volume_section .vpf-laundry-volume-grid,
#laundry_modality_section .vpf-modalidade-grid {
    grid-template-columns: 1fr !important;
}

#laundry_volume_section .vpf-laundry-volume-card,
#laundry_modality_section .vpf-modalidade-card {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    padding: 16px 18px !important;
    border: 1.5px solid #dfe3e8 !important;
    border-radius: 12px !important;
    background: #fff !important;
}

#laundry_volume_section .vpf-laundry-volume-card.vpf-selected,
#laundry_modality_section .vpf-modalidade-card.vpf-selected {
    border-color: #F5C800 !important;
    background: #fff9e8 !important;
}

#laundry_modality_section .vpf-modalidade-card--recommended {
    border-width: 2px !important;
    border-color: #d7b300 !important;
}

#laundry_volume_section .vpf-laundry-volume-radio,
#laundry_modality_section .vpf-modalidade-radio {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

#laundry_volume_section .vpf-laundry-radio-dot,
#laundry_modality_section .vpf-laundry-radio-dot {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
    border: 2px solid #b8bec6 !important;
    border-radius: 50% !important;
    background: #fff !important;
}

#laundry_volume_section .vpf-selected .vpf-laundry-radio-dot,
#laundry_modality_section .vpf-selected .vpf-laundry-radio-dot {
    border-color: #d3a900 !important;
}

#laundry_volume_section .vpf-selected .vpf-laundry-radio-dot::after,
#laundry_modality_section .vpf-selected .vpf-laundry-radio-dot::after {
    content: '' !important;
    position: absolute !important;
    inset: 5px !important;
    border-radius: 50% !important;
    background: #d3a900 !important;
}

#laundry_volume_section .vpf-laundry-volume-copy,
#laundry_modality_section .vpf-modalidade-copy {
    display: flex !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    flex-direction: column !important;
    gap: 5px !important;
}

#laundry_modality_section .vpf-modalidade-heading {
    display: flex !important;
    align-items: baseline !important;
    justify-content: space-between !important;
    gap: 12px !important;
    width: 100% !important;
}

#laundry_modality_section .vpf-modalidade-rate {
    margin-left: auto !important;
    white-space: nowrap !important;
}

@media (max-width: 640px) {
    #laundry_modality_section .vpf-modalidade-heading {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
}


.vpf-price-error {
    margin-top: 10px;
    padding: 9px 10px;
    border: 1px solid rgba(220, 53, 69, .28);
    border-radius: 8px;
    background: rgba(220, 53, 69, .07);
    color: #a71d2a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}
