/* Custom Styles - Barbosa Transporte Premium */

:root {
    --brand-blue: #031B4E;
    --brand-orange: #FF6A00;
    --brand-dark: #070B19;
    --brand-gray: #1E293B;
}

/* Smooth Scroll configurado no Lenis */
html.lenis {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-aos] {
  transition-property: opacity, transform;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--brand-dark);
}
::-webkit-scrollbar-thumb {
    background: #111A35;
    border: 2px solid var(--brand-dark);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-orange);
}

/* Glassmorphism Classes */
.glass-nav {
    background: rgba(7, 11, 25, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 106, 0, 0.5);
    box-shadow:
        0 20px 60px rgba(255, 106, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

/* Efeito de Destaque Cinematográfico no Swiper da Frota */
.frota-swiper .swiper-slide {
    opacity: 1 !important;
}
.frota-swiper .frota-card-inner {
    opacity: 0.35;
    transform: scale(0.85);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.frota-swiper .swiper-slide-active .frota-card-inner {
    opacity: 1;
    transform: scale(1.02);
    border-color: rgba(255, 106, 0, 0.45);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.65),
        0 0 50px rgba(255, 106, 0, 0.1);
}

/* Glow Laranja e Azul */
.glow-orange {
    position: relative;
}
.glow-orange::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(10px);
}

.glow-orange-border {
    transition: all 0.3s ease;
}
.glow-orange-border:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.4);
}

.glow-text-orange {
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
}

/* Swiper custom overrides */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    background: var(--brand-orange) !important;
    width: 24px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--brand-orange) !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px !important;
    font-weight: bold;
}

/* Selection */
::selection {
    background: var(--brand-orange);
    color: white;
}

/* Typography styles */
.font-condensed {
    font-family: 'Barlow Condensed', 'Outfit', sans-serif;
    letter-spacing: 0.05em;
}
