    /* Estilo herdado do PortalLaravel para content-wrapper dos apps */
    body.portal-home.portal-detail main.content-wrapper.iopoint,
    body.portal-home.portal-detail main.content-wrapper.meu-hr,
    body.portal-home.portal-detail main.content-wrapper.ducz {
        padding: clamp(32px, 6vw, 82px) clamp(22px, 6vw, 80px) clamp(120px, 14vw, 200px);
        background: transparent;
    }

    @media (max-width: 720px) {
        body.portal-home.portal-detail main.content-wrapper.iopoint,
        body.portal-home.portal-detail main.content-wrapper.meu-hr,
        body.portal-home.portal-detail main.content-wrapper.ducz {
            padding: 64px 18px 118px;
        }
    }

    /* Alinhamento à esquerda para páginas de apps */
    .content-wrapper > section {
        width: calc(100% - 6vw);
        margin-left: 3vw;
        margin-right: 3vw;
        box-sizing: border-box;
        text-align: left !important;
        align-items: flex-start !important;
        display: block;
    }
    .content-wrapper > section > *,
    .content-wrapper .two-column {
        text-align: left !important;
        /*align-items: flex-start !important;*/
        /*justify-content: flex-start !important;*/
    }
    /* NOVO ESTILO CAMPO DE SUGESTÕES */
    /* .faq-panel__content - removido, não mais usado */
    /* Centralização para content-wrapper das páginas iopoint, meu-hr e ducz */
    .content-wrapper.iopoint,
    .content-wrapper.meu-hr,
    .content-wrapper.ducz {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 60vh;
    }
.faq-panel__body {
    padding: 28px 24px 28px 24px !important;
    overflow: hidden !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    background: #fff !important;
    border-radius: 0 0 22px 22px !important;
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.12) !important;
}
    .intro-card {
        background: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 32px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .intro-card h3 {
        font-size: 1.25em;
        font-weight: 700;
        margin: 24px 0 8px 0;
        text-align: left;
        color: #b71c1c;
    }
    .intro-card .intro-text {
        font-size: 1em;
        color: #444;
        margin-bottom: 18px;
        text-align: left;
    }
    .suggestion-form {
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        box-sizing: border-box !important;
    }
    .suggestion-form label {
        font-weight: 600 !important;
        color: #b71c1c !important;
        margin-bottom: 6px !important;
        display: block !important;
        font-size: 0.95em !important;
    }
    .suggestion-form textarea {
        width: 100% !important;
        min-height: 140px !important;
        max-height: 140px !important;
        border-radius: 8px !important;
        border: 1px solid #e0e0e0 !important;
        padding: 12px 14px !important;
        font-size: 0.95em !important;
        font-family: inherit !important;
        resize: none !important;
        background: #fff !important;
        margin-bottom: 0 !important;
        transition: border 0.2s !important;
        line-height: 1.5 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    .suggestion-form textarea:focus {
        border: 1.5px solid #b71c1c;
        outline: none;
    }
    .suggestion-actions {
        display: flex !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
        margin-bottom: 6px !important;
        margin-top: 8px !important;
        box-sizing: border-box !important;
    }
    .suggestion-button {
        border: none !important;
        border-radius: 6px !important;
        padding: 10px 16px !important;
        font-weight: 600 !important;
        font-size: 0.9em !important;
        cursor: pointer !important;
        background: #b71c1c !important;
        color: #fff !important;
        transition: background 0.2s, box-shadow 0.2s !important;
        box-shadow: 0 2px 6px rgba(183,28,28,0.08) !important;
        flex: 1 !important;
        min-width: 140px !important;
    }
    .suggestion-button.secondary {
        background: #fff;
        color: #b71c1c;
        border: 1.5px solid #b71c1c;
    }
    .suggestion-button:hover, .suggestion-button:focus {
        background: #a31515;
        color: #fff;
    }
    .suggestion-button.secondary:hover, .suggestion-button.secondary:focus {
        background: #fbeaea;
        color: #b71c1c;
    }
    .suggestion-form small {
        font-size: 0.85em !important;
        color: #666 !important;
        margin-top: 6px !important;
        display: block !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }
    .suggestion-alert {
        width: 100% !important;
        margin: 0 0 8px 0 !important;
        text-align: left !important;
        padding: 8px 10px !important;
        border-radius: 6px !important;
        font-size: 0.9em !important;
        font-weight: 500 !important;
        background: #fbeaea !important;
        color: #b71c1c !important;
        border: 1px solid #f3c2c2 !important;
        display: none !important;
    }
    
    .suggestion-alert.sucesso {
        background: #e6fbe9;
        color: #056c3b;
        border: 1px solid #b6e2c2;
        display: block;
    }
    .suggestion-alert.erro {
        background: #fbeaea;
        color: #b71c1c;
        border: 1px solid #f3c2c2;
        display: block;
    }
    .suggestion-alert.aviso {
        background: #fffbe6;
        color: #8a5a00;
        border: 1px solid #f3eac2;
        display: block;
    }
    @media (max-width: 600px) {
        .intro-card, .suggestion-form {
            padding-left: 12px;
            padding-right: 12px;
        }
        .suggestion-form {
            max-width: 100%;
        }
        .suggestion-button {
            min-width: 140px;
            flex: 1;
        }
    }
    
.suggestion-section {
    margin-top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.passcode-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(4px);
    text-decoration: none;
}

.passcode-toggle:hover,
.passcode-toggle:focus {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.passcode-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

.passcode-toggle__icon {
    font-size: 18px;
}

.passcode-toggle[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
    transform: none;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: #e11923;
    text-decoration: none;
}

.inline-link::after {
    content: '\203A';
    font-size: 0.9em;
    line-height: 1;
}

.inline-link:hover,
.inline-link:focus {
    text-decoration: underline;
}

.plr-inline-formula {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 18px;
    background: #f2f6ff;
    border: 1px solid #c6d2ff;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.faq-partnerships {
    margin: clamp(40px, 7vw, 80px) 0;
    background: #f8fafc;
    padding: clamp(28px, 6vw, 60px);
    border-radius: 28px;
}

.faq-partnerships h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--madesa-red-dark);
    margin-bottom: 12px;
}

.faq-partnerships > p {
    color: #334155;
    line-height: 1.6;
    margin-bottom: 28px;
}

.partnership-group {
    margin-bottom: 36px;
}

.partnership-group h3 {
    margin-bottom: 16px;
    color: #0f172a;
    font-size: 1.25rem;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.partnership-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    border: 1px solid rgba(225, 25, 35, 0.16);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 12px;
}

.partnership-card__header {
    display: grid;
    gap: 6px;
}

.partnership-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(225, 25, 35, 0.12);
    color: #b91c1c;
    font-weight: 600;
    font-size: 0.85rem;
    width: fit-content;
}

