.elementor-8 .elementor-element.elementor-element-722d7eaa{--display:flex;--min-height:100vh;}@media(max-width:767px){.elementor-8 .elementor-element.elementor-element-722d7eaa{--min-height:100vh;}}@media(min-width:768px){.elementor-8 .elementor-element.elementor-element-722d7eaa{--content-width:100vw;}}/* Start custom CSS for html, class: .elementor-element-8a2e256 *//* Estilos CSS para o Formulário Referência Solar */

.form-solar-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.form-solar-container {
    /* Removido estilos de body/html para evitar conflito com o Elementor */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 0; /* Removido padding externo conforme solicitado */
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto; /* Centraliza o formulário */
}

.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;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto; /* Centraliza o formulário */
    position: relative; /* Necessário para posicionar o botão Voltar */
}

/* 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 */
.back-button {
    /* Posicionamento absoluto dentro do container */
    position: absolute;
    top: 100px; /* Ajuste para ficar entre o logo e o formulário */
    left: 0; /* Alinhado à esquerda do container */
    z-index: 10; /* Garante que fique acima de outros elementos */

    /* Estilo */
    color: #E07856;
    font-size: 36px; /* Aumentado para ser mais visível */
    cursor: pointer;
    border: none;
    background: none;
    padding: 0; /* Remove o padding que estava causando o background */
    margin: -10px; /* Usa margem negativa para aumentar a área de clique sem background */
    transition: color 0.2s; /* Transição apenas na cor */
    font-weight: 700;
    line-height: 1;
}

.back-button span {
    display: block; /* Garante que a seta seja o único conteúdo visível */
}

.back-button:hover {
    color: #D96B42; /* Laranja mais escuro no hover */
    background: transparent !important; /* Garante que o background seja transparente */
    box-shadow: none !important; /* Remove qualquer sombra de hover */
    transform: none; /* Remove a translação */
}

.back-button.hidden {
    display: none;
}

/* ETAPA 1: Cadastro */
.step-1-content {
    background: linear-gradient(135deg, #E07856 0%, #D96B42 100%);
    border-radius: 30px;
    padding: 40px 30px;
    color: white;
    margin: -40px -30px;
    padding-bottom: 50px;
    /* Removido padding-top extra, pois o botão está fora do form-wrapper */
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.form-group input {
    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;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input: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);
}

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: white;
    color: #E07856;
    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(224, 120, 86, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ETAPA 2: Tipo de Telhado */
.step-2-content {
    background: linear-gradient(135deg, #E07856 0%, #D96B42 100%);
    border-radius: 30px;
    padding: 40px 30px;
    color: white;
    margin: -40px -30px;
    padding-bottom: 50px;
    /* Removido padding-top extra, pois o botão está fora do form-wrapper */
}

.step-2-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white; /* Alterado para branco para combinar com o fundo */
}

.custom-input-wrapper {
    background: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 5px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 16px;
    color: #333;
}

.custom-input-wrapper input::placeholder {
    color: #999;
}

.custom-input-wrapper input:focus {
    outline: none;
}

.btn-custom-submit {
    background: none;
    border: none;
    color: #E07856;
    font-size: 24px;
    cursor: pointer;
    padding: 0 15px;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-custom-submit:hover {
    background: transparent !important; /* Garante que o background seja transparente */
    box-shadow: none !important; /* Remove qualquer sombra de hover */
    transform: scale(1.1);
}

.roof-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.roof-card {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s;
    background: white;
}

.roof-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.roof-label {
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: #333;
    background: white;
    font-size: 14px;
}

.roof-card input[type="radio"] {
    display: none;
}

.roof-card input[type="radio"]:checked + .roof-content {
    border-color: #E07856;
}

.roof-card.selected {
    border-color: #E07856;
    box-shadow: 0 0 0 3px rgba(224, 120, 86, 0.3);
}

.roof-content {
    border: 3px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.roof-card:hover .roof-content {
    border-color: #E07856;
}

/* ETAPA 3: Instagram com Botão WhatsApp */
.step-3-content {
    background: linear-gradient(135deg, #E07856 0%, #D96B42 100%);
    border-radius: 30px;
    padding: 40px 30px;
    color: white;
    margin: -40px -30px;
    padding-bottom: 50px;
    text-align: center;
}

.step-3-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.instagram-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.instagram-card img {
    /* Garante que a imagem do logo do Instagram seja estilizada corretamente */
    width: 80px; 
    height: 80px; 
    margin: 0 auto 20px; 
    display: block;
}

.instagram-username {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.verify-badge {
    width: 18px;
    height: 18px;
    background: #D96B42; /* Alterado para tom de laranja */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.instagram-description {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Estilo para o novo botão de WhatsApp final (dentro do card) */
.btn-whatsapp-final {
    width: 100%;
    padding: 15px 30px;
    background: #25D366; /* Cor verde do WhatsApp */
    color: white;
    border: 2px solid #25D366;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px; /* Espaçamento do texto/descrição acima */
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp-final img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    /* Resetando estilos da imagem do Instagram para o ícone do WhatsApp */
    margin: 0 10px 0 0; 
    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);
}

.btn-whatsapp-final:active {
    transform: translateY(0);
}

/* Estilo para o texto de aviso em laranja (disclaimer-text-orange) */
.disclaimer-text-orange {
    font-size: 16px;
    font-weight: 500;
    color: #E07856; /* Cor laranja principal */
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0; /* Linha sutil para separar do botão */
    line-height: 1.4;
}

/* Mensagens de erro */
.error-message {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group.error input {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

/* Responsividade */
@media (max-width: 600px) {
    .form-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .step-1-content,
    .step-2-content,
    .step-3-content {
        margin: -30px -20px;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .back-button {
        top: 80px; /* Ajuste para mobile */
        left: 10px;
    }

    .step-title,
    .step-3-title {
        font-size: 22px;
    }

    .roof-options {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .roof-card img {
        height: 120px;
    }

    .logo-header {
        margin-bottom: 20px;
    }

    .logo-header img {
        height: 50px;
    }
}

/* Loading state */
.btn-submit.loading,
.btn-whatsapp-final.loading { 
    opacity: 0.7;
    pointer-events: none;
}

.btn-submit.loading::after,
.btn-whatsapp-final.loading::after { 
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success message */
.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 */
/* Start custom CSS *//* SOLUÇÃO DEFINITIVA PARA SOBRESCRITA DE HOVER DO ELEMENTOR */
.form-solar-container .back-button:hover,
.form-solar-container .back-button:focus,
.form-solar-container .back-button:active {
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}/* End custom CSS */