.fixed-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

/* FONTE PRNCIPAL */
body {
    font-family: 'Inter', sans-serif !important;
}

/* CARROSEL */

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-item {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
}
.carousel img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.carousel-button {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.carousel-button:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* WHASTAPP */

.whatsapp-button {
    position: fixed;
    bottom: 20%; /* Posicionado a 25% da parte inferior */
    right: 32px;
    z-index: 49;
}

.whatsapp-button .ping {
    position: absolute;
    inset: 0;
    background-color: #22c55e;
    border-radius: 9999px;
    opacity: 0.25;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.whatsapp-button .btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #22c55e;
    color: white;
    border: none;
    border-radius: 9999px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), /* Sombra principal */
               0 0 5px rgba(0, 0, 0, 0.1), /* Sombra suave interna */
               0 2px 10px -2px rgba(34, 197, 94, 0.6); /* Sombra verde suave */
    transition: all 0.3s;
}

.whatsapp-button .btn:hover {
    background-color: #16a34a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), /* Sombra principal aumentada no hover */
               0 0 10px rgba(0, 0, 0, 0.15), /* Sombra interna aumentada */
               0 2px 15px -2px rgba(34, 197, 94, 0.7); /* Sombra verde aumentada */
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2)); /* Sombra suave no ícone */
}

.whatsapp-button .btn:hover svg {
    transform: rotate(12deg);
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}