/* ===============================
   1. VARIÁVEIS
================================= */
:root {
  --centris-purple: #5b2a86;
  --centris-purple-light: #7e3fb2;
  --centris-dark: #3a3a3a;
  --centris-gray: #f5f6f8;
  --centris-white: #ffffff;

  --navbar-height: 78px;
}

/* ===============================
   2. BASE GLOBAL
================================= */
body {
  color: var(--centris-dark);
  background-color: #f7f4fa;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  padding-top: var(--navbar-height);
}

/* ===============================
   3. NAVBAR PREMIUM
================================= */
.navbar-centris {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--navbar-height);

  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(31, 38, 135, 0.08);

  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar-centris.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
}

.navbar-centris .container-fluid {
  max-width: 1440px;
}

.navbar-centris .navbar-brand img {
  max-height: 42px;
}

/* LINKS */
.navbar-centris .nav-link {
  color: var(--centris-dark) !important;
  font-weight: 500;
  font-size: 0.97rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.navbar-centris .nav-link:hover {
  color: var(--centris-purple) !important;
  background: rgba(91, 42, 134, 0.06);
}

.navbar-centris .nav-link.active {
  color: var(--centris-purple) !important;
  background: rgba(91, 42, 134, 0.1);
  font-weight: 700;
}

/* CONTATO (AGORA IGUAL AOS OUTROS) */
.nav-contact-btn {
  font-weight: 500;
}

/* ===============================
   4. TELEFONE NO NAVBAR
================================= */
.navbar-contact-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.navbar-contact-box a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* cores dos ícones */
.navbar-contact-box .bi-telephone {
  color: #0d6efd;
}

.navbar-contact-box .bi-whatsapp {
  color: #25d366;
}

.navbar-contact-number {
  font-weight: 600;
  color: var(--centris-dark);
}

/* ===============================
   5. BOTÃO HAMBÚRGUER
================================= */
.navbar-toggler-centris {
  border: none;
  background: transparent;
  width: 48px;
  height: 48px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.navbar-toggler-centris .toggler-line {
  width: 24px;
  height: 2px;
  background: var(--centris-purple);
  border-radius: 999px;
  transition: all 0.3s ease;
}

/* vira X */
.navbar-toggler-centris:not(.collapsed) .toggler-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler-centris:not(.collapsed) .toggler-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler-centris:not(.collapsed) .toggler-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===============================
   6. MENU MOBILE
================================= */
.menu-mobile-centris {
  position: relative;
}

@media (max-width: 991.98px) {
  :root {
    --navbar-height: 74px;
  }

  .menu-mobile-centris {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(91, 42, 134, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  }

  .navbar-centris .nav-link,
  .nav-contact-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
  }

  .navbar-contact-box {
    margin-top: 1rem;
    justify-content: center;
  }
}

/* ===============================
   7. BOTÕES
================================= */
.btn-centris {
  background: var(--centris-purple);
  color: #fff;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
}

.btn-centris:hover {
  background: var(--centris-purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(91, 42, 134, 0.25);
}

/* ===============================
   8. HERO
================================= */
.hero-centris {
  background: linear-gradient(
    135deg,
    var(--centris-purple),
    var(--centris-purple-light)
  );
  color: #fff;
  padding: 6rem 0;
}

.hero-text {
  max-width: 620px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.hero-description {
  font-size: 1.05rem;
}

/* ===============================
   9. IMAGEM HERO (MANTIDA GRANDE)
================================= */
.hero-image-box {
  max-width: 700px;
  margin: 0 auto;
}

.hero-float {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* ===============================
   10. CARDS (SEM MOVIMENTO)
================================= */
.card {
  border-radius: 14px;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  transform: none; /* 🔥 REMOVE MOVIMENTO */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-feature:hover {
  transform: none;
}

/* ===============================
   11. RESPONSIVO HERO
================================= */
@media (max-width: 991px) {
  .hero-centris {
    padding: 4rem 0;
  }

  .hero-float {
    max-height: 320px;
  }
}

@media (max-width: 576px) {
  .hero-centris {
    padding: 3rem 0;
  }

  .hero-float {
    max-height: 340px;
  }
}


/* ===============================
   CARDS (SEM MOVIMENTO)
================================= */
.card {
  border-radius: 14px;
  transition: box-shadow .2s ease;
}

.card:hover {
  transform: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

/* ===============================
   ÍCONES DOS CARDS (COM ANIMAÇÃO)
================================= */
.card-icon {
  font-size: 2.2rem;
  color: var(--centris-purple);
  display: inline-block;
  transition: transform .25s ease;
}

.card-uso {
  cursor: pointer;
}

.card-uso:hover .card-icon {
  transform: scale(1.15);
}

/* ===============================
   FEATURES
================================= */
.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 16px;
  background: rgba(91, 42, 134, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--centris-purple);
  transition: transform .25s ease;
}

.card-feature {
  cursor: pointer;
}

.card-feature:hover {
  transform: none;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.card-feature:hover .feature-icon-wrapper {
  background: var(--centris-purple);
}

.card-feature:hover .feature-icon {
  color: #fff;
  transform: scale(1.1);
}

/* ---- barra rolando */

.cookie-banner {
  position: fixed;
  bottom: 20px; /* 👈 fica acima do rodapé */
  left: 50%;
  transform: translateX(-50%); /* centraliza */

  background: #202124;
  color: #e8eaed;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px 16px;
  border-radius: 8px;

  font-size: 13px;
  z-index: 9999;

  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cookie-banner a {
  color: #8ab4f8;
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-banner button {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.cookie-banner button:hover {
  background: #1669c1;
}

/* CELULAR */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 8px;
    width: calc(100% - 16px);
    max-width: 380px;
    padding: 10px 10px;
    bottom: 14px;
  }

  .cookie-text {
    display: block;
    text-align: left;
  }

  .cookie-banner button {
    width: 100%;
	margin-top: 12px;
  }
}
