﻿.form-feedback-toast {
    position: fixed;
    top: 92px;
    right: 22px;
    z-index: 9999;
    width: min(360px, calc(100vw - 32px));
    display: grid;
    gap: 4px;
    border: 1px solid rgba(239, 68, 68, 0.22);
    border-left: 5px solid #ef4444;
    border-radius: 12px;
    padding: 14px 16px;
    background: #ffffff;
    color: #233143;
    box-shadow: 0 18px 42px rgba(10, 25, 45, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-feedback-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.form-feedback-toast strong {
    color: #082f57;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.2;
}

.form-feedback-toast span {
    color: #596575;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
}

.form-feedback-toast--success {
    border-color: rgba(34, 197, 94, 0.22);
    border-left-color: #22c55e;
}

.field-feedback-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18) !important;
}

.field-feedback-bubble {
    position: absolute;
    z-index: 10000;
    display: grid;
    gap: 3px;
    border: 1px solid rgba(239, 68, 68, 0.22);
    border-left: 5px solid #ef4444;
    border-radius: 12px;
    padding: 12px 14px;
    background: #ffffff;
    color: #233143;
    box-shadow: 0 16px 36px rgba(10, 25, 45, 0.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.field-feedback-bubble::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 1px solid rgba(239, 68, 68, 0.22);
    transform: rotate(45deg);
}

.field-feedback-bubble--left {
    transform: translateY(-50%) translateX(-6px);
}

.field-feedback-bubble--left::after {
    right: -7px;
    top: 50%;
    border-left: 0;
    border-bottom: 0;
    transform: translateY(-50%) rotate(45deg);
}

.field-feedback-bubble--right {
    transform: translateY(-50%) translateX(6px);
}

.field-feedback-bubble--right::after {
    left: -7px;
    top: 50%;
    border-right: 0;
    border-top: 0;
    transform: translateY(-50%) rotate(45deg);
}

.field-feedback-bubble--bottom {
    transform: translateY(6px);
}

.field-feedback-bubble--bottom::after {
    left: 24px;
    top: -7px;
    border-right: 0;
    border-bottom: 0;
}

.field-feedback-bubble.is-visible {
    opacity: 1;
}

.field-feedback-bubble--left.is-visible,
.field-feedback-bubble--right.is-visible {
    transform: translateY(-50%) translateX(0);
}

.field-feedback-bubble--bottom.is-visible {
    transform: translateY(0);
}

.field-feedback-bubble strong {
    color: #082f57;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.2;
}

.field-feedback-bubble span {
    color: #596575;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}
.form-privacy a { color: var(--color-primary); text-decoration: underline; }

/* ============================================
   SUPORTE / CONTATO
============================================ */
#suporte { padding: 8px 0; background: var(--color-white); }

.suporte-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.suporte-top__text h2 {
    font-family: 'poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.25;
    margin-bottom: 18px;
}

.suporte-top__text h2 strong {
    font-weight: 800;   
    color: #2b4e74;
}

.suporte-top__text p {
    font-size: 1rem;
    color: #7a7a7a;
    max-width: 490px;
    line-height: 1.65;
    margin-bottom: 10px;
}

.suporte-top__btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 380px;
}

.suporte-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 28px !important;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s, background 0.2s;
    font-family: var(--ff-base);
}

.suporte-btn--wa {
    background: var(--color-accent);
    color: #fff;
}
.suporte-btn--wa:hover { opacity: 0.88; }

