*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Estilos globais */
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--Cor-Fundo);
    height: 100vh;
}



/* Container do formulário */
.form-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin-top: 30px;
    margin-bottom: 30px;
}

h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--Cor-Fundo);
}

.input-group {
    margin-bottom: 20px;
}

label {
    font-size: 16px;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

input[type="text"], input[type="tel"], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 10px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="tel"]:focus, textarea:focus {
    border-color: #000000;
    outline: none;
}

textarea {
    resize: vertical;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 1.2s ease;
}

button:hover {
    color: black;
    background-color: rgba(23, 22, 23, 0);
}

/* Imagens de carros */
.car-images {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.car-image {
    width: 32%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.car-image:hover {
    transform: scale(1.05);
    border: 2px solid #232323;
}
 

/* Responsividade */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }

    .car-images {
        flex-direction: column;
        align-items: center;
    }

    .car-image {
        width: 80%;
        height: auto;
    }

    header h1 {
        font-size: 28px;
    }

    header p {
        font-size: 16px;
    }

    h2 {
        font-size: 24px;
    }

    button {
        font-size: 16px;
    }
}