.partnership-card h4 {
    margin: 0;
    color: #0f172a;
    font-size: 1.05rem;
}

.partnership-card__list {
    margin: 0;
    padding-left: 18px;
    color: #475569;
    line-height: 1.6;
    display: grid;
    gap: 6px;
}

.partnership-card__meta {
    display: grid;
    gap: 4px;
    font-size: 0.85rem;
    color: #64748b;
}

@media (max-width: 720px) {
    .faq-partnerships {
        padding: clamp(20px, 6vw, 32px);
    }
}

@media (max-width: 640px) {
    .passcode-toggle {
        padding: 0;
        width: clamp(42px, 11vw, 56px);
        height: clamp(42px, 11vw, 56px);
        border-radius: 50%;
        justify-content: center;
        gap: 0;
    }

    .passcode-toggle__label {
        display: none;
    }

    .passcode-toggle__icon {
        font-size: clamp(18px, 5vw, 22px);
        line-height: 1;
    }
}

.hero-actions {
    margin-top: 28px;
}

.access-code-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    color: #fff;
    max-width: 520px;
}

.access-code-eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    opacity: 0.8;
    margin: 0 0 6px;
}

.access-code-card h2 {
    margin: 0;
    font-size: clamp(20px, 3vw, 28px);
}

.access-code-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 12px;
    display: grid;
    gap: 12px;
}

.access-code-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding-bottom: 8px;
}

.access-code-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.access-code-list__label {
    font-size: 0.95rem;
    opacity: 0.85;
}

.access-code-list__value {
    font-weight: 700;
    font-size: 1.1rem;
}

.access-code-hint {
    margin: 10px 0 0;
    font-size: 0.85rem;
    opacity: 0.85;
}

