:root {
  --blue: #2b5bf5; /* destaque azul */
  --dark: #111827; /* fundo escuro */
  --muted: #6b7280;
  --card-bg: rgba(255, 255, 255, 0.03);
}

a {
  text-decoration: none;
}

html,
body {
  height: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
  overflow-y: overlay;
}
body {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    "Helvetica Neue",
    Arial;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
  scroll-behavior: smooth;
  line-height: 1.5;
}

/* SCROLLBAR */

/* ===============================
   SCROLLBAR PREMIUM
=================================*/

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f0f0f; /* fundo escuro elegante */
}
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 2px solid transparent;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #25d366, #128c7e);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2a2a2a #0f0f0f;
}

/* NAVBAR */
.navbar {
  background-color: #0b1114 !important;
  padding: 1.5rem 0;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.05em;
}
#logo-brand {
  width: 15vw;
  min-width: 200px;
}
#logo-brand {
  position: relative;
  display: inline-block;
}

#logo-brand::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 10px;
  padding: 3px;
  background: linear-gradient(90deg, transparent, #00c3ff, transparent);
  background-size: 300% 300%;
  animation: borderRun 3s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes borderRun {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.navbar-nav .nav-link {
  font-size: 0.95rem;
  margin: 0 0.6rem;
  color: #e5e7eb !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffffff !important;
}
.nav-link.nav-cta {
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 0.4rem 0.9rem;
  color: #fff !important;
  font-weight: 600;
}

.hero-modern {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(2, 6, 23, 0.75), rgba(7, 12, 18, 0.85)),
    url("../img/hero-meeting.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  padding-top: 8vh;
  justify-content: center;
  text-align: center;
}

/* escurece ainda mais com uma camada radial para foco central */
.hero-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.7) 55%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

/* garante que o conteúdo fique acima da sobreposição (já existe .hero-modern .container z-index:2) */
.hero-modern .container {
  position: relative;
  z-index: 2;
}

/* aumenta contraste do texto para destacar mais as palavras */
.hero-modern h1 {
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}
.hero-modern .lead {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.hero-modern .container {
  z-index: 2;
  position: relative;
}

.hero-modern h1 {
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
}

.hero-modern .lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto;
}

.hero-modern .btn-primary {
  background-color: #2563eb;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.85rem 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.hero-modern .btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}

/* Fundo gradiente + partículas */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.1),
      transparent 60%
    ),
    radial-gradient(circle at 70% 70%, rgba(37, 99, 235, 0.15), transparent 70%);
  z-index: 1;
}

canvas#particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

/* TYPING EFFECT */
.typing-text {
  color: #60a5fa;
  font-weight: 700;
}

.cursor {
  display: inline-block;
  width: 6px;
  background-color: #60a5fa;
  margin-left: 4px;
  animation: blink 0.8s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  50.1%,
  100% {
    opacity: 0;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-modern h1 {
    font-size: 2.2rem;
  }
  .hero-modern .lead {
    font-size: 1rem;
  }
}

.dark-section {
  background: var(--dark);
  color: #e6eef8;
  padding: 4rem 0 5rem;
}

.solutions .card {
  background: var(--card-bg);
  border: none;
  min-height: 190px;
}
.solutions .card h5 {
  color: white;
  font-weight: 600;
}

/* gray block with image and text */
.feature {
  padding: 4rem 0;
  background: #f5f6f8;
  color: #111827;
}
.feature .img-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* === TESTEMUNHOS === */
.testimonials {
  background: var(--dark);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.testimonial-text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 950px;
  margin: 0 auto 2rem;
  color: #f3f4f6;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.testimonial-company {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Bolinhas de navegação */
.carousel-indicators {
  margin-top: 2rem;
  position: relative;
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  transition: all 0.3s ease;
}
.carousel-indicators .active {
  background-color: var(--blue);
  transform: scale(1.2);
}

#testimonialCarousel .carousel-inner {
  min-height: 320px; /* ajuste fino aqui */
  display: flex;
  align-items: center;
}

/* Cada slide ocupa o mesmo espaço */
#testimonialCarousel .carousel-item {
  width: 100%;
}

/* Responsivo */
@media (max-width: 768px) {
  #testimonialCarousel .carousel-inner {
    min-height: 320px;
  }

  .testimonial-text {
    font-size: 1.25rem;
  }
}

/* NUMEROS */
.company-numbers {
  background: #ffffff;
  padding-top: 90px;
  padding-bottom: 90px;
}

.number-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.number-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #4da3ff);
  top: 0;
  left: 0;
}

