/* =========================
   NAVBAR
========================= */

.navbar {
  background-color: black !important;
}

#mainNav {
  background: transparent;
  transition: 0.4s;
  padding: 20px 0;
}

#mainNav.navbar-shrink {
  background: #111 !important;
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.nav-link:hover {
  color: orange !important;
}

.active {
  color: orange !important;
}

/* =========================
   HEADER / LOGO
========================= */

.header {
  background-color: rgb(141, 140, 140);
}

.logo-navbar {
  height: 60px;
  width: auto;
  transition: 0.3s;
}

#mainNav.navbar-shrink .logo-navbar {
  height: 40px;
}

@media (max-width: 991px) {
  .logo-navbar {
    height: 36px;
  }

  #mainNav.navbar-shrink .logo-navbar {
    height: 30px;
  }
}

/* =========================
   HERO / CARROSSEL
========================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
}


/* Compatível com picture */
.carousel-item picture {
  display: block;
  width: 100%;
  height: 100%;
}


.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.55);
  z-index: 10;
}


.hero-overlay .container {
  max-width: 900px;
}

@keyframes zoomHero {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}


/* Tablet */
@media (max-width: 991px) {

  .hero,
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 700px;
  }

}


/* Celular */
@media (max-width: 576px) {

  .hero,
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 750px;
  }

}
/* =========================
   BOTÕES
========================= */

.btn-warning {
  background-color: rgb(240, 171, 42) !important;
}

.btn-warning:hover {
  background-color: rgb(255, 187, 59);
}

/* =========================
   CLIENTES / SWIPER
========================= */

.clientesSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  padding: 15px;
}

.clientesSwiper .swiper-slide img {
  max-width: 150px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: 0.3s;
  filter: grayscale(100%);
  opacity: 0.7;
}

.clientesSwiper .swiper-slide img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.08);
}

.clientesSwiper .swiper-pagination {
  position: relative;
  margin-top: 35px;
}

/* Desktop */
@media (min-width: 769px) {
  .clientesSwiper .swiper-slide img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: .3s;
  }

  .clientesSwiper .swiper-slide img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.08);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .clientesSwiper .swiper-slide img {
    filter: none !important;
    opacity: 1 !important;
  }
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 22px;
  transition: 0.3s;
}

.social-icon:hover {
  background: #ece9e9 !important;
  color: #f0ab2a;
  transform: translateY(-4px);
}

/* =========================
   MISSÃO BAR / TEXTO DINÂMICO
========================= */

.missao-bar {
  background: #f57d0d;
  color: #fff;
  padding: 12px 0;
}

.missao-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 500;
}

#digitando {
  min-width: 420px;
}

.cursor {
  animation: piscar 0.8s infinite;
}

.digitando::after {
  content: "|";
  animation: piscar 0.8s infinite;
  margin-left: 2px;
  color: #fff;
}

/* =========================
   PORTFÓLIO
========================= */

.portfolio-item .portfolio-link .portfolio-hover {
  background: rgba(255, 140, 0, 0.85) !important;
}

.portfolio-item .portfolio-link .portfolio-hover-content i {
  color: #d3d3d3 !important;
}

/* =========================
   TIMELINE
========================= */

.timeline-image {
  width: 120px;
  height: 120px;
  background: #ffc107;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto;
  position: relative;
}

.timeline-image i {
  font-size: 40px;
  color: #fff;
}

.timeline > li {
  margin-bottom: 80px;
}

/* Último círculo da timeline */
.timeline-final{
    width:170px !important;
    height:170px !important;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    padding:20px;
}

.timeline-final h4{
    margin:0 !important;
    font-size:1.15rem !important;
    line-height:1.25 !important;
    color:#fff !important;
    font-weight:700;
    word-break:break-word;
}

@media (max-width:768px){
    .timeline-final{
        width:140px !important;
        height:140px !important;
    }

    .timeline-final h4{
        font-size:.95rem !important;
    }
}

/* =========================
   CORES UTILITÁRIAS
========================= */

.orange {
  color: #eb660e !important;
}

.bg-orange {
  background-color: #72706d !important;
}

.bg-orange p,
.text-h2 {
  color: #fff !important;
}

/* =========================
   MODAL
========================= */

.modal-dialog {
  max-width: 900px;
  margin: 1.75rem auto;
}

.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.modal-body {
  padding: 2rem;
}

.modal-body img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.modal-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.modal-body ul {
  padding-left: 1.2rem;
}

.modal-body ul li {
  margin-bottom: 0.4rem;
}

.modal-body .btn {
  margin-top: 1.5rem;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

  .missao-bar .container {
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  #digitando {
    min-width: auto;
  }
}

/* =========================
   ANIMAÇÕES
========================= */

@keyframes piscar {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

