/**
 * Arquivo: assets/css/plm-style.css
 */

.plm-wrapper {
    width: 100%;
    min-height: 700px;
    padding: 30px 15px;
    box-sizing: border-box;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
}

.plm-form {
    width: 100%;
    max-width: 680px;
}

.plm-progress-area {
    margin-bottom: 25px;
    text-align: center;
}

.plm-progress-text {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
}

.plm-progress-bar {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 20px;
    background: #292929;
}

#plm-progress-fill {
    display: block;
    width: 16.66%;
    height: 100%;
    border-radius: 20px;
    background: #25d366;
    transition: width 0.3s ease;
}

.plm-step {
    display: none;
    width: 100%;
}

.plm-step.is-active {
    display: block;
    animation: plmFadeIn 0.3s ease;
}

.plm-card {
    width: 100%;
    padding: 35px 30px;
    box-sizing: border-box;
    border: 1px solid #333333;
    border-radius: 18px;
    background: #080808;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.plm-icon {
    margin-bottom: 15px;
    font-size: 52px;
}

.plm-card h1,
.plm-card h2 {
    margin: 0 0 20px;
    color: #ffffff;
    line-height: 1.35;
}

.plm-card h1 {
    font-size: 28px;
}

.plm-card h2 {
    font-size: 24px;
}

.plm-description {
    margin-bottom: 28px;
    color: #dddddd;
    line-height: 1.6;
}

.plm-card label:not(.plm-check):not(.plm-moto-option) {
    display: block;
    margin: 18px 0 8px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
}

.plm-card input[type="text"],
.plm-card input[type="tel"] {
    width: 100%;
    min-height: 50px;
    padding: 13px 15px;
    box-sizing: border-box;
    border: 1px solid #555555;
    border-radius: 10px;
    outline: none;
    background: #161616;
    color: #ffffff;
    font-size: 16px;
}

.plm-card input:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.plm-card input::placeholder {
    color: #999999;
}

.plm-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.plm-button {
    min-width: 130px;
    padding: 14px 22px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    background: #25d366;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.plm-button:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.plm-button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.plm-motos {
    display: grid;
    gap: 12px;
    text-align: left;
}

.plm-moto-option {
    display: block;
    cursor: pointer;
}

.plm-moto-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plm-moto-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 16px;
    border: 1px solid #444444;
    border-radius: 12px;
    background: #151515;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.plm-moto-option input:checked + .plm-moto-content {
    border-color: #25d366;
    background: #12321e;
}

.plm-moto-content strong {
    color: #ffffff;
    font-size: 18px;
}

.plm-moto-content small {
    color: #dddddd;
    font-size: 14px;
}

.plm-summary {
    margin: 20px 0;
    padding: 15px;
    border-radius: 12px;
    background: #151515;
    text-align: left;
}

.plm-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 9px 0;
    border-bottom: 1px solid #333333;
}

.plm-summary-row:last-child {
    border-bottom: 0;
}

.plm-summary-row strong {
    color: #ffffff;
}

.plm-summary-row span {
    color: #dddddd;
    text-align: right;
}

.plm-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 20px 0;
    color: #ffffff;
    text-align: left;
}

.plm-check input {
    margin-top: 3px;
}

.plm-message {
    min-height: 22px;
    margin: 12px 0;
    font-size: 14px;
}

.plm-message.is-success {
    color: #25d366;
}

.plm-message.is-error {
    color: #ff7676;
}

.plm-warning {
    padding: 15px;
    border-radius: 10px;
    background: #3b2900;
    color: #ffd666;
    text-align: center;
}

@keyframes plmFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .plm-wrapper {
        min-height: 600px;
        padding: 20px 10px;
    }

    .plm-card {
        padding: 25px 18px;
        border-radius: 14px;
    }

    .plm-card h1 {
        font-size: 23px;
    }

    .plm-card h2 {
        font-size: 21px;
    }

    .plm-actions {
        flex-direction: column-reverse;
    }

    .plm-button {
        width: 100%;
    }

    .plm-summary-row {
        flex-direction: column;
        gap: 4px;
    }

    .plm-summary-row span {
        text-align: left;
    }
}