html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #F5F5DC;
}

h1,
h2,
h3,
h4 {
    font-family: 'Nunito', sans-serif;
    color: #556B2F;
}

.btn-primary {
    background-color: #CC5500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b34a00;
    transform: translateY(-2px);
}

.bg-accent {
    background-color: #87CEEB;
}

.text-accent {
    color: #87CEEB;
}

.testimonial-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #CC5500;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.floating-whatsapp {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}