/* ==================================
   ==== MENU ITENS ====
================================== */
.menu-items {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-link {
  position: relative;
  color: var(--cor-laranja);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
  color: var(--cor-rosa);
}

.menu-link::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--cor-rosa);
  transform: translateY(-6px);
  opacity: 0;
  transition: 0.3s ease;
}

.menu-link:hover::after,
.menu-link.active::after {
  opacity: 1;
}


/* ==================================
   ==== WHATSAPP FLOAT ====
================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}


/* ==================================
   ==== BACKGROUNDS ====
================================== */
.section-bg-gradient {
  background: linear-gradient(90deg, var(--cor-laranja), var(--cor-rosa));
}

.section-bg-gray {
  background-color: #EEF1F6;
}


/* ==================================
   ==== BOTÕES ====
================================== */
.btn-primary {
  background: linear-gradient(90deg, var(--cor-laranja), var(--cor-rosa));
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn-light {
  background: #fff;
  color: var(--cor-rosa);
  border: 1px solid #ccc;
}

.btn-gradiente {
  background: linear-gradient(to right, var(--cor-laranja), var(--cor-rosa));
  color: #fff;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-gradiente:hover {
  opacity: 0.85;
}

.btn-white {
  background: #ffffff;
  color: var(--cor-rosa);
  border: 2px solid var(--cor-rosa);
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 30px;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: linear-gradient(90deg, var(--cor-laranja), var(--cor-rosa));
  color: #ffffff;
  border: none;
}


/* ==================================
   ==== TÍTULOS ====
================================== */
.titulo-institucional {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.titulo-institucional .laranja {
  color: var(--cor-laranja);
}

.titulo-institucional .rosa {
  color: var(--cor-rosa);
}


/* ==================================
   ==== AJUSTES GERAIS ====
================================== */
html, body {
  overflow-x: hidden;
}


/* ==================================
   ==== SWIPER HERO ====
================================== */
.hero-carousel .swiper-slide {
  padding-bottom: 0;
}

.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

.swiper-pagination {
  bottom: 12px;
  gap: 6px;
}

.custom-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--cor-laranja);
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  opacity: 1;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.custom-bullet-active {
  background-color: var(--cor-rosa);
  transform: scale(1.2);
}


/* ==================================
   ==== CARROSSEL DE CLIENTES ====
================================== */
.logo-slider {
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  gap: 80px;
  width: calc((400px + 80px) * 52);
  animation: scroll 100s linear infinite;
}

.slide {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slide picture,
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide.vazio {
  background: transparent;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}


/* ==================================
   ==== ÍCONES DE CONTATO ====
================================== */
.contato-icone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.contato-icone img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.contato-icone span {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--cor-laranja);
  transition: color 0.3s ease;
}

.contato-icone:hover span {
  color: var(--cor-rosa);
}