.suporte-btn--gray {
    background: #ebebeb;
    color: #00345f;
}
.suporte-btn--gray:hover { background: #dcdcdc; }

.suporte-canais {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.suporte-canal h3 {
    font-family: 'poppins', sans-serif;
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 18px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 9px;
}

.suporte-canal h3::before {
    content: '';
    width: 79px;
    height: 15px;
    background: #e9922b;
    flex: 0 0 79px;
}

.suporte-canal p {
    font-size: 0.93rem;
    color: var(--color-text);
    line-height: 2;
    margin: 0;
}

.suporte-canal p strong { font-weight: 700; color: #2b4e74; }

.suporte-canal a { color: var(--color-primary); }
.suporte-canal a:hover { text-decoration: underline; }

/* ============================================
   FOOTER
============================================ */
#footer { background: #032e59; color: rgba(255,255,255,0.8); padding: 56px 0 0; }

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr 1.05fr 1.05fr 1.05fr 1.15fr;
    gap: 28px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* --- Títulos de seção (Localização, Acesse, Sobre, Utilidade, Autorizadas) --- */
.footer-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-section-title::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 4px;
    background: var(--color-accent);
    flex-shrink: 0;
}
.footer-section-title--gap { margin-top: 22px; }

/* --- Col 1: contact, nav, social --- */
.footer-logo-link { display: block; margin-bottom: 22px; }
.footer-logo-link img { max-width: 165px; filter: brightness(0) invert(1); }

.footer-fale { margin-bottom: 14px; }
.footer-fale__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
}
.footer-fale__row { display: flex; align-items: center; gap: 10px; }
.footer-wa-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}
.footer-wa-icon:hover { background: #1eb856; }
.footer-fale__phone {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color var(--transition);
}
.footer-fale__phone:hover { color: var(--color-accent); }

.footer-ligamos-btn {
    display: inline-block;
    background: var(--color-cta-orange);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 50px;
    margin-bottom: 22px;
    transition: background var(--transition);
}
.footer-ligamos-btn:hover { background: var(--color-cta-orange-h); color: var(--color-white); }

.footer-acesse-nav { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.footer-acesse-nav a { font-size: 0.82rem; color: var(--color-accent); transition: opacity var(--transition); }
.footer-acesse-nav a:hover { opacity: 0.72; }

.footer-social { display: flex; gap: 9px; }
.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.footer-social-icon:hover { background: var(--color-primary); }

/* --- City address blocks --- */
.footer-city { margin-bottom: 15px; }
.footer-city:last-child { margin-bottom: 0; }
.footer-city--first { margin-top: 30px; }
.footer-city strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--color-white); margin-bottom: 2px; }
.footer-city a { display: block; font-size: 0.95rem; font-weight: 700; color: var(--color-white); margin-bottom: 3px; transition: color var(--transition); }
.footer-city a:hover { color: var(--color-accent); }
.footer-city span { display: block; font-size: 0.85rem; color: rgba(255, 255, 255, 0.897); line-height: 1.55; }

/* --- Col 5: Sobre, Utilidade, Autorizadas --- */
.footer-sobre-nav { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.footer-sobre-nav a { font-size: 0.82rem; color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-sobre-nav a:hover { color: var(--color-white); }

.footer-badge-link { display: block; margin-bottom: 8px; }
.footer-badge-link img { border-radius: 4px; }
.footer-badges { display: flex; flex-direction: column; gap: 8px; }

/* --- Bottom bar --- */
.footer-bottom {
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--color-white); }

/* ============================================
   CENTRAL RH FOOTER
============================================ */
.crh-footer {
    background:
        radial-gradient(circle at 80% 10%, rgba(62, 38, 105, 0.55), transparent 34%),
        linear-gradient(135deg, #201634 0%, #281b3d 54%, #211732 100%);
    color: #ffffff;
    padding: 30px 0;
    overflow: hidden;
}

.crh-footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) minmax(190px, 0.7fr) minmax(280px, 0.95fr);
    gap: clamp(28px, 6vw, 84px);
    align-items: center;
    max-width: 1160px;
}

.crh-footer__brand {
    min-height: 278px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.crh-footer__title {
    display: inline-flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.72);
    font-family: 'Roboto Slab', serif;
    font-size: clamp(2rem, 3.4vw, 2.45rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.crh-footer__title::after {
    content: '';
    width: 100%;
    height: 4px;
    margin-top: 7px;
    background: #ffb000;
}

.crh-footer__title:hover {
    color: #ffffff;
}

.crh-footer__support {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.crh-footer__support img {
    width: 112px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.34;
    transition: opacity var(--transition), transform var(--transition);
}

.crh-footer__support a:hover img {
    opacity: 0.8;
    transform: translateY(-1px);
}

.crh-footer__privacy {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition);
}

.crh-footer__privacy:hover {
    color: #ffb000;
}

.crh-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-self: center;
}

.crh-footer__nav h2 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: var(--ff-base);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
}

.crh-footer__nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    transition: color var(--transition), transform var(--transition);
}

.crh-footer__nav a:hover {
    color: #ffb000;
    transform: translateX(3px);
}

