body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.hero-slide {
    background-image: url('../upload/1.webp');
    background-size: cover;
    background-position: center;
}

.hero-slide-2 {
    background-image: url('../upload/2.webp');
    background-size: cover;
    background-position: center;
}

.pulse-animation {
    animation: pulse 6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 99, 59, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(247, 99, 59, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 99, 59, 0);
    }
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Testimonial Carousel Styles */
.testimonial-container {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex-shrink: 0;
    padding: 0 1rem;
    box-sizing: border-box;
}

.testimonial-prev,
.testimonial-next {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    opacity: 1;
    z-index: 9999;
}

.testimonial-dot {
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: #0B4E84;
}

.bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: #FF7F50!important;
}

        body {
            -webkit-user-select: none;  /* Chrome, Safari, Opera */
            -moz-user-select: none;     /* Firefox */
            -ms-user-select: none;      /* Internet Explorer/Edge */
            user-select: none;          /* Standard syntax */
        }


    .slide {
        transition: opacity 0.7s ease-in-out;
    }
    .slide.active {
        opacity: 1;
        z-index: 1;
    }
    .slide:not(.active) {
        opacity: 0;
        z-index: 0;
    }
    .slider-dot.active {
        width: 1rem;
        border-radius: 0.5rem;
    }
    /* Estilo para touch swipe */
    .slider-container {
        touch-action: pan-y;
    }


    /* Estilos para os alertas */
.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(120%);
  transition: transform 0.3s ease-in-out;
}

.alert.show {
  transform: translateX(0);
}

.alert-success {
  background-color: #10B981;
  color: white;
}

.alert-error {
  background-color: #EF4444;
  color: white;
}

.alert-warning {
  background-color: #F59E0B;
  color: white;
}

.alert-info {
  background-color: #3B82F6;
  color: white;
}

.alert-content {
  flex: 1;
}

.alert-close {
  cursor: pointer;
  padding: 0.25rem;
  margin-left: 0.5rem;
}

.alert-icon {
  margin-right: 0.75rem;
}