.modal-licita {
        background: #ffffff;
        border-radius: 20px;
        max-width: 480px;
        width: 100%;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    }

    /* ---- Header ---- */
    .modal-licita-header {
        background-color: #1a3a2a;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
        background-size: 24px 24px;
        padding: 40px 32px 32px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal-licita-header img {
        width: 100%;
        max-width: 400px;
        border-radius: 10px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        display: block;
    }

    /* ---- Body ---- */
    .modal-licita-body {
        width: 100%;
        padding: 32px 32px 28px;
    }

    .modal-licita-body h2 {
        font-size: 26px;
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .arrow-icon {
        position: relative;
        height: 2rem;
        top: -25px;
    }

    .modal-licita-body p {
        font-size: 15px;
        line-height: 1.65;
        color: #555555;
    }

    /* ---- Footer ---- */
    .modal-licita-footer {
        width: 100%;
        padding: 0 32px 28px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .btn-fechar {
        background: none;
        border: none;
        font-size: 15px;
        color: #1a1a1a;
        cursor: pointer;
        font-weight: 500;
        padding: 10px 4px;
        font-family: inherit;
    }

    .btn-fechar:hover {
        color: #555;
    }

    .btn-whatsapp {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #1a3a2a;
        color: #ffffff;
        border: none;
        border-radius: 50px;
        padding: 14px 28px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        font-family: inherit;
        transition: background-color 0.2s ease;
    }

    .btn-whatsapp:hover {
        color: #ffffff;
        padding: 14px 28px;
        font-size: 15px;
        font-weight: 600;
        background-color: #245237;
    }

    .btn-whatsapp svg {
        flex-shrink: 0;
    }

    /* ---- Responsivo ---- */
    @media (max-width: 520px) {
        .modal-licita-header {
            padding: 28px 20px 24px;
        }

        .modal-licita-body {
            padding: 24px 20px 20px;
        }

        .modal-licita-body h2 {
            font-size: 22px;
        }

        .modal-licita-body p {
            font-size: 14px;
        }

        .modal-licita-footer {
            padding: 0 20px 24px;
            flex-direction: column-reverse;
            gap: 8px;
        }

        .btn-whatsapp {
            width: 100%;
            justify-content: center;
            padding: 14px 20px;
            font-size: 14px;
        }
    }