.crh-footer__nav span {
    font-size: 0.72rem;
    transform: translateY(1px);
}

.crh-footer__ad {
    display: block;
    justify-self: end;
    width: min(100%, 312px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
    transition: transform var(--transition), box-shadow var(--transition);
}

.crh-footer__ad:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.3);
}

.crh-footer__ad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   FLOATING WHATSAPP
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.22);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.28); animation: none; }

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ============================================
   MODAIS
============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-box {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px 36px;
    width: 100%;
    max-width: 480px;
    position: relative;
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.93) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-light);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}
.modal-close:hover { color: var(--color-text); }

.modal-box h3 { font-size: 1.3rem; font-weight: 800; color: var(--color-primary); margin-bottom: 24px; text-align: center; }
.modal-box .form-submit-btn { margin-top: 10px; }

.modal-box--contact {
    max-width: 680px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 30px 30px 28px;
    border-radius: 18px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.modal-box--contact .modal-close {
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f4f8;
    color: #1f486f;
    font-size: 1.3rem;
}

.modal-contact__header {
    display: block;
    margin-bottom: 26px;
    padding-right: 28px;
}

.modal-contact__header h3 {
    color: #5d626a;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
    margin: 0;
}

.modal-contact__header h3 strong {
    color: #082f57;
    font-weight: 900;
}

.modal-contact__header p {
    color: #686d74;
    font-size: 1.06rem;
    line-height: 1.55;
    margin: 0;
}

.modal-contact__icon {
    color: #082f57;
    margin-top: -4px;
}

.modal-contact__form {
    display: grid;
    grid-template-columns: minmax(220px, 0.95fr) minmax(0, 2.05fr);
    gap: 12px;
    align-items: start;
}

.modal-contact__full,
.modal-box--contact .form-submit-btn,
.modal-box--contact .modal-contact__submit {
    grid-column: 1 / -1;
}

.modal-box--contact .form-group {
    margin: 0;
}

.modal-box--contact .form-group label {
    min-height: 40px;
    display: flex;
    align-items: flex-end;
    color: #000000;
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 5px;
}

.modal-box--contact .form-group label span {
    color: #ff2200;
}

.modal-box--contact .form-group input,
.modal-box--contact .form-group select,
.modal-box--contact .form-group textarea {
    border: 1px solid #aeb6c1;
    border-radius: 8px;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.92rem;
    box-shadow: none;
}

.modal-box--contact .form-group select {
    appearance: none;
    cursor: pointer;
    background-color: #ffffff;
    background-position: right 12px center;
    color: #5f6672;
}

.modal-contact__select-group {
    position: relative;
    z-index: 2;
}

.modal-contact__select {
    position: relative;
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #aeb6c1;
    border-radius: 8px;
    padding: 10px 38px 10px 12px;
    background: #ffffff;
    color: #6b7280;
    font: inherit;
    font-size: 0.92rem;
    text-align: left;
    box-shadow: none;
    white-space: nowrap;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-contact__select::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.modal-contact__select[aria-expanded="true"] {
    border-color: #2f80ed;
    box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.14);
}

.modal-contact__select[aria-expanded="true"]::after {
    border-color: #2f80ed;
    transform: translateY(-35%) rotate(225deg);
}

.modal-contact__select-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    overflow: hidden;
    border: 1px solid #b9d4fb;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 35, 70, 0.18);
}

.modal-contact__select-menu.is-open {
    display: block;
    animation: modalSelectIn 0.16s ease both;
}

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

.modal-contact__select-menu button {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    border: 0;
    border-bottom: 1px solid #eef3f8;
    padding: 9px 12px;
    background: #ffffff;
    color: #26384a;
    font: inherit;
    font-size: 0.9rem;
    line-height: 1.25;
    text-align: left;
    transition: background 0.18s ease, color 0.18s ease;
}

.modal-contact__select-menu button:last-child {
    border-bottom: 0;
}

.modal-contact__select-menu button:hover,
.modal-contact__select-menu button.is-selected {
    background: #eaf3ff;
    color: #003c73;
}

.modal-box--contact .form-group textarea {
    min-height: 106px;
    resize: vertical;
}

