:root {
    --primary-color: #002347; 
    --accent-color: #c5a059;  
    --text-dark: #1a1a1a;
    --bg-light: #f4f7f6;
}

body { font-family: 'Inter', sans-serif; color: var(--text-dark); scroll-behavior: smooth; overflow-x: hidden; }

.navbar { 
    background-color: rgba(255, 255, 255, 0.98); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    padding: 5px 0; 
}
.navbar-brand img { height: 70px; width: auto; transition: 0.3s; }
.nav-link { line-height: 70px; padding-top: 0 !important; padding-bottom: 0 !important; font-weight: 600; color: var(--primary-color) !important; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px;}

.hero-video-container {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video-bg {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0, 35, 71, 0.7), rgba(0, 0, 0, 0.7));
    z-index: -1;
}
.hero-main-logo { max-width: 650px; margin-bottom: 20px; animation: fadeInDown 1.2s ease-out; }
.hero-main-logo img { width: 100%; filter: drop-shadow(0px 10px 25px rgba(0,0,0,0.6)); }

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.sobre-img-container { position: relative; padding: 20px; }
.sobre-img-container img { width: 100%; border-radius: 0; box-shadow: 20px 20px 0px var(--accent-color); }
.abstract-box {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    max-width: 250px;
}

.section-padding { padding: 100px 0; }
.section-title { font-weight: 800; color: var(--primary-color); margin-bottom: 30px; text-transform: uppercase; position: relative; }
.section-title::after { content: ""; width: 60px; height: 4px; background: var(--accent-color); position: absolute; bottom: -10px; left: 0; }

.text-justify { text-align: justify; line-height: 1.8; color: #555; }
.highlight-text { color: var(--accent-color); font-weight: 700; }

.gallery-filter-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 8px 25px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    margin: 5px;
}
.gallery-filter-btn.active, .gallery-filter-btn:hover { background: var(--primary-color); color: white; }
.gallery-item { position: relative; overflow: hidden; height: 250px; cursor: pointer; }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 35, 71, 0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 2rem; }

.feiras-slider { padding: 20px 0; }
.card-feira { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; margin: 0 15px; }
.card-feira:hover { transform: translateY(-10px); }

.btn-detalhes { color: var(--accent-color); font-weight: 700; font-size: 0.9rem; text-decoration: underline; cursor: pointer; border: none; background: none; padding: 0; }

.slick-prev:before, .slick-next:before { color: var(--accent-color); font-size: 30px; opacity: 1; }
.slick-prev { left: -40px; }
.slick-next { right: -40px; }

.btn-premium { background-color: var(--accent-color); color: #fff; padding: 18px 45px; border-radius: 0; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; transition: 0.4s; border: none; text-decoration: none; display: inline-block; }
.btn-premium:hover { background-color: #b38f4d; color: #fff; transform: translateY(-3px); }

.contact-form .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white; border-radius: 0; padding: 12px;
}
.contact-form .form-control:focus { background: rgba(255,255,255,0.1); border-color: var(--accent-color); box-shadow: none; color: white; }
.contact-form ::placeholder { color: #aaa; }

.modal-content { border-radius: 0; border: none; }
.modal-header { background: var(--primary-color); color: white; border-radius: 0; }
.modal-title { font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.badge-status { position: absolute; top: 10px; left: 10px; padding: 5px 12px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; z-index: 10; border-radius: 2px; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.badge-restrito { position: absolute; top: 10px; right: 10px; background: #dc3545; color: white; padding: 5px 10px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; z-index: 10; }

@media (max-width: 768px) {
    .hero-main-logo { max-width: 300px; }
    .sobre-img-container { margin-bottom: 50px; }
    .slick-prev, .slick-next { display: none !important; } 
}