/* Custom scrollbar for product sliders */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(8deg); }
    80% { transform: rotate(-8deg); }
}

.whatsapp-shake {
    animation: shake 0.6s ease-in-out;
}

        /* Custom scrollbar for product sliders */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Style contatos */

/* A simple font stack can be defined here if needed, but Tailwind's default is fine. */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #F8FAFC; /* Equivalent to Tailwind's bg-slate-50 */
}
.contact-input {
    border: 1px solid #E5E7EB;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    width: 100%;
    font-size: 1rem;
}
.contact-input::placeholder {
    color: #9CA3AF;
}
.contact-textarea {
    border: 1px solid #E5E7EB;
    border-radius: 1.5rem;
    padding: 1rem 1.5rem;
    width: 100%;
    font-size: 1rem;
    min-height: 150px;
}
.contact-textarea::placeholder {
    color: #9CA3AF;
}
.social-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}