/* Custom Styles for Fit Piscinas */

/* Fonts */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Lazy Load Images */
img.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy-load.loaded {
    opacity: 1;
}

/* Line Clamp Utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom Swiper Styles */
.swiper-pagination-bullet {
    background: #3b82f6;
}

.swiper-pagination-bullet-active {
    background: #2563eb;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* WhatsApp Button Pulse */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.whatsapp-pulse {
    animation: pulse 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Print Styles */
@media print {
    header, footer, .no-print {
        display: none;
    }
}

/* Classes adicionais necessárias */
.flex-shrink-0 {
    flex-shrink: 0;
}

.ml-7 {
    margin-left: 1.75rem;
}

