*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
   overflow-x: hidden !important;
   width: 100% !important;
}

body {
   min-height: 200vh;
  font-family: 'FranklinGothicMedium', sans-serif;
   overflow-x: hidden;
}
@font-face {
  font-family: 'FranklinGothicMedium';
  src: url('../fonts/franklin/franklin.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


nav {
    width: 100%;
    top: 0;
    left: 0;
    height: 80px; 
    padding: 0;
    background-color: transparent;
    border-style: hidden !important;
    box-shadow: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    z-index: 998;
}

header.sticky { 
    background-color: #212121;
}

header.sticky .logo,
header.sticky ul li a {
    color: #FFF;
    align-items: center;
}

header .logo {
    position: relative;
    font-weight: 700;
    color: #FFF;
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.6s;
}

#flu {
    visibility: hidden;
}
.flua {
    visibility: visible !important;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li a {
    margin: 0 15px;
    text-decoration: none;
    color: #FFF;
    letter-spacing: 3px;
    font-weight: 500;
    font-size: 16px;
    transition: 0.6s;
}


.titulo-hr {
    border-style: solid;
    color: #8c1010;
    border: 2px solid;
    width: 14em;
}
.linha {
    border-style: solid;
    color: #8c1010;
    border: 3px solid;
    width: 100%;
    align-items: center;
}
.align {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sli {
    height: 100vh !important;
}
.sle {
    height: 600px !important;
}
.titulo {
    font-weight: bold; 
    font-family: 'FranklinGothicMedium', sans-serif;
    font-size: 1.8em;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    z-index: 999;
}

#preloader .inner {
    position: absolute;
    align-items: center;
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card {
    border-radius: 10px;
    background-color: transparent !important;
}
.card .card-image img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.parallax-container {
    height: 300px;
}

img {
    object-fit: cover;
    max-width: 100%;
}

hr {
    border-style: dotted;
    background-color: white;
}

.input-field input[type=text]:focus + label {
    color: #000 !important;
}
.input-field input[type=text]:focus {
    border-bottom: 1px solid #000 !important;
    box-shadow: 0 1px 0 0 #000 !important;
}

.waves {
    background-color: #ff0000;
}

.progress {
    background-color: transparent;
}
.progress .indeterminate {
    background-color: #8c1010 !important;
}

@media (min-width: 768px) {
    .brand-logo {
        margin-left: 0.5em;
    }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.image-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomInOut 20s infinite ease-in-out;
}



/* SLIDER ANIMADO AJUSTADO */
.slider-animado .slides {
    overflow-x: hidden;
    max-width: 100vw;
}

.slider-animado .slides li {
    overflow: hidden;
    max-width: 100vw;
}

/* IMAGEM COM ANIMAÇÃO */
.slider-animado .slides li img.lazy {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    max-width: 100vw;
    contain: layout;
    will-change: transform;
    animation: zoomAndSlide 20s ease-in-out infinite;
}

@keyframes zoomAndSlide {
    0% {
        transform: scale(1) translateX(0);
    }
    50% {
        transform: scale(1.05) translateX(-10px);
    }
    100% {
        transform: scale(1) translateX(0);
    }
}

@keyframes zoomOutAndSlide {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(0.95) translateX(10px);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    
    /* Tamanho base em 45% das dimensões originais (954x572) */
    width: 429.3px; /* 954 * 0.45 */
    height: 257.4px; /* 572 * 0.45 */
    
    /* Versão responsiva proporcional */
    width: 25vw; /* Ajuste inicial para desktop */
    height: calc(25vw * 0.6); /* Mantém proporção 954:572 */
    
    /* Limites baseados no tamanho reduzido (45%) */
    max-width: 429.3px;
    max-height: 257.4px;
    min-width: 150px;
    
    object-fit: contain;
    will-change: transform;
    animation: zoomOutAndSlide 20s ease-in-out infinite;
}

/* Media Queries para ajuste responsivo */
@media (max-width: 1200px) {
    .logo {
        width: 30vw;
        height: calc(30vw * 0.6);
    }
}

@media (max-width: 768px) {
    .logo {
        width: 45vw;
        height: calc(45vw * 0.6);
    }
}

@media (max-width: 480px) {
    .logo {
        width: 65vw;
        height: calc(65vw * 0.6);
        min-width: 120px;
    }
}

/* Ajuste para telas muito altas (modo retrato) */
@media (min-height: 1000px) and (max-width: 768px) {
    .logo {
        width: 25vh;
        height: calc(25vh * 0.6);
    }
}


.autoshow {
    opacity: 0;
    transform: translateY(200px) scale(0.3);
    transition: all 0.6s ease-out;
}

.autoshow.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
div.slider.slider-animado.sliq , ul.slides.sliq  {
    height: 100vh !important;
    margin: 0;
    padding: 0;
}

.sliq li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item {
width: 40vh;
}

canvas {
  width: 100% !important;
  height: 200px !important;
}
/* Centralização FORÇADA do "VER MAIS" */
.collapsible-accordion .collapsible-header {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.collapsible-accordion .collapsible-header a.btn-flat {
    margin: 0 auto !important;
    padding: 0 1rem !important;
}