@media (max-width: 640px) {
    .access-code-card {
        padding: 18px;
    }

    .access-code-list {
        gap: 10px;
    }

    .access-code-list li {
        flex-direction: column;
        align-items: flex-start;
    }
}

.suggestion-management {
    width: min(1100px, 95vw);
    margin: 48px auto 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.management-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(225, 25, 35, 0.95), rgba(225, 25, 35, 0.78));
    color: #fff;
    padding: clamp(24px, 4vw, 40px);
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.management-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
    margin: 0 0 8px;
}

.management-description {
    max-width: 560px;
    margin: 12px 0 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.management-hint {
    margin-top: 14px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.passcode-revoke-form {
    margin-top: 18px;
}

.passcode-revoke-button {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.passcode-revoke-button:hover,
.passcode-revoke-button:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.passcode-revoke-button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

.management-pills {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.management-pill {
    min-width: 140px;
    padding: 18px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-align: center;
}

.pill-value {
    display: block;
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
}

.pill-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.suggestions-table-wrapper {
    background: #fff;
    border-radius: 28px;
    padding: clamp(16px, 3vw, 32px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    overflow-x: auto;
}

.suggestions-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.suggestions-table th,
.suggestions-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: top;
}

.suggestions-table th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.suggestions-table td {
    color: #1f1f1f;
    line-height: 1.5;
}

.suggestions-table tbody tr:last-child td {
    border-bottom: none;
}

.suggestion-empty {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.suggestion-empty p {
    margin: 0;
    font-size: 1rem;
    color: #3f3f3f;
}

.suggestion-passcode-card {
    background: #fff;
    border-radius: 24px;
    padding: clamp(24px, 4vw, 36px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.suggestion-passcode-card h2 {
    margin: 0;
}

.suggestion-passcode-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.suggestion-passcode-form input[type="password"] {
    flex: 1 1 240px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 1rem;
}

.suggestion-passcode-form button {
    border: none;
    border-radius: 999px;
    background: var(--madesa-red, #e11923);
    color: #fff;
    font-weight: 600;
    padding: 12px 26px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.suggestion-passcode-form button:hover,
.suggestion-passcode-form button:focus-visible {
    background: var(--madesa-red-dark, #b1121c);
    transform: translateY(-1px);
}

.passcode-error {
    margin: 0;
    color: var(--madesa-red, #e11923);
    font-weight: 600;
}

@media (max-width: 540px) {
    .suggestion-passcode-form {
        flex-direction: column;
        align-items: stretch;
    }

    .suggestion-passcode-form button {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .management-pills {
        width: 100%;
    }

    .suggestions-table {
        min-width: 0;
    }

    .suggestions-table thead {
        display: none;
    }

    .suggestions-table tr {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .suggestions-table tr:last-child {
        border-bottom: none;
    }

    .suggestions-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border: none;
        padding: 8px 0;
        font-size: 0.95rem;
    }

    .suggestions-table td::before {
        content: attr(data-column);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #7a7a7a;
        margin-right: 12px;
        flex: 0 0 45%;
    }
}

.faq-panel .suggestion-section {
    margin-top: 0;
}

.suggestion-section .intro-text {
    margin-bottom: 24px;
}

.suggestion-form {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    background: none;
    box-shadow: none;
    padding: 0;
}

.suggestion-form textarea {
    width: 100%;
    min-width: 220px;
    max-width: 100%;
    min-height: 100px;
    max-height: 220px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
    resize: vertical;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
}

.suggestion-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.suggestion-button {
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.suggestion-button.primary {
    background: var(--madesa-red);
    color: #fff;
}

.suggestion-button.secondary {
    background: rgba(225, 25, 35, 0.16);
    color: var(--madesa-red);
}

.suggestion-button:hover {
    transform: translateY(-1px);
}

.suggestion-alert {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 12px auto;
    text-align: center;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
}

.suggestion-alert.sucesso {
    background: rgba(0, 160, 90, 0.12);
    color: #056c3b;
}

.suggestion-alert.erro {
    background: rgba(225, 25, 35, 0.16);
    color: var(--madesa-red-dark);
}

.suggestion-alert.aviso {
    background: rgba(255, 170, 0, 0.16);
    color: #8a5a00;
}

.benefits-highlight {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-highlight h2 {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(24px, 3vw, 32px);
    color: #111;
    margin: 0;
}

.benefits-highlight__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 32px;
}

.benefits-carousel {
    position: relative;
}

.benefits-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(225, 25, 35, 0.45);
    background: #fff;
    color: var(--madesa-red);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.benefits-nav:hover,
.benefits-nav:focus-visible {
    transform: translateX(4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(225, 25, 35, 0.25);
    border-color: rgba(225, 25, 35, 0.7);
    outline: none;
}

.benefits-nav.is-reversed:hover,
.benefits-nav.is-reversed:focus-visible {
    transform: translateX(-4px);
}

.benefits-nav svg {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0 auto;
    position: relative;
    top: 2px;
}

.benefits-nav.is-reversed svg {
    transform: rotate(180deg);
}

.benefits-carousel {
    position: relative;
}

.benefits-carousel[data-benefits-state="primary"] [data-benefit-group="secondary"],
.benefits-carousel[data-benefits-state="primary"] [data-benefit-group="tertiary"],
.benefits-carousel[data-benefits-state="secondary"] [data-benefit-group="primary"],
.benefits-carousel[data-benefits-state="secondary"] [data-benefit-group="tertiary"],
.benefits-carousel[data-benefits-state="tertiary"] [data-benefit-group="primary"],
.benefits-carousel[data-benefits-state="tertiary"] [data-benefit-group="secondary"] {
    display: none !important;
}

.benefits-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--madesa-red);
    border: 1px solid rgba(225, 25, 35, 0.35);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    z-index: 2;
}

.benefits-slider-nav:focus-visible {
    outline: 2px solid var(--madesa-red);
    outline-offset: 2px;
}

.benefits-slider-nav--prev {
    left: 8px;
}

.benefits-slider-nav--next {
    right: 8px;
}

.benefits-slider-nav[disabled] {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
    pointer-events: none;
}

.benefit-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px 32px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.benefit-card__icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--madesa-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(225, 25, 35, 0.25);
    margin-bottom: 8px;
}

.benefit-card__icon svg {
    width: 64px;
    height: 64px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    font-size: clamp(20px, 2.6vw, 26px);
    color: #1a1a1a;
    margin: 0;
}

.benefit-card p {
    color: #434343;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    font-style: italic;
}

.benefit-card__description {
    font-style: italic;
    color: #3a3a3a;
    line-height: 1.65;
}

.benefit-card__list {
    align-self: stretch;
    text-align: left;
    margin: 0;
    padding: 0 0 0 26px;
    color: #4d4d4d;
    line-height: 1.6;
}

.benefit-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--madesa-red);
    font-weight: 600;
    border-radius: 999px;
    padding: 10px 22px;
    border: 1px solid rgba(225, 25, 35, 0.4);
    transition: background 0.2s ease;
}

.benefit-card__icon--outlined {
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.08), 0 12px 28px rgba(225, 25, 35, 0.25);
}

.benefit-card:hover,
.benefit-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(225, 25, 35, 0.22);
}

.benefit-card:hover .benefit-card__cta,
.benefit-card:focus-visible .benefit-card__cta {
    background: rgba(225, 25, 35, 0.1);
}

.benefit-card[hidden] {
    display: none !important;
}

@media (max-width: 640px) {
    .benefits-highlight__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefits-nav {
        align-self: flex-end;
    }

    .benefit-card {
        padding: 30px 22px 26px;
    }

    .benefit-card__icon {
        width: 100px;
        height: 100px;
    }

    .benefit-card__icon svg {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 720px) {
    .benefits-nav {
        display: none !important;
    }

    .benefits-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px;
        padding: 0;
    }

    .benefit-card {
        width: 100%;
        min-width: 0;
        padding: 22px 18px 24px;
        border-radius: 18px;
        min-height: 400px;
    }

    .benefit-card h3 {
        font-size: 20px;
    }

    .benefit-card p,
    .benefit-card__description {
        font-size: 14px;
        line-height: 1.5;
    }

    .benefits-slider-nav {
        display: inline-flex !important;
    }

    .benefits-carousel {
        padding: 0;
        overflow: visible;
    }

    .benefits-grid {
        width: 100%;
        max-width: 100%;
    }

    .benefit-card {
        width: 100%;
        max-width: 100%;
    }

    .benefits-slider-nav--prev {
        left: -10px;
    }

    .benefits-slider-nav--next {
        right: -10px;
    }

    .benefits-slider-nav {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

.apps-highlight {
    text-align: center;
    margin-bottom: 80px;
}

.apps-highlight h2 {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(24px, 3vw, 32px);
    color: #111;
    margin-bottom: 32px;
}

.apps-highlight__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.apps-highlight__carousel {
    position: relative;
}

.apps-highlight__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--madesa-red);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    z-index: 2;
}

.apps-highlight__nav:focus-visible {
    outline: 2px solid var(--madesa-red);
    outline-offset: 2px;
}

.apps-highlight__nav--prev {
    left: 8px;
}

.apps-highlight__nav--next {
    right: 8px;
}

.apps-highlight__nav[disabled] {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
    pointer-events: none;
}

.apps-highlight__card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px 32px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.apps-highlight__card:hover,
.apps-highlight__card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(225, 25, 35, 0.22);
}

.apps-highlight__icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--madesa-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(225, 25, 35, 0.25);
    margin-bottom: 8px;
}

.apps-highlight__icon svg {
    width: 64px;
    height: 64px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.apps-highlight__card h3 {
    font-size: clamp(20px, 2.6vw, 26px);
    color: #1a1a1a;
    margin: 0;
}

.apps-highlight__card p {
    color: #434343;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

.apps-highlight__list {
    align-self: stretch;
    text-align: left;
    margin: 0;
    padding: 0 0 0 26px;
    color: #4d4d4d;
    line-height: 1.6;
}

.apps-highlight__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--madesa-red);
    font-weight: 600;
    border-radius: 999px;
    padding: 10px 22px;
    border: 1px solid rgba(225, 25, 35, 0.4);
    transition: background 0.2s ease;
}

.apps-highlight__card:hover .apps-highlight__cta,
.apps-highlight__card:focus-visible .apps-highlight__cta {
    background: rgba(225, 25, 35, 0.1);
}

@media (max-width: 640px) {
    .apps-highlight__card {
        padding: 30px 22px 26px;
        border-radius: 10px;
    }

    .apps-highlight__icon {
        width: 100px;
        height: 100px;
    }

    .apps-highlight__icon svg {
        width: 52px;
        height: 52px;
    }
}

.faq-search-bar {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 64px;
    background: #fff;
    border-radius: 26px;
    padding: 26px 32px;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: stretch;
    width: 100%;
}

.faq-search-field {
    flex: 1 1 420px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-search-label {
    font-weight: 600;
    color: var(--madesa-red-dark);
}

.faq-search-form input[type="search"] {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.18);
    padding: 14px 18px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.faq-search-form input[type="search"]:focus {
    outline: none;
    border-color: rgba(225, 25, 35, 0.6);
    box-shadow: 0 0 0 3px rgba(225, 25, 35, 0.18);
}

.faq-search-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--madesa-red);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-search-button svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.faq-search-button:hover,
.faq-search-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(225, 25, 35, 0.28);
}

.faq-search-feedback {
    font-size: 15px;
    border-radius: 16px;
    padding: 12px 16px;
    line-height: 1.6;
    display: none;
}

.faq-search-feedback[data-state] {
    display: block;
}

.faq-search-feedback[data-state="sucesso"] {
    background: rgba(0, 160, 90, 0.12);
    color: #056c3b;
}

.faq-search-feedback[data-state="aviso"] {
    background: rgba(255, 170, 0, 0.16);
    color: #8a5a00;
}

.faq-search-feedback[data-state="erro"] {
    background: rgba(225, 25, 35, 0.16);
    color: var(--madesa-red-dark);
}

.faq-search-highlight {
    outline: 3px solid rgba(225, 25, 35, 0.55);
    outline-offset: 4px;
}

@media (max-width: 720px) {
    .faq-search-bar {
        padding: 16px 18px;
        margin-bottom: 40px;
        border-radius: 20px;
    }

    .faq-search-form {
        flex-direction: column;
    }

    .faq-search-button {
        justify-content: center;
        width: 100%;
    }

    .apps-highlight__carousel {
        padding: 0;
    }

    .apps-highlight__grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 18px;
        padding: 0;
    }

    .apps-highlight__card {
        min-width: 0;
        padding: 24px 18px 26px;
    }

    .apps-highlight__card h3 {
        font-size: 20px;
    }

    .apps-highlight__card p,
    .apps-highlight__list {
        font-size: 14px;
        line-height: 1.5;
    }

    .apps-highlight__nav {
        display: none;
    }
}

.faq-floating-button {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 92px;
    height: 92px;
    border-radius: 26px;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
    opacity: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    z-index: 1000;
}

.faq-floating-button img {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.faq-floating-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26);
}

.faq-floating-button.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Painel de sugestões igual ao PortalLaravel */
.faq-panel {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(12, 18, 32, 0.48) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    padding: 0 !important;
    flex-direction: row !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: opacity 0.2s ease, visibility 0.2s ease !important;
}
.faq-panel.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-panel__wrapper {
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    border-radius: 22px !important;
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.12) !important;
    width: auto !important;
    max-width: 580px !important;
    min-width: 420px !important;
    max-height: 90vh !important;
    overflow: hidden !important;
/* ...existing code... */
    box-sizing: border-box !important;
}

.faq-panel.active .faq-panel__header,
.faq-panel.active .faq-panel__body {
    display: flex !important;
}

@media (max-width: 700px) {
    .faq-panel__wrapper {
        width: 90vw !important;
        max-width: 90vw !important;
        min-width: 280px !important;
    }
    .faq-panel__header {
        padding: 12px 16px 10px 16px !important;
    }
    .faq-panel__body {
        padding: 12px 16px 12px 16px !important;
    }
}

.faq-floating-button.is-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s;
}

