/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 04 2026 | 21:33:55 */
/* Estilos do Swiper Hero */
.hero-swiper {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #000;
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-swiper video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content > div {
    max-width: 600px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
}

.swiper-slide-active .hero-content > div {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: clamp(32px, 6vw, 64px);
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.1;
    font-family: sans-serif;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    line-height: 1.6;
    font-family: sans-serif;
}

.hero-content a {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
    font-family: sans-serif;
	border-radius: 50px;
}

.hero-content a:hover {
    border: 2px solid #f58634;
	background: #f58634;
    color: #fff;
}

.swiper-button-next, .swiper-button-prev { color: #fff !important; z-index: 20; }
.swiper-pagination { z-index: 20 !important; bottom: 30px !important; }
.swiper-pagination-bullet { background: #fff !important; width: 12px; height: 12px; opacity: 0.4; }
.swiper-pagination-bullet-active { background: #f58634!important; opacity: 1; transform: scale(1.2); }

@media (max-width: 768px) {
    .hero-content { text-align: center; padding: 0 20px; }
    .hero-content > div { margin: 0 auto; }
    .swiper-button-next, .swiper-button-prev { display: none; }
}