/* Dropdown de faixa dentro do modal Teste Grátis (inputs arredondados) */
#modal-trial .modal-contact__select {
    border-radius: 20px;
    border: 1.5px solid var(--color-border);
    min-height: 44px;
    font-size: 0.9rem;
    color: var(--color-text);
    background: var(--color-bg);
}
#modal-trial .modal-contact__select[aria-expanded="true"] {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0,48,135,0.1);
}
#modal-trial .modal-contact__select-menu {
    border-radius: 12px;
}

.modal-box--contact .form-submit-btn,
.modal-box--contact .modal-contact__submit {
    min-height: 48px;
    margin-top: 0;
    border-radius: 8px;
    background: var(--color-cta-orange);
    color: #ffffff;
    box-shadow: none;
}

.modal-box--contact .form-submit-btn:hover,
.modal-box--contact .modal-contact__submit:hover {
    background: var(--color-cta-orange-h);
}

.modal-box--contact .form-privacy {
    grid-column: 1 / -1;
    display: block;
    margin-top: 0;
    color: #6b6f76;
    font-size: 0.84rem;
    line-height: 1.45;
    text-align: left;
}

.modal-plan-notice {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #eef5ff;
    border: 1px solid #b6d4fe;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.93rem;
    color: #1e3a5f;
    line-height: 1.5;
    margin-bottom: 4px;
}
.modal-plan-notice svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #2563eb;
}
.modal-plan-notice strong {
    color: #1e40af;
    font-weight: 800;
}

@media (max-width: 700px) {
    .modal-box--contact {
        padding: 24px 18px;
    }

    .modal-contact__header {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-right: 26px;
    }

    .modal-contact__icon {
        display: none;
    }

    .modal-contact__header h3 {
        font-size: 1.25rem;
        margin-bottom: 14px;
    }

    .modal-contact__header p {
        font-size: 0.98rem;
    }

    .modal-contact__form {
        grid-template-columns: minmax(0, 1fr);
    }

    .modal-box--contact .form-group,
    .modal-box--contact .form-submit-btn,
    .modal-box--contact .form-privacy {
        grid-column: 1 / -1;
    }

    .modal-box--contact .form-group label {
        min-height: 0;
    }
}


@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-col--right {
        grid-column: span 3;
    }
}

@media (max-width: 900px) {
    .suporte-top,
    .suporte-canais {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .suporte-canal h3::before {
        width: 54px;
        flex-basis: 54px;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 22px;
    }

    .footer-col--contact,
    .footer-col--right {
        grid-column: 1 / -1;
    }

    .footer-city--first {
        margin-top: 0;
    }

    .crh-footer {
        padding: 34px 0;
    }

    .crh-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }

    .crh-footer__brand {
        min-height: 230px;
    }

    .crh-footer__ad {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 340px);
    }
}