.number-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.number-value {
  font-size: 64px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.number-value .plus {
  font-size: 36px;
  margin-left: 4px;
  margin-top: 8px;
}

.number-card p {
  margin-top: 20px;
  font-weight: 500;
  color: #555;
  font-size: 18px;
}

/* PARTNERS */
.partners {
  background: white;
  color: #222;
  padding: 8rem 0 8rem; /* antes 3rem */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.partners h6 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  max-width: 720px;
  line-height: 1.6;
}

/* Hover */

/* ===============================
   PARTNERS - 
=================================*/

.partners img {
  max-height: 110px;
  padding: 10px 20px;
  filter: grayscale(100%) brightness(0.85);
  opacity: 0.6;
  transition: 
    transform 0.4s cubic-bezier(.4,0,.2,1),
    filter 0.4s ease,
    opacity 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}

.partners img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
/* DARK FEATURE */
.dark-feature {
  background: #111827;
  color: #e6eef8;
  padding: 9rem 0 9rem; /* antes 4rem */
  display: flex;
  align-items: center;
  justify-content: center;
}
.dark-feature .container {
  max-width: 1220px;
}
.dark-feature h3 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.dark-feature p {
  max-width: 700px;
  color: rgba(230, 238, 248, 0.85);
  font-size: 1.1rem;
  line-height: 1.9;
}
.dark-feature img {
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}
.dark-feature img:hover {
  transform: scale(1.03);
}

/* === CONTATO DARK COM MAPA ABAIXO === */
.contact-area-dark {
  background: var(--dark);
  color: #fff;
  padding-top: 6rem;
  padding-bottom: 0;
}

.contact-content-dark {
  padding-bottom: 5rem;
}

.contact-area-dark h2 {
  font-weight: 700;
  color: #fff;
}

.form-control-dark {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control-dark:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 91, 245, 0.2);
}

.contact-info-dark {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  padding: 2rem 2.5rem;
}

.contact-info-dark p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.8rem;
}

.contact-info-dark h6 {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-hours {
  margin-top: 0.5rem;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-hours li span:first-child {
  color: rgba(255, 255, 255, 0.8);
}

.contact-map-white {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.contact-map-white iframe {
  display: block;
  width: 100%;
  border: 0;
}

.contact-map-dark iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: grayscale(15%) brightness(95%);
  box-shadow: 0 -2px 24px rgba(0, 0, 0, 0.25);
}

/* Botão */
.contact-content-dark button.btn-primary {
  background: var(--blue);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.contact-content-dark button.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}
/* === CONTATO SOBRE MAPA === */
.contact-overlay {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #f9fafb;
}

/* Mapa como fundo */
.map-container iframe {
  width: 100%;
  height: 500px;
  display: block;
  filter: grayscale(15%) brightness(94%);
  border: none;
}

/* Card escuro sobreposto */
.contact-card-dark {
  position: relative;
  margin-top: -180px; /* sobe sobre o mapa */
  background: var(--dark);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px #111827;
  padding: 3rem 2.5rem;
  z-index: 2;
}

.form-control-dark {
  width: 100%;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.form-control-dark:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43, 91, 245, 0.2);
  outline: none;
}

/* Botão */
.contact-card-dark button.btn-primary {
  background: var(--blue);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.contact-card-dark button.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* Bloco branco de informações */
.contact-info-light {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  margin-top: -80px; /* alinha visualmente com o card escuro */
  z-index: 1;
  position: relative;
}

.contact-info-light p {
  color: #111827;
  line-height: 1.6;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  color: #111827;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.contact-hours li span:first-child {
  color: #374151;
}

/* Responsivo */
@media (max-width: 992px) {
  .contact-card-dark {
    margin-top: -100px;
    padding: 2rem;
  }
  .contact-info-light {
    margin-top: 2rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* responsive tweaks */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero {
    padding-top: 4.5rem;
  }
  .blue-band {
    padding: 4.5rem 0;
  }
}

/* ===============================
   WHATSAPP PREMIUM BUTTON
=================================*/

.whatsapp-premium {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  z-index: 9999;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 0 0 4px rgba(37, 211, 102, 0.15);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Hover elegante */
.whatsapp-premium:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(37, 211, 102, 0.6);
}

/* Luz girando ao redor */
.whatsapp-premium::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: conic-gradient(
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent 30%
  );
  animation: rotateLight 3s linear infinite;
}

@keyframes rotateLight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mantém ícone acima da luz */
.whatsapp-premium i {
  position: relative;
  z-index: 2;
}

/* Responsivo */
@media (max-width: 768px) {
  .whatsapp-premium {
    width: 60px;
    height: 60px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
}

/* ===============================
   MODAL MANUTENÇÃO
=================================*/

.maintenance-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.maintenance-modal.show {
  opacity: 1;
  visibility: visible;
}

.maintenance-box {
  background: #111;
  color: #fff;
  width: 90%;
  max-width: 420px;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.maintenance-modal.show .maintenance-box {
  transform: translateY(0);
}

.maintenance-box .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.maintenance-box h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

.maintenance-box p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 25px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-whats {
  background: linear-gradient(135deg, #25d366, #128c7e);
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-whats:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.btn-close-modal {
  background: transparent;
  border: 1px solid #444;
  color: #aaa;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-close-modal:hover {
  background: #222;
  color: #fff;
}
