* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */

.logo img {
  width: 150px;
}

/* Links */
.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #5a3be4;
}

/* Botão */
.btn-contato {
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.btn-contato:hover {
  background-color: #f5f5f5;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown.show .dropdown-content {
  display: block;
}

.dropbtn {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: #333;
  font-weight: 500;
}

.dropbtn i {
  font-size: 20px;
  margin-left: 4px;
  vertical-align: middle;
  color: #333;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 9px 16px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 8px;
}

.dropdown-content a {
  padding: 12px 16px;
  display: block;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hambúrguer */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #000;
}

.hamburger i {
  font-size: 28px;
  color: #000;
  transition: 0.3s;
}

.hamburger .close-icon {
  display: none;
}

/* Quando o menu estiver aberto */
.nav-links.show ~ .desktop-show {
  display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .nav-links {
  position: fixed;
  top: 70px; /* ou ajuste conforme altura do seu header */
  left: 0;
  width: 100vw;
  background: #fff;
  flex-direction: column;
  gap: 20px;
  padding: 30px 40px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }


  .nav-links.show {
  opacity: 1;
  max-height: 500px; /* valor alto o suficiente para conter todos os itens */
  transform: translateY(0);
}

  .desktop-show {
    display: none;
  }

  .mobile-show {
    display: inline-block;
  }

  .hamburger {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
  }
  .hamburger i {
    font-size: 28px;
    color: #000;
    transition: 0.3s;
  }

  .navbar-container {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  }

  .nav-links a,
  .btn-contato {
    padding: 10px 0;
  }

.dropdown {
  width: 100%;
  text-align: center;
}

.dropbtn {
  width: 100%;
  background: none;
  border: none;
  font: inherit;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  padding: 10px 0;
  text-align: center;
}

.dropdown-content {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  position: static;
}

.dropdown.show-submenu .dropdown-content {
  display: flex;
}

.dropdown-content a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 400;
}
}

.hero {
  padding: 60px 40px;
  background: #fff;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 40px;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-left {
  flex: 1;
}

.hero-left .tilt {
  width: 100%;
  max-width: 500px;
  display: block;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-right {
  flex: 1;
  max-width: 550px;
}

.hero-right h2 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #000;
}

.hero-right .roxo {
  color: #3612A2;
  font-weight: 700;
}

.hero-right p {
  font-size: 1rem;
  color: #5c5c5c;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 32px;
}

.hero-numbers {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-wrap: nowrap;
  max-width: 100%;
}

.hero-numbers div {
  text-align: left;
  flex: 1;
  min-width: 180px;
}

.hero-numbers .number {
  font-size: 2rem;
  font-weight: 700;
  color: #3612A2;
  display: block;
  margin-bottom: 5px;
}

.hero-numbers p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-numbers p strong {
  font-weight: 700;
  color: #000;
  font-size: 0.95rem;
}

.hero-numbers p small {
  display: block;
  font-weight: 400;
  color: #666;
  font-size: 0.75rem;
}

.hero-links {
  margin-bottom: 25px;
}

.hero-links a {
  display: block;
  margin-bottom: 10px;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
}

.hero-links i {
  color: #3612A2;
  margin-right: 5px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #3612A2;
  color: white;
  font-weight: 500;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #3f1bb3;
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-left,
  .hero-map {
    width: 100%;
    max-width: 100%;
  }

  .hero-right {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-right h2 {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .hero-right p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 20px 0;
  }

   .hero-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 15px 0;
    padding: 0 10px;
  }

  .hero-numbers div {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
    padding: 16px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    text-align: center;
  }

  .hero-numbers .number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3612A2;
    margin-bottom: 6px;
  }

  .hero-numbers p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .hero-numbers p strong {
    font-weight: 600;
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
    color: #000;
  }

  .hero-numbers p small {
    font-size: 0.7rem;
    color: #666;
  }

  .hero-links {
    margin: 30px 0 20px;
  }

  .hero-links a {
    justify-content: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    font-size: 1rem;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
  }
}

.quem-somos {
  background: #3612A2;
  color: #fff;
  padding: 80px 20px;
}

.quem-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.quem-texto {
  flex: 1;
  min-width: 300px;
}

