:root {
    --primary-red: #FF3131; /* Cor extraída da logo */
    --dark-grey: #333;
    --light-bg: #f4f7f6;
}

* { box-sizing: border-box; font-family: 'Inter', sans-serif; }

body {
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
}

.logo-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-header img {
    max-width: 150px;
}

h2 {
    color: var(--dark-grey);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

p.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.form-group { margin-bottom: 20px; }

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-grey);
}

input[type="text"], input[type="date"], select, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-red);
    outline: none;
}

/* Estilização das categorias (Checkboxes) */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.checkbox-item input { margin-right: 8px; accent-color: var(--primary-red); }

button {
    width: 100%;
    background-color: var(--primary-red);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    margin-top: 20px;
}

button:hover {
    background-color: #d92929;
    transform: translateY(-2px);
}