body { font-family: 'Inter', sans-serif; }
.gradient-bg { background: linear-gradient(135deg, #A73D46 0%, #8A2F37 100%); }
.text-primary { color: #A73D46; }
.bg-primary { background-color: #A73D46; }
.bg-secondary { background-color: #8A2F37; }
.text-accent { color: #C85A60; }
.bg-accent { background-color: #C85A60; }
.hero-bg {
    background: linear-gradient(135deg, rgba(167, 61, 70, 0.9) 0%, rgba(138, 47, 55, 0.9) 100%),
                url('../images/background-fapetrus.png') center/cover;
}
.card-hover:hover { transform: translateY(-8px); transition: all 0.3s ease; }
.floating-btn { position: fixed; z-index: 1000; }
.modal { transition: all 0.3s ease; }

.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

.high-contrast a {
    color: #ffff00 !important;
}

.high-contrast button {
    background-color: #000 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
}
.course-card .p-6 a,
.course-card .p-6 button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 100%;
}

#team-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

#team-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

#team-grid > div {
    scroll-snap-align: start;
    flex-shrink: 0;
}

.team-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #A73D46;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.team-carousel-btn:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

.team-carousel-btn.prev { left: 0; }
.team-carousel-btn.next { right: 0; }

.team-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.team-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-carousel-dot.active {
    background-color: white;
    transform: scale(1.2);
}