/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.lower-image {
    margin-top: 130px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    animation: shake 3s infinite ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 1;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}


@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}
.menu-item a[href="orcamento.html"] {
    background-color: #b52b16;
    color: white !important;
    padding: 10px 20px !important; /* Reduzi o padding vertical */
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

.menu-item a[href="orcamento.html"]:hover {
    background-color: #8e1f0f;
}


/* Remove os marcadores apenas das seções "Contato" e "Horário de Funcionamento" */
.widget_links:nth-child(2) ul,
.widget_links:nth-child(3) ul {
    list-style: none !important;
    padding-left: 0 !important;
}
.widget_links:nth-child(2) ul li::before,
.widget_links:nth-child(3) ul li::before {
    content: none !important;
}


.d-flex .btn {
    width: 100% !important;
    max-width: 250px; /* Ajuste conforme necessário */
    text-align: center;
}