.quem-img {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.quem-img img {
  max-width: 100%;
  height: auto;
}

.quem-tag {
  border: 1px solid #ffffff33;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.quem-tag i {
  margin-right: 6px;
}

.quem-texto h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

.destaque {
  color: #fff;
  font-weight: 700;
}

.citacao {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 20px;
  opacity: 0.85;
}

.quem-texto p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.quem-texto strong {
  font-weight: 700;
  color: #fff;
}

.quem-texto .enfase {
  color: #BB9EFF;
  font-weight: 500;
}

.btn-claro {
  display: inline-block;
  background: #fff;
  color: #2E00A3;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-claro:hover {
  background: #eaeaea;
}

@media (max-width: 768px) {
  .quem-container {
    flex-direction: column;
    text-align: center;
  }

  .quem-texto {
  width: 100%;
  max-width: 100%;
  word-break: break-word;
  padding: 0 15px;
  box-sizing: border-box;
    }

    .quem-texto h2 {
  font-size: 1.6rem;
  line-height: 1.3;
  word-break: break-word;
    }

  .quem-texto p {
  font-size: 0.95rem;
  line-height: 1.5;
  word-break: break-word;
}
.quem-img {
  order: -1;
  margin-bottom: 24px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  box-sizing: border-box;
}

.quem-img img {
  width: 100%;
  max-width: 320px;
  height: auto;
}
}
.especialistas {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.titulo-secao {
  font-size: 2rem;
  color: #3612A2;
  font-weight: 700;
  margin-bottom: 50px;
}

.especialista-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.especialista-img img {
  border-radius: 50px;
  width: 350px;
  border: #AEAEAE;
  border-style: solid;
  border-width: 3px;
  padding: 0;
}

.especialista-info {
  text-align: left;
  max-width: 540px;
}

.badge {
  display: inline-block;
  background: #3612A2;
  color: #fff;
  padding: 6px 20px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.especialidade {

  color: #3612A2;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.especialidade em {
  font-style: italic;
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}
.destacado {
  border-bottom: 4px solid #AEAEAE;
  display: inline-block;
  padding-bottom: 1px;
}
.especialista-info {
  padding-left: 80px; 
}
@media (max-width: 768px) {
  .especialista-info {
    padding-left: 0;
    text-align: center;
  }
}
.especialista-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.especialista-info p strong {
  font-weight: 700;
  color: #000;
}

.destaques {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 24px;
}

.item-destaque {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.numero {
  font-size: 1.4rem;
  font-weight: 700;
  color: #5A2AE2;
  padding-bottom: 2px;
  margin-bottom: 4px;
  line-height: 1;
}

.rotulo {
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  line-height: 1.2;
}

.rotulo small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #999;
  margin-top: 2px;
}

.selo {
  background: #ececec;
  border-radius: 18px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #5A2AE2;
  gap: 8px;
  line-height: 1.4;
}

.selo i {
  font-size: 1rem;
  color: #5A2AE2;
}

.selo strong {
  color: #000;
  font-weight: 700;
}
@media (max-width: 768px) {
  .destaques {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .item-destaque {
    flex: 1 1 120px;
    min-width: 120px;
    max-width: 140px;
  }

  .numero {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }

  .rotulo {
    font-size: 0.85rem;
  }

  .rotulo small {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .selo {
    margin-top: 20px;
    padding: 12px 14px;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.linha-separadora-rayner {
  height: 0.8px;
  background-color: #e2e2e2;
  width: 60%;
  align-items: center;
  margin: 80px auto 60px auto;
}

.especialista-container-rayner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  flex-direction: row; /* garante texto à esquerda e imagem à direita */
}

.especialista-img-rayner img {
  border-radius: 50px;
  width: 350px;
  border: 3px solid #AEAEAE;
}

.especialista-info-rayner {
  text-align: left;
  max-width: 540px;
  padding-left: 80px;
}

.badge-rayner {
  display: inline-block;
  background: #3612A2;
  color: #fff;
  padding: 6px 20px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.especialidade-rayner {
  color: #3612A2;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.especialidade-rayner em {
  font-style: italic;
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.destacado-rayner {
  border-bottom: 4px solid #AEAEAE;
  display: inline-block;
  padding-bottom: 1px;
}

.especialista-info-rayner p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.especialista-info-rayner p strong {
  font-weight: 700;
  color: #000;
}

.destaques-rayner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 24px;
}

.item-destaque-rayner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.numero-rayner {
  font-size: 1.4rem;
  font-weight: 700;
  color: #5A2AE2;
  padding-bottom: 2px;
  margin-bottom: 4px;
  line-height: 1;
}

.rotulo-rayner {
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  line-height: 1.2;
}

.rotulo-rayner small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #999;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .especialista-container-rayner {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .especialista-info-rayner {
    text-align: center;
    padding-left: 0;
  }

  .especialista-img-rayner img {
    max-width: 300px;
  }

  .linha-separadora-rayner {
    margin: 60px auto 40px auto;
    width: 60%;
  }

  .destaques-rayner {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .item-destaque-rayner {
    flex: 1 1 120px;
    min-width: 100px;
    max-width: 140px;
  }

  .numero-rayner {
    font-size: 1.3rem;
  }

  .rotulo-rayner {
    font-size: 0.85rem;
  }

  .rotulo-rayner small {
    font-size: 0.72rem;
    line-height: 1.2;
  }
}
.linha-separadora-samuel {
  height: 1px;
  background-color: #e2e2e2;
  width: 60%;
  margin: 80px auto 60px auto;
}

.especialista-container-samuel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.especialista-img-samuel img {
  border-radius: 50px;
  width: 350px;
  border: 3px solid #AEAEAE;
}

.especialista-info-samuel {
  text-align: left;
  max-width: 540px;
  padding-right: 80px;
}

.badge-samuel {
  display: inline-block;
  background: #3612A2;
  color: #fff;
  padding: 6px 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.especialidade-samuel {
  color: #3612A2;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.especialidade-samuel em {
  font-style: italic;
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.destacado-samuel {
  border-bottom: 4px solid #AEAEAE;
  display: inline-block;
  padding-bottom: 1px;
}

.especialista-info-samuel p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.especialista-info-samuel p strong {
  font-weight: 700;
  color: #000;
}

.destaques-samuel {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 24px;
}

.item-destaque-samuel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
  flex: 1;
}

.numero-samuel {
  font-size: 1.4rem;
  font-weight: 700;
  color: #5A2AE2;
  padding-bottom: 2px;
  margin-bottom: 4px;
  line-height: 1;
}

.rotulo-samuel {
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  line-height: 1.2;
}

.rotulo-samuel small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: #999;
  margin-top: 2px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .especialista-container-samuel {
    flex-direction: column;
    text-align: center;
  }

  .especialista-img-samuel {
    order: -1; /* faz a imagem aparecer primeiro */
  }

  .especialista-info-samuel {
    padding: 0;
    text-align: center;
  }

  .destaques-samuel {
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
  }

  .item-destaque-samuel {
    min-width: 120px;
    max-width: 160px;
    flex: 1 1 40%;
  }

  .rotulo-samuel small {
    font-size: 0.7rem;
  }
}


.resultados {
  background-color: #3612A2;
  padding: 80px 20px;
  color: #fff;
}

.resultados-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.resultados-texto {
  flex: 1;
  min-width: 300px;
}

.badge-resultado {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  color: #fff;
  gap: 6px;
}

.badge-resultado i {
  font-size: 1.2rem;
  color: #fff;
}

.resultados-texto h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}

.resultados-texto h2 strong {
  font-weight: 700;
  color: #fff;
}

.resultados-texto p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e6e6e6;
  margin-bottom: 30px;
}

.resultados-texto p strong {
  color: #fff;
  font-weight: 600;
}

.btn-resultado {
  background: #fff;
  color: #000;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-resultado:hover {
  background: #e5e5e5;
}

.resultados-img {
  flex: 1;
  text-align: center;
}

.resultados-img img {
  max-width: 100%;
  height: auto;
}

.foco-zennite {
  color: rgb(35, 34, 34);
  padding: 80px 20px;
}

.foco-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.foco-imagem {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.foco-imagem img {
  max-width: 100%;
  border-radius: 20px;
}

.foco-conteudo {
  flex: 1;
  min-width: 300px;
}

.titulo-foco {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2E00A3;
  margin-bottom: 50px;
}


.foco-subtitulo {
  font-size: 1.3rem;
  color: #2E00A3;
  font-weight: 600;
  margin-bottom: 16px;
}

.foco-zennite p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.foco-zennite p strong {
  color: #3c3c3c;
  font-weight: 600;
}

.foco-zennite .citacao {
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 16px;
}

.foco-lista {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.foco-lista li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 10px;
}

.foco-lista i {
  color: #FFCF39;
  font-size: 1.2rem;
  margin-right: 10px;
}

.foco-resultados {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
}

@media (max-width: 768px) {
  .foco-container {
    flex-direction: column;
    text-align: center;
  }

  .foco-conteudo {
    text-align: left;
    padding: 0 10px;
  }

  .foco-subtitulo {
    font-size: 1.4rem;
  }

  .foco-resultados {
    font-size: 1.1rem;
  }

  .foco-lista li {
    justify-content: flex-start;
  }
}


@media (max-width: 768px) {
  .resultados-container {
    flex-direction: column;
    text-align: center;
  }

  .resultados-texto h2 {
    font-size: 1.6rem;
  }

  .resultados-texto p {
    font-size: 0.95rem;
  }
}


.footer {
  background-color: #3612A2; /* mesma cor de fundo da seção anterior */
  color: #fff;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08); /* sombra sutil no topo */
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-col.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #eaeaea;
  margin-bottom: 8px;
}

.footer a {
  text-decoration: none; /* remove os traços */
  color: white;
  font-size: 1.2rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: rgb(227, 226, 226);
}

.footer-copy {
  font-size: 0.75rem;
  margin-top: 5px;
  color: #e0e0e0;
}

.footer-phone {
  font-weight: bold;
  font-size: 0.9rem;
}


/* Responsivo */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}


/* Scrollbar geral */
::-webkit-scrollbar {
  width: 8px;
}

/* Fundo do scroll */
::-webkit-scrollbar-track {
  background: #f0f0f0; /* cinza claro */
}

/* "Alça" do scroll */
::-webkit-scrollbar-thumb {
  background-color: #3612A2; /* roxo principal */
  border-radius: 10px;
}

/* Ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
  background-color: #5A2AE2; /* roxo mais claro para hover */
}

/* Firefox */
html {
  scrollbar-color: #3612A2 #f0f0f0; /* thumb e track */
  scrollbar-width: thin;
}
