/* Botão Flutuante de Contato - CSS */

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.contact-button {
    background-color: #5a9632;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(90, 150, 50, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

.contact-button:hover {
    background-color: #4a7d2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 150, 50, 0.4);
}

.contact-button .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Menu Expandido */
.contact-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.contact-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-header {
    background-color: #5a9632;
    color: white;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-options {
    padding: 10px 0;
}

.menu-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.menu-option:hover {
    background-color: #f8f9fa;
}

.menu-option.disabled {
    color: #999 !important;
    cursor: not-allowed;
}

.menu-option.disabled:hover {
    background-color: transparent;
}

.option-icon {
    width: 24px;
    height: 24px;
    fill: #5a9632;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-title {
    font-weight: 600;
    margin-bottom: 2px;
    color: #333 !important;
    font-size: 17px !important; /* Tamanho da fonte fixo */
}

.option-subtitle {
    font-size: 13px !important; /* Tamanho da fonte fixo */
    color: #333 !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-menu {
        right: 10px;
        min-width: 260px;
    }
    
    .floating-contact {
        right: 10px;
        bottom: 10px;
    }
}

