/* FullBanner Module v2.0 - CSS */

/* Fonte Google */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

/* ===== FULLBANNER WRAPPER ===== */
.fullbanner-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: block;
}

.fullbanner-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.fullbanner-desktop,
.fullbanner-mobile {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
}

.fullbanner-slide {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.fullbanner-slide a {
  display: block;
  text-decoration: none;
}

/* ===== SLICK CUSTOMIZATION ===== */
.fullbanner-wrapper .slick-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 10;
  display: flex !important;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fullbanner-wrapper .slick-dots li {
  margin: 0 4px;
  width: auto;
  height: auto;
}

.fullbanner-wrapper .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 0;
  outline: none;
}

.fullbanner-wrapper .slick-dots li button:before {
  display: none;
}

.fullbanner-wrapper .slick-dots li.slick-active button {
  width: 24px;
  height: 10px;
  border-radius: 10px;
  background: #000;
  border: 1px solid #7d7d7d;
  transform: none;
}

.fullbanner-wrapper .slick-dots li button:hover {
  border-color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.2);
}

/* Setas do slider */
.fullbanner-wrapper .slick-prev,
.fullbanner-wrapper .slick-next {
  width: 50px;
  height: 50px;
  z-index: 10;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.fullbanner-wrapper .slick-prev:hover,
.fullbanner-wrapper .slick-next:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 1);
}

.fullbanner-wrapper .slick-prev {
  left: 20px;
}

.fullbanner-wrapper .slick-next {
  right: 20px;
}

.fullbanner-wrapper .slick-prev:before,
.fullbanner-wrapper .slick-next:before {
  font-size: 20px;
  color: white;
}

/* ===== BANNER DE ROLAGEM ===== */
.fullbanner-scroll {
  width: 100%;
  height: 60px;
  overflow: hidden;
  white-space: nowrap;
  line-height: 60px;
  padding: 0;
  font-family: 'Nunito', Arial, sans-serif;
  position: relative;
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  margin: 0;
  border: none;
  display: block;
  margin-top: -30px;
}

.fullbanner-scroll-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.fullbanner-scroll-animated {
  display: inline-block;
  white-space: nowrap;
  /* A animação será aplicada via style inline */
}

.fullbanner-scroll-text {
  display: inline-block;
  margin-right: 5px;
  font-size: 2rem;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1;
}

.fullbanner-scroll-separator {
  display: inline-block;
  margin: 0 30px;
  color: #41393d;
  font-size: 1.5rem;
  vertical-align: middle;
}

.fullbanner-scroll-separator.fa {
  font-size: 1.7rem;
}

.fullbanner-scroll-separator img {
  max-width: 24px;
  height: auto;
  vertical-align: middle;
  display: inline-block;
  white-space: nowrap;
}

.fullbanner-scroll-text b,
.fullbanner-scroll-text strong {
  font-weight: 700;
  color: #101010;
}

/* Animação da rolagem */
@keyframes marqueeScroll {
  0% { 
    transform: translateX(100%); 
  }
  100% { 
    transform: translateX(-100%); 
  }
}

/* Animação da rolagem imediata (texto já visível) */
@keyframes marqueeScrollImmediate {
  0% { 
    transform: translateX(0%); 
  }
  100% { 
    transform: translateX(-100%); 
  }
}

/* Pausar animação no hover */
.fullbanner-scroll:hover .fullbanner-scroll-animated {
  animation-play-state: paused;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 767px) {
  .fullbanner-desktop {
    display: none !important;
  }
  
  .fullbanner-mobile {
    display: block !important;
  }
  
  .fullbanner-wrapper .slick-dots {
    bottom: 10px;
  }
  
  .fullbanner-wrapper .slick-dots li button {
    width: 8px;
    height: 8px;
  }
  
  .fullbanner-wrapper .slick-dots li.slick-active button {
    width: 20px;
    height: 8px;
    border-radius: 8px;
  }
  
  .fullbanner-wrapper .slick-prev,
  .fullbanner-wrapper .slick-next {
    width: 40px;
    height: 40px;
  }
  
  .fullbanner-wrapper .slick-prev {
    left: 10px;
  }
  
  .fullbanner-wrapper .slick-next {
    right: 10px;
  }
  
  .fullbanner-scroll {
    padding: 0px 0;
  }
  
  .fullbanner-scroll-text {
    font-size: 1.5rem;
    margin-right: 5px;
  }
}

@media (min-width: 768px) {
  .fullbanner-mobile {
    display: none !important;
  }
  
  .fullbanner-desktop {
    display: block !important;
  }
}

/* ===== LOADING STATE ===== */
.fullbanner-wrapper.loading {
  min-height: 200px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullbanner-wrapper.loading:before {
  content: '';
  width: 40px;
  height: 40px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== ACCESSIBILITY ===== */
.fullbanner-wrapper button:focus,
.fullbanner-scroll:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}

/* Reduzir movimento para usuários que preferem menos animação */
@media (prefers-reduced-motion: reduce) {
  .fullbanner-scroll-animated {
    animation-duration: 60s;
  }
  
  .fullbanner-wrapper .slick-dots li button,
  .fullbanner-wrapper .slick-prev,
  .fullbanner-wrapper .slick-next {
    transition: none;
  }
}
