body {
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
}

.carousel-item {
    display: none;
    transition: opacity 0.5s ease;
    width: 100%;
    height: 100%;
}

.carousel-item.active {
    display: block;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .carousel-container {
        height: 400px;
    }
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.nav-link {
    @apply text-gray-700 font-medium relative transition-all duration-300;
}

.nav-link::after {
    content: "";
    @apply absolute left-0 -bottom-1 w-0 h-[2px] bg-primary transition-all duration-300;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    @apply text-primary;
}

.mobile-link {
    @apply text-gray-700 font-medium hover:text-primary transition;
}