/**
 * União Gás - Estilos para o formulário de WhatsApp
 */

/* Modal principal */
.uniaogas_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.uniaogas_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

.uniaogas_modal_content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 51;
}

.uniaogas_modal_close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 52;
}

.uniaogas_modal_close:hover {
    background: #e1e1e1;
    transform: rotate(90deg);
}

.uniaogas_modal_close svg {
    width: 15px;
    height: 15px;
    fill: #666;
}

/* Formulário WhatsApp */
.uniaogas_whatsapp_container {
    padding: 30px;
}

.uniaogas_form_title {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.uniaogas_form_title:after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #25D366;
    margin: 10px auto 0;
    border-radius: 2px;
}

.uniaogas_form_group {
    margin-bottom: 20px;
}

.uniaogas_form_label {
    display: block;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.uniaogas_form_input,
.uniaogas_form_textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background: #f8f8f8;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.uniaogas_form_input:focus,
.uniaogas_form_textarea:focus {
    border-color: #25D366;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
    outline: none;
}

.uniaogas_form_textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.uniaogas_form_input::placeholder,
.uniaogas_form_textarea::placeholder {
    color: #999;
}

.uniaogas_submit_btn {
    width: 100%;
    padding: 14px 24px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.uniaogas_submit_btn:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.uniaogas_submit_btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mensagem de sucesso */
.uniaogas_success_message {
    text-align: center;
    padding: 25px;
}

.uniaogas_countdown_wrapper {
    margin-bottom: 15px;
}

.uniaogas_countdown {
    display: inline-block;
    color: #333333;
    font-size: 48px;
    font-weight: 700;
    margin: 10px 5px;
}

/* Classes utilitárias */
.hidden {
    display: none !important;
}

/* Responsividade */
@media (max-width: 600px) {
    .uniaogas_whatsapp_container {
        padding: 20px;
    }
    
    .uniaogas_form_title {
        font-size: 20px;
    }
    
    .uniaogas_submit_btn {
        padding: 12px 20px;
    }
}