@media (max-width: 640px) {
    #footer {
        padding-top: 32px;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
        padding-bottom: 28px;
        text-align: left;
    }

    .footer-col--contact,
    .footer-col--right {
        grid-column: 1 / -1;
    }

    .footer-col--contact {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 14px;
        align-items: start;
    }

    .footer-logo-link,
    .footer-fale,
    .footer-ligamos-btn {
        grid-column: 1;
    }

    .footer-col--contact > .footer-section-title {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        margin-top: 8px;
    }

    .footer-col--contact .footer-acesse-nav {
        grid-column: 2;
        grid-row: 2 / span 2;
    }

    .footer-col--contact .footer-social {
        grid-column: 1 / -1;
        grid-row: 4;
        margin-top: 4px;
    }

    .footer-col--right {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 14px;
        align-items: start;
    }

    .footer-col--right > .footer-section-title:first-child {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-col--right .footer-sobre-nav {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-col--right > .footer-section-title--gap:nth-of-type(2),
    .footer-col--right > .footer-section-title--gap:nth-of-type(2) + .footer-badge-link {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-col--right > .footer-section-title--gap:nth-of-type(2) + .footer-badge-link {
        grid-row: 2;
    }

    .footer-col--right > .footer-section-title--gap:nth-of-type(3),
    .footer-col--right .footer-badges {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .footer-col--right .footer-badges {
        grid-row: 4;
    }

    .footer-col--loc,
    .footer-col--loc2,
    .footer-col--loc3 {
        display: contents;
    }

    .footer-col--loc > .footer-section-title {
        grid-column: 1 / -1;
        margin: 6px 0 -4px;
    }

    .footer-section-title {
        margin-bottom: 10px;
        font-size: 0.72rem;
        letter-spacing: 0.9px;
    }

    .footer-section-title::before {
        width: 24px;
        height: 3px;
    }

    .footer-logo-link {
        margin-bottom: 14px;
    }

    .footer-logo-link img {
        max-width: 145px;
    }

    .footer-fale {
        margin-bottom: 10px;
    }

    .footer-fale__row,
    .footer-social {
        justify-content: flex-start;
    }

    .footer-social {
        justify-content: space-between;
        gap: 14px;
        width: 100%;
        padding-inline: 2px;
    }

    .footer-social-icon {
        width: 52px;
        height: 52px;
    }

    .footer-social-icon svg {
        width: 23px;
        height: 23px;
    }

    .footer-ligamos-btn {
        width: auto;
        max-width: 100%;
        margin-bottom: 16px;
        padding: 9px 16px;
        font-size: 0.66rem;
    }

    .footer-acesse-nav,
    .footer-sobre-nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
        margin-bottom: 12px;
    }

    .footer-acesse-nav a,
    .footer-sobre-nav a {
        font-size: 0.78rem;
        line-height: 1.25;
    }

    .footer-city,
    .footer-city:last-child,
    .footer-city--first {
        margin: 0;
        padding: 8px 9px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.045);
    }

    .footer-city strong {
        margin-bottom: 3px;
        font-size: 0.74rem;
        line-height: 1.15;
    }

    .footer-city a {
        margin-bottom: 0;
        font-size: 0.74rem;
        line-height: 1.15;
    }

    .footer-city span {
        display: none;
    }

    .footer-section-title--gap {
        margin-top: 0;
    }

    .footer-badges {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        align-items: center;
    }

    .footer-badge-link {
        margin-bottom: 0;
    }

    .footer-badge-link img {
        width: 100%;
        max-width: 112px;
        height: auto;
        margin-inline: 0;
    }

    .footer-bottom {
        padding: 14px 0;
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .crh-footer {
        padding: 38px 0 34px;
        text-align: center;
    }

    .crh-footer__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .crh-footer__brand {
        min-height: 0;
        gap: 22px;
        align-items: center;
    }

    .crh-footer__support {
        justify-content: center;
    }

    .crh-footer__nav {
        align-items: center;
    }

    .crh-footer__ad {
        width: min(100%, 300px);
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .modal-overlay {
        padding: 14px;
        align-items: flex-start;
        overflow-y: auto;
    }

    .modal-box {
        max-height: calc(100vh - 28px);
        overflow-y: auto;
        padding: 32px 18px 24px;
    }

    .modal-box form > div[style*="grid-template-columns"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   RECIBOS E NOTAS PROMISSORIAS
============================================ */
.lp-receipts {
    background: #f4f7fb;
    color: #1f2937;
    overflow: hidden;
}

/* Hero */
.lp-receipts-hero {
    position: relative;
    background: linear-gradient(135deg, #003087 0%, #0a5a8a 100%);
    color: #fff;
    padding: 72px 0 64px;
    overflow: hidden;
}

.lp-receipts-hero__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lp-receipts-hero__deco-circle {
    position: absolute;
    border-radius: 50%;
}

.lp-receipts-hero__deco-circle--a {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(31, 208, 191, 0.22), transparent 65%);
    top: -160px;
    right: -80px;
}

.lp-receipts-hero__deco-circle--b {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(109, 156, 248, 0.18), transparent 65%);
    bottom: -100px;
    left: 6%;
}

.lp-receipts-hero__inner,
.lp-receipts-app__inner,
.lp-receipts-features__inner {
    position: relative;
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
}

.lp-receipts-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 6px;
    background: #1fd0bf;
    color: #002750;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background var(--transition, .18s ease);
}

.lp-receipts-hero__eyebrow:hover,
.lp-receipts-hero__eyebrow:focus {
    background: #17b8a9;
    color: #002750;
}

.lp-receipts-hero__content {
    max-width: 820px;
    margin-top: 28px;
}

.lp-receipts-hero__title {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.1rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.lp-receipts-hero__subtitle {
    max-width: 640px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
}

.lp-receipts-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.lp-receipts-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1;
}

/* App */
.lp-receipts-app {
    padding: 42px 0 52px;
    background: #f4f7fb;
}

.lp-receipts-app__card {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid #dce4ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(10, 30, 60, 0.1);
    overflow: hidden;
}

.lp-receipts-app__menu {
    padding: 22px 18px;
    border-bottom: 1px solid #e2e8f0;
    background: #f9fbfd;
}

.lp-receipts-app__menu-title {
    margin: 0 0 16px;
    color: #0f2f5f;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.1;
}

.lp-receipts-app__menu-button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    padding: 9px 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #111827;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.lp-receipts-app__menu-button:hover,
.lp-receipts-app__menu-button.is-active {
    background: #ffe381;
    color: #111827;
}

.lp-receipts-app__menu-button.is-active {
    box-shadow: inset 4px 0 0 #e8a000;
}

.lp-receipts-app__menu-icon {
    width: 42px;
    height: 34px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid #97c7de;
    border-radius: 4px;
    background: #effcff;
    color: #0f6f97;
    font-size: 0.72rem;
    font-weight: 900;
}

.lp-receipts-app__mini-window {
    display: none;
    margin-top: 22px;
    border: 1px solid #dbe5f2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(15, 47, 95, 0.13);
    overflow: hidden;
}

.lp-receipts-app__mini-top {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    border-bottom: 1px solid #edf2f7;
    background: #f7f9fc;
}

.lp-receipts-app__mini-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d2dce9;
}

.lp-receipts-app__mini-top span:nth-child(1) { background: #ff6b5f; }
.lp-receipts-app__mini-top span:nth-child(2) { background: #ffbf3f; }
.lp-receipts-app__mini-top span:nth-child(3) { background: #28c884; }

.lp-receipts-app__mini-body {
    min-height: 260px;
    padding: 18px 16px 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.98)),
        repeating-linear-gradient(0deg, #fff 0 28px, #f3f6fa 29px 30px);
}

.lp-receipts-app__mini-body strong {
    display: block;
    color: #0f2f5f;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.25;
}

.lp-receipts-app__mini-body p {
    margin: 8px 0 18px;
    color: #607083;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.5;
}

.lp-receipts-app__mini-line {
    height: 9px;
    width: 68%;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #e6edf5;
}

.lp-receipts-app__mini-line--wide {
    width: 92%;
}

.lp-receipts-app__mini-total {
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff4d6;
    color: #9a6400;
    font-size: 0.78rem;
    font-weight: 900;
}

.lp-receipts-app__workspace {
    padding: 22px 18px 24px;
}

.lp-receipts-form {
    display: none;
}

.lp-receipts-form.is-active {
    display: block;
}

.lp-receipts-form__header {
    margin-bottom: 18px;
}

.lp-receipts-form__title {
    margin: 0;
    color: #0f2f5f;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.18;
}

.lp-receipts-form__text {
    margin: 6px 0 0;
    color: #5f6b7b;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.55;
}

.lp-receipts-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.lp-receipts-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #243247;
    font-size: 0.82rem;
    font-weight: 800;
}

.lp-receipts-field input,
.lp-receipts-field select,
.lp-receipts-field textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid #cfdae8;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 10px 12px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.lp-receipts-field input {
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-receipts-field textarea {
    resize: vertical;
    max-height: 132px;
    overflow: auto;
}

.lp-receipts-field input:focus,
.lp-receipts-field select:focus,
.lp-receipts-field textarea:focus {
    border-color: #0a86b7;
    box-shadow: 0 0 0 3px rgba(10, 134, 183, 0.13);
}

.lp-receipts-field input.is-invalid {
    border-color: #d93636;
    box-shadow: 0 0 0 3px rgba(217, 54, 54, 0.12);
}

.lp-receipts-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.lp-receipts-actions__button {
    min-height: 42px;
    padding: 10px 18px;
    border: 0;
    border-radius: 6px;
    background: #e8a000;
    color: #fff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.lp-receipts-actions__button:hover,
.lp-receipts-actions__button:focus-visible {
    background: #d69100;
    box-shadow: 0 10px 22px rgba(232, 160, 0, 0.2);
    transform: translateY(-1px);
    outline: none;
}

.lp-receipts-actions__button--light {
    background: #eef3f8;
    color: #0f2f5f;
}

.lp-receipts-actions__button--light:hover,
.lp-receipts-actions__button--light:focus-visible {
    background: #dfe8f2;
    box-shadow: 0 10px 22px rgba(15, 47, 95, 0.12);
}

.lp-receipts-actions__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    color: #526171;
    font-size: 0.78rem;
    font-weight: 800;
}

.lp-receipts-actions__status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1aa874;
    box-shadow: 0 0 0 3px rgba(26, 168, 116, 0.12);
}

.lp-receipts-preview {
    margin-top: 18px;
    min-height: 328px;
    max-height: min(72vh, 620px);
    overflow: auto;
    overflow-x: hidden;
    scrollbar-gutter: stable;
    padding: 24px 20px 36px;
    border: 1px solid #cfd8e6;
    border-radius: 8px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(15, 47, 95, 0.16), rgba(232, 160, 0, 0.18)) border-box;
    color: #111827;
    box-shadow: 0 16px 38px rgba(15, 47, 95, 0.08);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.lp-receipts-preview__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e6edf5;
    color: #6b7688;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.lp-receipts-preview__meta strong {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef6ff;
    color: #0f5f91;
    font-size: 0.7rem;
    letter-spacing: .04em;
}

.lp-receipts-preview__title {
    margin: 0 0 18px;
    color: #0f2f5f;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.lp-receipts-preview__body {
    color: #1f2937;
    font-size: 0.98rem;
    line-height: 1.78;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lp-receipts-preview__paragraph {
    margin: 0;
    text-align: left;
    hyphens: auto;
}

.lp-receipts-preview__details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 18px;
    margin-top: 24px;
    border-top: 1px solid #e6edf5;
}

.lp-receipts-preview__detail {
    min-width: 0;
    padding: 11px 0;
    border-bottom: 1px solid #e6edf5;
}

.lp-receipts-preview__detail span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: .06em;
    line-height: 1.25;
    text-transform: uppercase;
}

