/* Main Brands Styles */
* {
    font-family: 'Outfit', sans-serif;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes float-reverse {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-3deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.15;
        transform: scale(1);
    }

    50% {
        opacity: 0.25;
        transform: scale(1.05);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.animate-float-reverse {
    animation: float-reverse 7s ease-in-out infinite;
}

.animate-float-slow {
    animation: float 10s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

.animate-slide-up {
    animation: slide-up 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.image-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px -10px rgba(29, 75, 167, 0.15),
        0 10px 20px -5px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.image-card:hover {
    box-shadow: 0 30px 60px -10px rgba(29, 75, 167, 0.25),
        0 15px 30px -5px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.curved-container {
    position: relative;
}

.curved-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 200px;
    background: linear-gradient(180deg, rgba(29, 75, 167, 0.03) 0%, rgba(29, 75, 167, 0.08) 50%, rgba(29, 75, 167, 0.03) 100%);
    border-radius: 50%;
    z-index: -1;
}

.btn-primary {
    background: linear-gradient(135deg, #1d4ba7 0%, #153a82 100%);
    box-shadow: 0 10px 30px -5px rgba(29, 75, 167, 0.4),
        0 5px 15px -3px rgba(29, 75, 167, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2a5bc4 0%, #1d4ba7 100%);
    box-shadow: 0 15px 40px -5px rgba(29, 75, 167, 0.5),
        0 8px 20px -3px rgba(29, 75, 167, 0.4);
    transform: translateY(-3px);
    color: #ffffff !important;
}

.btn-whatsapp {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #25D366;
    box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-whatsapp:hover {
    background: #25D366;
    color: white;
    box-shadow: 0 15px 40px -5px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.btn-whatsapp:hover svg {
    fill: white;
}

.brand-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 12px rgba(29, 75, 167, 0.05);
    transition: all 0.3s ease;
}

.brand-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(29, 75, 167, 0.15);
}

/* Scrollbar Hide CSS - Complete Elimination */
.scrollbar-hide::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.scrollbar-hide {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
    overflow: -moz-scrollbars-none;
}

#brandCarousel::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

#brandCarousel {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

/* Carousel Fade Overlays */
.carousel-fade-wrapper {
    position: relative;
    width: 100%;
}

.carousel-fade-wrapper::before,
.carousel-fade-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    pointer-events: none;
    z-index: 10;
}

.carousel-fade-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #F8FAFC 0%, #F8FAFC 30%, transparent 100%);
}

.carousel-fade-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #F8FAFC 0%, #F8FAFC 30%, transparent 100%);
}

@media (max-width: 768px) {

    .carousel-fade-wrapper::before,
    .carousel-fade-wrapper::after {
        width: 60px;
    }
}

/* Brand Showcase Carousel Styles */
.brand-showcase-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.brand-showcase-card:hover {
    transform: translateY(-8px);
}

#brandCarousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.brand-showcase-card {
    scroll-snap-align: center;
}

/* Ensure images in cards are crisp */
.brand-showcase-card img {
    image-rendering: -webkit-optimize-contrast;
}