.elementor-748 .elementor-element.elementor-element-8511696{--display:flex;--min-height:100vh;}@media(min-width:768px){.elementor-748 .elementor-element.elementor-element-8511696{--width:100vw;}}/* Start custom CSS for html, class: .elementor-element-1cc0c16 *//* --- CSS DO FORMULÁRIO DE MANUTENÇÃO (Estilo Padrão Solar) --- */

.form-solar-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.form-solar-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.logo-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-header img {
    height: 60px;
    width: auto;
}

.form-wrapper {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Etapas */
.step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navegação (Botão Voltar) */
.back-button {
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 10;
    color: #FC7A1C;
    font-size: 36px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    margin: -10px;
    transition: color 0.2s;
    font-weight: 700;
    line-height: 1;
}

.back-button span {
    display: block;
}

.back-button:hover {
    color: #D96B42;
    background: transparent !important;
    box-shadow: none !important;
    transform: none;
}

.back-button.hidden {
    display: none;
}

/* ESTILOS GERAIS DE CONTEÚDO */
.step-1-content,
.step-2-content,
.step-3-content {
    background: linear-gradient(135deg, #FC7A1C 0%, #D96B42 100%);
    border-radius: 30px;
    padding: 40px 30px;
    color: white;
    margin: -40px -30px;
    padding-bottom: 50px;
}

.step-3-content {
    text-align: center;
}

.step-title,
.step-3-title {
    font-size: 24px; /* Levemente ajustado para caber titulos maiores */
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    color: white;
}

/* CAMPOS DE FORMULÁRIO */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: white;
}

/* Estilo para Inputs e Textarea */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid white;
    border-radius: 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* Botão Avançar */
.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: white;
    color: #FC7A1C;
    border: 2px solid white;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-submit:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(252, 122, 28, 0.3);
}

/* CARD FINAL (Step 3) */
.final-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.final-description {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Botão WhatsApp Final */
.btn-whatsapp-final {
    width: 100%;
    padding: 15px 30px;
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp-final img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: inline-block;
}

.btn-whatsapp-final:hover {
    background: #1EBE55;
    border-color: #1EBE55;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

/* Texto Aviso Laranja */
.disclaimer-text-orange {
    font-size: 14px;
    font-weight: 500;
    color: #FC7A1C;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    line-height: 1.4;
}

/* Mensagens de erro e sucesso */
.error-message {
    color: #ffeb3b; /* Amarelo para melhor contraste no fundo laranja */
    font-size: 14px;
    margin-top: 8px;
    display: none;
    font-weight: 500;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.1);
}

.error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ffeb3b;
    background: rgba(255, 235, 59, 0.1);
}

.success-message {
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease-out;
    margin: 0px 0px 30px 0px;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */