/* ==================================================
   RESET & BASE
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  padding-top: 70px;
}



.container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
}

/* ==================================================
   HEADER PREMIUM (IGUAL AO FOOTER)
================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  z-index: 1000;

  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}


/* LOGO – ÍCONE + TEXTO + PONTO */
.header-logo {
  height: 78px;
  display: flex;
  align-items: center;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* ÍCONE */
.logo-img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* TEXTO */
/* .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #ffffff;
  white-space: nowrap;
  margin-left: -10px;
} */

/* .logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;

  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
} */


/* PONTO DOURADO */
.logo-dot {
  font-size: 26px;
  line-height: 1;
  color: #d4af37;
  margin-left: -10px;
  /* aproxima do texto */
}

.logo-text {
  margin-left: 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}



/* MENU */
.header-menu a {
  margin-left: 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.header-menu a:hover {
  color: #d4af37;
}


.header-left {
  justify-self: start;
}

.header-center {
  justify-self: center;
}

.header-right {
  justify-self: end;
}

/* MOBILE */
@media (max-width: 768px) {
  .header-menu {
    display: flex;
    gap: 18px;
  }

  .header-menu a {
    font-size: 12px;
    margin-left: 0;
  }

  .logo-text {
    display: none;
  }

  .header-menu {
    display: none;
  }
}

/* @media (max-width: 768px) {
  .logo-text {
    display: none;
  }
} */


/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;

  /* SOBE O HERO POR BAIXO DO MENU */
  margin-top: -70px;
}



/* VÍDEO */
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY ESCURO (estilo Lovable) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.45));
  z-index: 1;
}

/* CONTEÚDO */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  height: 100%;
  padding: 0 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: #ffffff;
}

/* TÍTULO – estilo Lovable */
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
  max-width: 800px;
  letter-spacing: 1px;
}

/* SUBTEXTO */
.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 35px;
}

/* BOTÕES */
.hero-buttons {
  display: flex;
  gap: 15px;
}

/* BOTÃO PRINCIPAL (dourado) */
.btn-primary {
  background: #d4af37;
  color: #0b1a3a;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 500;
}

/* BOTÃO SECUNDÁRIO */
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  padding: 14px 28px;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}


/* ==================================================
   PADRÃO DE TÍTULOS DAS SEÇÕES
================================================== */

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-subtitle {
  display: block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 10px;
}

.section-title {
  font-size: 38px;
  font-weight: 500;
  color: #0b1a3a;
  line-height: 1.2;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: #d4af37;
  margin: 20px auto 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}


/* ==================================================
   ÁREAS DE ATUAÇÃO – PREMIUM LIMPO E SÓBRIO
================================================== */

.especialidades {
  padding: 100px 20px;
  background: #f5f6f8;
}

.especialidades-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
}


.slider-track {
  display: flex;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  transform: translate3d(0,0,0);
}


.slide {
  min-width: 100%;
  padding: 40px 0 0;
}

/* =========================
   GRID
========================= */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* =========================
   CARD BASE
========================= */

.card {
  min-height: 300px;
  padding: 44px 32px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* =========================
   CARD ESCURO
========================= */

.card.red {
  background: radial-gradient(circle at top, #1f1f1f, #0b0b0b);
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: none;
}

.card.red h3 {
  color: #ffffff;
}

.card.red p {
  color: rgba(255, 255, 255, 0.78);
}

.card.red:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(212, 175, 55, 0.45);
}

/* =========================
   CARD CLARO
========================= */

.card.white {
  background: #ffffff;
  color: #0b1a3a;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
}

.card.white h3 {
  color: #0b1a3a;
}

.card.white p {
  color: #555;
}

.card.white:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(212, 175, 55, 0.45);
}

/* =========================
   ÍCONE (DISCRETO)
========================= */

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  opacity: 0.85;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(77%) sepia(31%) saturate(412%) hue-rotate(8deg) brightness(95%) contrast(90%);
}

/* =========================
   TÍTULO
========================= */

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* =========================
   TEXTO
========================= */

.card p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 230px;
}

/* =========================
   SETAS DO SLIDER
========================= */

.arrow {
  background: #f2f2f2;
  border: none;
  width: 46px;
  height: 46px;
  font-size: 26px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #0b1a3a;
  transition: all 0.3s ease;
}

.arrow.left {
  left: -60px;
}

.arrow.right {
  right: -60px;
}

.arrow:hover {
  background: #0b0b0b;
  color: #d4af37;
}

/* ==================================================
   ÁREAS DE ATUAÇÃO – MOBILE (FINAL LIMPO)
================================================== */
@media (max-width: 576px) {

  .especialidades {
    padding: 60px 12px;
  }

  /* Viewport trava tudo */
  .slider-viewport {
    width: 100%;
    overflow: hidden;
  }

  /* Track */
  .slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
  }

  /* Cada slide ocupa 100% */
  .slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
  }

  /* Grid com 3 cards */
  .cards-grid {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Card */
  .card {
    padding: 30px 22px;
    border-radius: 12px;
    box-shadow: none;
    transform: none;
  }

  .card:hover {
    transform: none;
    box-shadow: none;
  }

  /* Ícone */
  .card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
  }

  /* Texto */
  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Setas */
  .arrow {
    position: absolute;
    bottom: -24px;
    top: auto;

    width: 36px;
    height: 36px;
    font-size: 20px;

    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.12);
    color: #0b1a3a;
  }

  .arrow.left {
    left: 32%;
  }

  .arrow.right {
    right: 32%;
  }
}



/* ==================================================
   EQUIPE – PREMIUM ELEGANTE
================================================== */

.team {
  position: relative;
  padding: 100px 20px;
  background: #f4f4f4;
}

/* textura de fundo */
.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/bg-colunas.jpg") center/cover no-repeat;
  opacity: 0.06;
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.team-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  z-index: 2;
}

/* GRID */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD */
.team-card {
  position: relative;
  width: 260px;
  background: #ffffff;
  padding: 22px 22px 34px;
  border-radius: 6px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  cursor: pointer;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* elevação */
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.18);
}

/* linha dourada assinatura */
.team-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  background: #d4af37;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-card:hover::after {
  opacity: 1;
}

/* IMAGEM */
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 18px;

  transition: transform 0.45s ease;
}

/* zoom elegante */
.team-card:hover img {
  transform: scale(1.05);
}

/* NOME */
.team-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #0b1a3a;
  margin-bottom: 6px;

  transition: color 0.3s ease;
}

/* cargo */
.team-card span {
  display: block;
  font-size: 14px;
  color: #666;
}

/* destaque no nome */
.team-card:hover h4 {
  color: #d4af37;
}

/* =========================
   MOBILE – SEM HOVER
========================= */

@media (hover: none) {

  .team-card {
    cursor: default;
  }

  .team-card:hover {
    transform: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }

  .team-card:hover img {
    transform: none;
  }

  .team-card::after {
    display: none;
  }
}


/* ==================================================
   POR QUE ESCOLHER – PREMIUM
================================================== */

.why-choose {
  padding: 140px 0;
  background: #f6f7f8;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
  padding: 0 20px;
}

/* =========================
   IMAGENS – MANTÉM COMO ERA
========================= */

.why-images {
  position: relative;
  max-width: 420px;
  padding-bottom: 40px;
  /* garante espaço pra imagem de trás */
}


.img-front {
  position: relative;
  width: 100%;
  display: block;
  z-index: 2;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.img-back {
  position: absolute;
  top: 40px;
  left: -40px;
  width: 100%;
  opacity: 0.15;
  filter: grayscale(100%);
  z-index: 1;
}

.img-back {
  opacity: 0.7;
}



/* =========================
   TEXTO
========================= */

.why-text .section-header {
  text-align: left;
  margin-bottom: 40px;
}

.why-text .section-divider {
  margin: 20px 0 0;
}

.why-text {
  max-width: 520px;
}

.why-text ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 40px;
}

.why-text li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.why-text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-size: 14px;
}


/* =========================
   BOTÃO
========================= */

.why-text .btn-outline {
  padding: 14px 34px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #d4af37;
  color: #d4af37;
  transition: all 0.3s ease;
}

