/* ==========================================================================
   ESTILO: BOTÃO FLUTUANTE E POP-UP DE CONTATO (COM AJUSTES FINAIS)
   ========================================================================== */

/* --- O Botão Fixo --- */
.floating-cta-button {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Cor verde do WhatsApp */
    color: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-cta-button:hover {
    transform: scale(1.1);
    background-color: #128C7E; /* Cor mais escura no hover */
}

/* 
  ==========================================================================
  AQUI ESTÁ O AJUSTE QUE VOCÊ PEDIU:
  Esta regra força a imagem (img) dentro do botão a ter 32x32 pixels.
  ========================================================================== 
*/
.floating-cta-button img {
    width: 32px;
    height: 32px;
}

/* --- O Pop-up (Overlay e Conteúdo) --- CÓDIGO ORIGINAL MANTIDO --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* ... (o resto do seu CSS continua aqui, sem alterações) ... */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    position: relative;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

.popup-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 30px;
}

/* --- Estilo do Formulário --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #D98240;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #b86e36;
}