.faq-panel__header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 20px 12px 20px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    gap: 12px !important;
    background: #fff !important;
    border-radius: 22px 22px 0 0 !important;
    flex-shrink: 0 !important;
}

.faq-panel__header h2 {
    font-size: 18px !important;
    margin: 0 !important;
    flex: 1 !important;
    text-align: center !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
}

.faq-close-button {
    background: transparent !important;
    border: none !important;
    font-size: 24px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    color: #333 !important;
    transition: transform 0.2s ease !important;
    padding: 0 4px !important;
}

.faq-close-button:hover {
    transform: scale(1.15) !important;
}

.faq-panel__body {
    padding: 14px 16px 14px 16px !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    background: #fff !important;
    border-radius: 0 0 22px 22px !important;
    flex-shrink: 1 !important;
    min-height: 0 !important;
    box-sizing: border-box !important;
}

/* .faq-panel__content - removido, não mais usado */

.faq-panel form {
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
}

.faq-panel__body details + details {
    margin-top: 18px;
}

.hero-section.hero-faq {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(24px, 6vw, 60px);
    align-items: center;
    padding: clamp(48px, 6vw, 90px);
    background: linear-gradient(145deg, var(--madesa-red) 0%, rgba(225, 25, 35, 0.82) 40%, rgba(88, 19, 19, 0.9) 100%);
    color: #ffffff;
    border-bottom: 1px solid rgb(255, 255, 255);
}

