.pcp-form {
    max-width: 500px;
    margin: 50px auto;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: Arial, sans-serif;
}

.pcp-form input[type="text"],
.pcp-form input[type="file"] {
    padding: 15px 18px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.pcp-form input[type="text"]:focus,
.pcp-form input[type="file"]:focus {
    border-color: #25D366;
    outline: none;
}

.pcp-form button {
    padding: 16px;
    border-radius: 12px;
    color: #fff;
    border: none;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pcp-form button:hover {
    filter: brightness(110%);
}

.pcp-response {
    margin-top: 15px;
    font-weight: bold;
    color: #25D366;
    text-align: center;
    font-size: 16px;
}

/* Ajuste para dispositivos móviles */
@media (max-width: 600px) {
    .pcp-form {
        padding: 25px;
        gap: 15px;
    }
    .pcp-form button {
        font-size: 16px;
        padding: 14px;
    }
}