.why-text .btn-outline:hover {
  background: #d4af37;
  color: #0b1a3a;
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {

  .why-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-text {
    max-width: 100%;
    text-align: center;
  }

  .why-text .section-header {
    text-align: center;
  }

  .why-text .section-divider {
    margin-left: auto;
    margin-right: auto;
  }

  /* LISTA */
  .why-text ul {
    margin: 30px auto 40px;
    padding: 0;
  }

  .why-text li {
    padding-left: 0;
    margin-bottom: 20px;
  }

  .why-text li::before {
    position: relative;
    display: block;
    margin-bottom: 6px;
  }

  /* BOTÃO */
  .why-text .btn-outline {
    display: inline-block;
    margin: 0 auto;
  }

}

/* ==================================================
   CONHEÇA NOSSO ESCRITÓRIO – FINAL CORRIGIDO
================================================== */

.office-contact {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.office-content h2 {
  font-size: 36px;
  color: #0b1a3a;
  margin-bottom: 12px;
}

.office-text {
  max-width: 620px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}


/* =========================
   MAPA
========================= */

.contact-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.contact-card iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}


/* =========================
   FAIXA DE CONTATO
========================= */

.contact-info {
  max-width: 1200px;
  margin: 0 auto;
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  padding: 26px 40px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 🔥 IGUALA TUDO */
  align-items: center;
  justify-items: center;
  /* 🔥 centraliza cada coluna */

  gap: 40px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  text-align: left;
  /* 🔥 textos centralizados */
  color: rgba(255, 255, 255, 0.85);
}



/* ITEM (ENDEREÇO / TELEFONE) */

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item img {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  filter: brightness(0) saturate(100%) invert(77%) sepia(31%) saturate(412%) hue-rotate(8deg) brightness(95%) contrast(90%);
}

.contact-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  /* título branco */
  margin-bottom: 6px;
}

.contact-item span {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  /* texto cinza elegante */
}

@media (max-width: 768px) {

  .contact-info {
    text-align: center;
    justify-items: center;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .contact-item img {
    margin: 0;
  }

  .contact-item span {
    text-align: center;
  }

}

/* =========================
   BOTÃO WHATSAPP – MESMO PADRÃO DO HERO
========================= */

.btn-whatsapp {
  background: #d4af37;
  color: #0b1a3a;
  padding: 14px 34px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease;
}

.btn-whatsapp:hover {
  background: #e2c45a;
  /* dourado mais claro */
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px;
  }

  .contact-card iframe {
    height: 260px;
  }

  .btn-whatsapp {
    width: 100%;
    text-align: center;
  }
}


/* ==================================================
   FOOTER PREMIUM
================================================== */

.footer-premium {
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 80px;
}

.footer-container-premium {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 22px;
  color: #fff;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #d4af37;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 22px 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* RESPONSIVO */
@media (max-width: 600px) {

  .footer-container-premium {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px 40px;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .footer-col,
  .footer-brand {
    width: 100%;
    max-width: 100%;
  }

  .footer-col a,
  .footer-col p {
    word-break: break-word;
  }

}


/* ==================================================
   HERO – ESTILO LOVABLE (VÍDEO + OVERLAY)
================================================== */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* VÍDEO */
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY ESCURO */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* CONTEÚDO */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  color: #fff;
  text-align: left;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
  max-width: 800px;
}

.hero-content p {
  margin-top: 20px;
  font-size: 18px;
  max-width: 600px;
  opacity: 0.9;
}

/* BOTÕES */
.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.hero-buttons a {
  padding: 14px 30px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  /* REMOVE SUBLINHADO */
}

/* BOTÃO DOURADO – HERO */
.hero-buttons .btn-gold {
  background: #d4af37;
  color: #0b1a3a;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.35s ease;
}

.hero-buttons .btn-gold:hover {
  background: #e2c45a;
  /* dourado mais claro */
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

/* BOTÃO CONTORNO – HERO */
.hero-buttons .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  transition: all 0.35s ease;
}

.hero-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  /* clareia suave */
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
  transform: translateY(-2px);
}


body.scrolled .main-header {
  background: #0b0b0b;
  /* preto elegante */
}

/* =========================
   HERO – AJUSTE MOBILE
========================= */

@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 32px;
    /* bem menor */
    line-height: 1.25;
    /* respira melhor */
    max-width: 100%;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 16px;
    max-width: 100%;
  }

  .hero-buttons {
    margin-top: 24px;
    flex-direction: column;
    /* botões em coluna */
    gap: 12px;
  }

  .hero-buttons a {
    text-align: center;
    width: 100%;
    padding: 14px 0;
  }
}

/* =========================
   BOTÃO WHATSAPP FLUTUANTE
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 16px;
  /* reduz para não estourar no mobile */
  width: 56px;
  height: 56px;
  z-index: 9999;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  max-width: 100%;
}



.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 12px;
    bottom: 16px;
  }
}


html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}