.lp-receipts-preview__detail strong {
    display: block;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lp-receipts-preview__blank {
    display: inline-block;
    width: clamp(92px, 18vw, 180px);
    max-width: 100%;
    height: 0.9em;
    margin: 0 2px;
    border-bottom: 1px solid #cbd5e1;
    vertical-align: -0.08em;
    line-height: 1;
}

.lp-receipts-preview__blank--money {
    width: 82px;
}

.lp-receipts-preview__blank--date {
    width: 108px;
}

.lp-receipts-preview__detail .lp-receipts-preview__blank {
    width: min(100%, 220px);
    margin: 0;
}

.lp-receipts-preview__signature {
    width: min(100%, 340px);
    margin: 48px auto 0;
    padding-top: 10px;
    border-top: 1px solid #111827;
    color: #1f2937;
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.35;
}

/* Features */
.lp-receipts-features {
    background: #fff;
    padding: 48px 0 58px;
}

.lp-receipts-features__title {
    margin: 0;
    color: #003087;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 900;
    line-height: 1.18;
    text-align: center;
}

.lp-receipts-features__lead {
    max-width: 680px;
    margin: 14px auto 0;
    color: #566173;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.72;
    text-align: center;
}

@media (min-width: 720px) {
    .lp-receipts-hero {
        padding: 92px 0 84px;
    }

    .lp-receipts-hero__inner,
    .lp-receipts-app__inner,
    .lp-receipts-features__inner {
        width: min(100% - 64px, 1120px);
    }

    .lp-receipts-app {
        padding: 52px 0 64px;
    }

    .lp-receipts-app__card {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
        align-items: start;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        column-gap: 0;
    }

    .lp-receipts-app__menu {
        border-right: 0;
        border-bottom: 0;
        padding: 28px 24px;
        align-self: start;
        background: #f9fbfd;
        border: 1px solid #dce4ef;
        border-right: 0;
        border-radius: 12px 0 0 12px;
        box-shadow: -12px 18px 34px rgba(10, 30, 60, 0.07);
    }

    .lp-receipts-app__mini-window {
        display: block;
    }

    .lp-receipts-app__workspace {
        padding: 28px;
        border: 1px solid #dce4ef;
        border-radius: 0 12px 12px 0;
        background: #fff;
        box-shadow: 16px 20px 48px rgba(10, 30, 60, 0.1);
    }

    .lp-receipts-form__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-receipts-field--full {
        grid-column: 1 / -1;
    }

    .lp-receipts-preview {
        padding: 28px 28px 40px;
    }

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

    .lp-receipts-preview__details--compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .lp-receipts-hero {
        padding: 108px 0 96px;
    }

    .lp-receipts-app {
        padding: 64px 0 76px;
    }

    .lp-receipts-app__workspace {
        padding: 34px 36px 38px;
    }
}

@media print {
    #header,
    #footer,
    .lp-receipts > :not(.lp-receipts-app),
    .lp-receipts-app__menu,
    .lp-receipts-form,
    .lp-receipts-actions {
        display: none !important;
    }

    .lp-receipts-preview__meta {
        display: none !important;
    }

    .lp-receipts,
    .lp-receipts-app,
    .lp-receipts-app__inner,
    .lp-receipts-app__card,
    .lp-receipts-app__workspace {
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .lp-receipts-preview {
        display: block !important;
        position: fixed;
        inset: 24px;
        max-height: none;
        overflow: visible;
        margin: 0;
        box-shadow: none;
    }
}

/* ============================================
   FEATURE CARDS COMPARTILHADOS (lp-features)
============================================ */
.lp-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lp-features__card {
    background: #e8eef7;
    border-radius: var(--radius-md);
    padding: 3px 12px 12px;
    box-shadow: 0 14px 32px rgba(0,51,102,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    max-width: 335px;
    margin: 0 auto;
    width: 100%;
}
.lp-features__card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,51,102,0.12); }

.lp-features__icon-wrap {
    width: 90px; height: 90px;
    border-radius: 50%; background: transparent;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px; flex-shrink: 0; overflow: visible; padding: 0;
}
.lp-features__icon-wrap img { width: 100%; height: 100%; object-fit: contain; }

.lp-features__card-title {
    font-family: "Poppins", Sans-serif;
    font-size: clamp(1.6rem, 2.7vw, 1.95rem);
    font-weight: 800; color: #003366;
    margin-bottom: 10px; text-transform: uppercase;
    line-height: 1.15; letter-spacing: 0.01em;
}
.lp-features__card-title:has(strong) { color: #768ea8; }
.lp-features__card-title strong { color: #003366; font-weight: 900; }

.lp-features__card-desc {
    font-size: 0.90rem; font-family: "Poppins", Sans-serif;
    color: #5f7897; font-weight: 500; line-height: 1.6;
}
.lp-features__card-desc strong { color: #032e62; font-weight: 600; }
.lp-features__card-desc em { font-size: 0.72rem; }

@media (max-width: 900px) {
    .lp-features__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   CALCULADORA DE HORAS EXTRAS
============================================ */
.lp-calc {
    background: #f4f7fb;
    color: #1f2937;
    overflow: hidden;
}

.lp-calc-hero {
    background: #003366;
    color: #fff;
    padding: 72px 0 64px;
}

.lp-calc-hero__inner,
.lp-calc-app__inner {
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
}

.lp-calc-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background var(--transition, .18s ease), border-color var(--transition, .18s ease);
}

.lp-calc-hero__eyebrow:hover,
.lp-calc-hero__eyebrow:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.48);
    color: #fff;
}

.lp-calc-hero__content {
    max-width: 860px;
    margin-top: 28px;
}

.lp-calc-hero__title {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.05rem, 4.4vw, 3.55rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
}

.lp-calc-hero__text {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.72;
}

.lp-calc-app {
    padding: 42px 0 60px;
    background: #f4f7fb;
}

.lp-calc-app__shell {
    border: 1px solid #dce4ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(10, 30, 60, 0.1);
    overflow: hidden;
}

.lp-calc-app__shell iframe {
    display: block;
    width: 100%;
    min-height: 610px;
    border: 0;
    background: #fff;
}

@media (min-width: 720px) {
    .lp-calc-hero {
        padding: 92px 0 84px;
    }

    .lp-calc-hero__inner,
    .lp-calc-app__inner {
        width: min(100% - 64px, 1120px);
    }

    .lp-calc-hero__text {
        font-size: 1.05rem;
    }

    .lp-calc-app {
        padding: 56px 0 72px;
    }
}

@media (min-width: 1100px) {
    .lp-calc-hero {
        padding: 104px 0 96px;
    }

    .lp-calc-app {
        padding: 64px 0 82px;
    }
}
