body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0; /* Adicionado para remover qualquer padding padrão do body */
}

.form-container {
    background-color: #fff;
    padding: 0; /* Removido padding para tela cheia */
    border-radius: 0; /* Removido border-radius para tela cheia */
    box-shadow: none; /* Removido box-shadow para tela cheia */
    width: 100%;
    max-width: 100%;
    min-height: 100vh; /* Garante que ocupe a altura total da tela */
    box-sizing: border-box;
    position: relative;
}

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

.logo-placeholder img {
    max-width: 150px;
    height: auto;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    padding: 30px; /* Adicionado padding para o conteúdo de cada passo */
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.form-step p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="tel"],
.form-step select,
.form-step textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-step select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2C114.7L158.4%2C243.3c-2.8%2C2.8-7.8%2C2.8-10.6%2C0L5.4%2C114.7c-2.8-2.8-2.8-7.8%2C0-10.6l10.6-10.6c2.8-2.8%2C7.8-2.8%2C10.6%2C0l126.1%2C126.1l126.1-126.1c2.8-2.8%2C7.8-2.8%2C10.6%2C0l10.6%2C10.6C289.8%2C106.9%2C289.8%2C111.9%2C287%2C114.7z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
}

.form-step textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    background-color: #e60023;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #cc001f;
}

.testimonial {
    background-color: #f9f9f9;
    border-left: 5px solid #e60023;
    padding: 15px;
    margin-top: 30px;
    border-radius: 5px;
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 5px;
}

.testimonial span {
    display: block;
    text-align: right;
    font-size: 14px;
    color: #888;
}

.footer-links {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.footer-links a {
    color: #e60023;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.back-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 24px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: #333;
}

.phone-input-group {
    display: flex;
    margin-bottom: 20px;
}

.phone-input-group select {
    width: 120px;
    margin-right: 10px;
    flex-shrink: 0;
}

.phone-input-group input {
    flex-grow: 1;
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 600px) {
    .form-step h2 {
        font-size: 20px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 16px;
    }

    .back-btn {
        top: 20px;
        left: 20px;
    }
}