.hero-section.hero-faq .hero-copy {
    max-width: 640px;
}

.hero-section.hero-faq .hero-copy h1 {
    color: #ffffff;
}

.hero-section.hero-faq .hero-copy p {
    text-align: justify;
    margin-bottom: 18px;
    color: #ffffff;
    line-height: 1.7;
}

.hero-section.hero-faq .hero-media {
    justify-self: stretch;
    padding: clamp(8px, 2vw, 18px);
}

.hero-section.hero-faq .hero-media img {
    width: 900px;
    min-width: 340px;
    max-width: 98vw;
    height: auto;
    min-height: 480px;
    max-height: 96vh;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 28px 60px rgba(8, 15, 30, 0.35);
}


@media (max-width: 640px) {
    #aplicativos .app-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .faq-floating-button {
        bottom: 18px;
        right: 18px;
        width: 76px;
        height: 76px;
        border-radius: 20px;
    }

    .faq-panel {
        padding: 12px;
    }

    /* .faq-panel__content - removido, não mais usado */
}

@media (max-width: 980px) {
    .hero-section.hero-faq {
        grid-template-columns: 1fr;
        text-align: center;
        padding: clamp(28px, 8vw, 40px) clamp(20px, 7vw, 32px);
    }

    .hero-section.hero-faq .hero-copy,
    .hero-section.hero-faq .hero-copy h1 {
        text-align: center;
    }

    .hero-section.hero-faq .hero-copy p {
        text-align: justify;
    }

    .hero-section.hero-faq .hero-media {
        justify-self: center;
    }
}
