* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #ffffff;
  color: #222;
}

.seo-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   TOPO
========================= */
.topo-site {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 1000;
}

.topo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-topo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-topo img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-texto {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-texto .vip { color: #2f72d8; }
.logo-texto .band { color: #e85a71; }

.menu-topo ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
}

.menu-topo a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.menu-topo a:hover {
  opacity: 0.75;
}

.menu-topo ul li a.active {
  background: linear-gradient(90deg, #2f7df5, #8b56ee, #f16662);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.faixa-gradiente {
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #2f7df5, #8b56ee, #f16662);
}

.conteudo {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.conteudo h1 {
  margin-bottom: 12px;
  font-size: 30px;
}

.conteudo p {
  font-size: 16px;
  color: #555;
}

@media (max-width: 768px) {
  .topo-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
  }

  .logo-topo img { height: 36px; }
  .menu-topo { width: 100%; }
  .menu-topo ul { gap: 18px; flex-wrap: wrap; }
  .menu-topo a { font-size: 16px; }
  .logo-texto { font-size: 28px; }
}

/* =========================
   HERO / BANNER
========================= */
.hero-vipband {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 0;
}

.hero-bg {
  width: 100%;
  min-height: 430px;
  position: relative;
  overflow: hidden;
  background-image: url("imagens/banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #4d5fe8;
}

.hero-overlay {
  width: 100%;
  min-height: 430px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0));
}

.hero-conteudo {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 110px;
  text-align: center;
}

.hero-centro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-centro h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.hero-centro p {
  margin: 0 0 26px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(0,0,0,0.16);
}

.btn-orcamento {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  background: #ffffff;
  color: #1f66d8;
  font-size: 18px;
  font-weight: 700;
  border: 3px solid #ff7a59;
  box-shadow: 0 0 0 3px rgba(31, 102, 216, 0.25), 0 8px 18px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-orcamento:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(31, 102, 216, 0.30), 0 12px 22px rgba(0,0,0,0.16);
}

@media (max-width: 1024px) {
  .hero-vipband { padding: 0 14px; }

  .hero-bg,
  .hero-overlay,
  .hero-conteudo { min-height: 360px; }

  .hero-conteudo { padding: 24px 18px 100px; }
  .hero-centro h1 { font-size: 54px; }
  .hero-centro p { font-size: 18px; }
}

@media (max-width: 640px) {
  .hero-vipband {
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .hero-bg {
    min-height: 300px;
    background-image: url("imagens/banner-mobile.jpg");
    border-radius: 14px;
  }

  .hero-overlay,
  .hero-conteudo { min-height: 300px; }

  .hero-conteudo { padding: 18px 12px 85px; }
  .hero-centro h1 { font-size: 38px; }
  .hero-centro p { font-size: 15px; margin-bottom: 18px; }

  .btn-orcamento {
    min-width: 210px;
    height: 48px;
    padding: 0 18px;
    font-size: 15px;
    border-width: 2px;
  }
}

/* =========================
   CARDS DE CATEGORIAS
========================= */
.categorias-vipband {
  margin: -72px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1020px;
  padding: 0 10px;
}

.card-categoria {
  background: #ffffff;
  border-radius: 18px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
  border: 1px solid #ececec;
  min-height: 210px;
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card-categoria:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
}

.card-img {
  width: 100%;
  height: 118px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f3f6fb, #e8eef8);
  border: 1px #c9d7ef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.card-categoria h3 {
  margin: 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
  color: #2f7df5;
}

@media (max-width: 1024px) {
  .categorias-vipband {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -60px;
    max-width: 760px;
    padding: 0 14px;
  }
}

@media (max-width: 640px) {
  .categorias-vipband {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
    gap: 12px;
    padding: 0 12px;
    max-width: 100%;
  }

  .card-categoria {
    min-height: 160px;
    padding: 12px 10px 14px;
    border-radius: 14px;
  }

  .card-img {
    height: 100px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .card-categoria h3 { font-size: 13px; }
}

@media (max-width: 360px) {
  .categorias-vipband {
    gap: 10px;
    padding: 0 8px;
  }

  .card-img { height: 80px; }
  .card-categoria h3 { font-size: 12px; }
}

/* =========================
   CONFIGURADOR DE CORDÃO
========================= */
.cfg-cordao {
  width: 100%;
  padding: 0 14px 10px;
}

.cfg-wrap {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  align-items: start;
}

.cfg-preview-card {
  background: #fff;
  border: 1px solid #e5ebf5;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  position: sticky;
  top: 20px;
}

.cfg-preview-header {
  text-align: center;
  margin-bottom: 12px;
}

.cfg-preview-header h2 {
  margin: 6px 0 0;
  font-size: 28px;
  line-height: 1.1;
  color: #172232;
}

.cfg-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  background: linear-gradient(90deg, #2f7df5, #8b56ee, #f16662);
}

.cfg-preview-image-wrap {
  position: relative;
}

.cfg-preview-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dde6f3;
  background: #f3f7fd;
  position: relative;
}

.cfg-preview-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}

.cfg-preview-acabamento-box {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 92px;
  height: 92px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.712);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cfg-preview-acabamento-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  display: block;
}

@media (max-width: 768px) {
  .cfg-preview-acabamento-box {
    right: 10px;
    bottom: 10px;
    width: 82px;
    height: 82px;
  }

  .cfg-preview-acabamento-box img {
    width: 100%;
    height: 100%;
  }
}

.cfg-preview-footer {
  text-align: center;
  margin-top: 12px;
}

.cfg-preview-footer #preview-descricao {
  margin: 0;
  font-size: 15px;
  color: #5f748d;
  font-weight: 600;
}

.cfg-card {
  background: #fff;
  border: 1px solid #e5ebf5;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.cfg-title {
  margin: 0 0 16px;
  font-size: 22px;
  color: #172232;
}

.cfg-group { margin-bottom: 18px; }

.cfg-label {
  font-size: 15px;
  font-weight: 700;
  color: #233247;
  margin-bottom: 10px;
}

.cfg-row { margin-top: 10px; }

.cfg-inline-mini-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #61748d;
  margin-bottom: 8px;
}

.tabs-largura {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #dbe4f2;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.tab-largura {
  border: 0;
  background: #fff;
  color: #283647;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 8px;
  cursor: pointer;
  transition: 0.18s ease;
  border-right: 1px solid #e5ebf5;
  font-family: 'Nunito', sans-serif;
}

.tab-largura:last-child { border-right: 0; }
.tab-largura:hover { background: #f7faff; }

.tab-largura.active {
  color: #fff;
  background: linear-gradient(90deg, #2f7df5, #8b56ee, #f16662);
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.chips-row-tight { gap: 8px; }

.chip {
  border: 1px solid #d9e3f2;
  background: #f8fbff;
  color: #233247;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: #95b7f2;
}

.chip.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, #2f7df5, #8b56ee, #f16662);
  box-shadow: 0 8px 16px rgba(98, 102, 237, 0.2);
}

.cfg-select {
  position: relative;
  width: 100%;
}

.cfg-select-toggle {
  width: 100%;
  height: 48px;
  border: 1px solid #d8e1ee;
  border-radius: 12px;
  background: #fbfdff;
  color: #1d2b3a;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: 0.18s ease;
  font-family: 'Nunito', sans-serif;
}

.cfg-select-toggle:hover {
  border-color: #95b7f2;
}

.cfg-select.is-open .cfg-select-toggle {
  border-color: #88aef5;
  box-shadow: 0 0 0 4px rgba(47, 125, 245, 0.1);
}

.cfg-select-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cfg-select-arrow {
  flex-shrink: 0;
  color: #61748d;
  transition: transform 0.2s ease;
}

.cfg-select.is-open .cfg-select-arrow {
  transform: rotate(180deg);
}

.cfg-select-menu {
  position: static;
  display: grid;
  gap: 8px;
  margin-top: 8px;
  max-height: 260px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #dbe4f2;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(24, 44, 72, 0.12);
}

.cfg-select-menu[hidden] {
  display: none;
}

.cfg-select-option {
  border: 1px solid #d9e3f2;
  background: #f8fbff;
  color: #233247;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
  font-size: 14px;
  text-align: left;
  font-family: 'Nunito', sans-serif;
}

.cfg-select-option:hover {
  border-color: #95b7f2;
  transform: translateY(-1px);
}

.cfg-select-option.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, #2f7df5, #8b56ee, #f16662);
  box-shadow: 0 8px 16px rgba(98, 102, 237, 0.2);
}

.cfg-input,
.cfg-textarea {
  width: 100%;
  border: 1px solid #d8e1ee;
  border-radius: 12px;
  background: #fbfdff;
  color: #1d2b3a;
  font-size: 15px;
  outline: none;
  font-family: 'Nunito', sans-serif;
}

.cfg-input {
  height: 46px;
  padding: 0 14px;
}

.cfg-textarea {
  padding: 12px 14px;
  resize: vertical;
  min-height: 100px;
}

.cfg-input:focus,
.cfg-textarea:focus {
  border-color: #88aef5;
  box-shadow: 0 0 0 4px rgba(47, 125, 245, 0.1);
}

.cfg-help {
  display: block;
  margin-top: 8px;
  color: #6b7f97;
  font-size: 12px;
}

.cfg-inline-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.55fr 0.75fr;
  gap: 14px;
  align-items: start;
}

.cfg-inline-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.comprimento-outro {
  display: block;
  margin-top: 8px;
}

.cfg-input-mini {
  width: 110px;
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
}

.comprimento-outro .cfg-input-mini {
  width: 120px;
}

#comprimento-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

#comprimento-group .chip {
  width: 84px;
  min-width: 84px;
  justify-content: center;
  text-align: center;
  padding-left: 8px;
  padding-right: 8px;
}


/* LINHA: Comprimento | Quantidade | Data */
.cfg-inline-grid {
  display: flex;
  flex-wrap: nowrap;      /* tudo em uma linha só em desktop */
  gap: 16px;
  align-items: flex-start;
}

/* Cada coluna da linha */
.cfg-inline-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: flex-start;
  /* DESLOCAR TUDO PARA A DIREITA */
  margin-left: 16px;  /* ajuste o valor: 8, 12, 16, 24... */
}

/* Comprimento: chips quebram apenas dentro da coluna */
#comprimento-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

/* QUANTIDADE – controla o tamanho da caixinha */
.qty-box {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 6px;
  align-items: center;
  max-width: 160px;       /* não deixa enorme, sobra espaço pra Data */
}

.qty-btn {
  width: 40px;
  height: 44px;
  border: 1px solid #d8e1ee;
  border-radius: 12px;
  background: #f8fbff;
  color: #233247;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
  font-family: 'Nunito', sans-serif;
}

.qty-btn:hover {
  border-color: #8fb4f5;
  background: #f2f7ff;
}

.qty-input {
  height: 44px;
  border: 1px solid #d8e1ee;
  border-radius: 12px;
  background: #fbfdff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1d2b3a;
  outline: none;
  padding: 0 10px;
  justify-self: center;
  font-family: 'Nunito', sans-serif;
  /* >>> AQUI VOCÊ CONTROLA O COMPRIMENTO DO INPUT <<< */
  width: 80px;       /* você pode ajustar 60, 80, 100... */
  max-width: 100px;  /* opcional, só pra limitar */
}

.qty-input:focus {
  border-color: #88aef5;
  box-shadow: 0 0 0 4px rgba(47, 125, 245, 0.1);
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-input[type=number] {
  -moz-appearance: textfield;
}

/* DATA / PRAZO – totalmente separado da quantidade */
#data-prazo {
  display: block;
  width: 100%;          /* ocupa a coluna de Data */
  max-width: 200px;
  height: 44px;
  border: 1px solid #d8e1ee;
  border-radius: 12px;
  background: #fbfdff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1d2b3a;
  outline: none;
  padding: 0 10px;
  font-family: 'Nunito', sans-serif;
}

#data-prazo:focus {
  border-color: #88aef5;
  box-shadow: 0 0 0 4px rgba(47, 125, 245, 0.1);
}

/* RESPONSIVO – no celular, pode quebrar pra baixo */
@media (max-width: 640px) {
  .cfg-inline-grid {
    flex-wrap: wrap;
  }

  .cfg-inline-col {
    flex: 1 1 100%;
  }

  #data-prazo {
    max-width: 100%;
  }
}


.cfg-resumo {
  margin-top: 10px;
  border: 1px solid #e3ebf7;
  border-radius: 14px;
  background: #f8fbff;
  padding: 14px;
}

.cfg-resumo-title {
  font-size: 14px;
  font-weight: 800;
  color: #223042;
  margin-bottom: 8px;
}

.cfg-resumo-main {
  font-weight: 700;
  color: #172232;
  line-height: 1.45;
}

.cfg-resumo-extra {
  margin-top: 6px;
  color: #5f748d;
  font-size: 13px;
  line-height: 1.4;
}

.cfg-actions { margin-top: 18px; }

.btn-whatsapp {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, #24c35a, #17a84a);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(34, 177, 76, 0.24);
  transition: 0.18s ease;
  font-family: 'Nunito', sans-serif;
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

@media (max-width: 900px) {
  .cfg-wrap {
    grid-template-columns: 1fr;
  }

  .cfg-preview-card { position: static; }

  .cfg-inline-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "comp comp"
      "qtd  data";
    gap: 12px;
  }

  .cfg-inline-col:nth-child(1) { grid-area: comp; }
  .cfg-inline-col:nth-child(2) { grid-area: qtd; }
  .cfg-inline-col:nth-child(3) { grid-area: data; }

  #data-prazo { width: 100%; max-width: 100%; }
  .qty-box { max-width: 100%; }
  .qty-input { width: 100%; justify-self: stretch; }
}

@media (max-width: 700px) {
  .cfg-cordao { padding: 14px 8px 26px; }

  .cfg-preview-card,
  .cfg-card {
    padding: 14px;
    border-radius: 16px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .cfg-wrap {
    max-width: 100%;
    overflow-x: hidden;
  }

  .cfg-preview-acabamento-box {
    width: 74px;
    height: 74px;
    right: 8px;
    bottom: 12px;
    border-radius: 12px;
  }

  .cfg-preview-header h2 { font-size: 22px; }

  .tabs-largura {
    grid-template-columns: repeat(5, minmax(52px, 1fr));
    width: 100%;
  }

  .tab-largura { font-size: 12px; padding: 10px 2px; }
  .chip { font-size: 13px; padding: 9px 12px; }
  .cfg-select-toggle { font-size: 14px; height: 46px; }
  .cfg-select-option { font-size: 13px; }
  .cfg-input-mini { width: 96px; height: 40px; }

  .cfg-inline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-left: 0 !important;
  }

  #comprimento-group {
    flex-wrap: wrap;
    gap: 8px;
  }

  #comprimento-group .chip {
    width: 80px;
    min-width: 80px;
  }

  .comprimento-outro .cfg-input-mini {
    width: 100%;
    max-width: 140px;
  }

  .cfg-preview-footer #preview-descricao {
    white-space: normal;
    word-break: break-word;
    padding: 0 8px;
    font-size: 13px;
  }
}

/* =========================
   FAQ + WHATSAPP
========================= */
.faqw-section {
  width: 100%;
  padding: 0 14px 10px;
}

.faqw-wrap {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.faqw-left {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e6ecf5;
  box-shadow: 0 14px 32px rgba(0,0,0,.06);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto;
}

.faqw-right {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e6ecf5;
  box-shadow: 0 14px 32px rgba(0,0,0,.06);
  padding: 22px;
}

.faqw-left-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #eef2f8;
}

.faqw-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.faqw-logo-icon { font-size: 16px; line-height: 1; }

.faqw-logo-text {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .2px;
  background: linear-gradient(90deg, #2f7df5, #8b56ee, #f16662);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faqw-mini-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: flex-end;
  font-size: 11px;
  font-weight: 700;
  color: #61748d;
}

.faqw-left-banner {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(520px 160px at 8% 30%, rgba(255,255,255,.14), transparent 65%),
    radial-gradient(420px 120px at 55% -10%, rgba(255,255,255,.10), transparent 70%),
    radial-gradient(700px 200px at 100% 15%, rgba(255,255,255,.08), transparent 65%),
    linear-gradient(90deg, #2f7df5, #8b56ee, #f16662);
}

.faqw-banner-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(0deg, rgba(20,20,20,.05), rgba(20,20,20,0));
}

.faqw-banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 18px 18px 16px;
}

.faqw-kicker {
  margin: 0 0 8px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25px;
}

.faqw-left-banner h2 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -.2px;
  text-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.faqw-left-banner h2 span {
  display: block;
  font-weight: 700;
  opacity: .96;
}

.faqw-sub {
  margin: 10px 0 14px;
  max-width: 620px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1.35;
}

.faqw-btn-whats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 390px;
  max-width: 100%;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .1px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(90deg, #10c36b 0%, #11b7a0 30%, #6e5be5 66%, #f45f63 100%);
  box-shadow: 0 10px 22px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .18s ease, filter .18s ease;
  font-family: 'Nunito', sans-serif;
}

.faqw-btn-whats:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.faqw-whats-icon { font-size: 18px; line-height: 1; }

.faqw-logos {
  border-top: 1px solid #eef2f8;
  background: #fff;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}

.faqw-logos::before,
.faqw-logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 56px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.faqw-logos::before {
  left: 0;
  background: linear-gradient(90deg, #fff 25%, rgba(255,255,255,0));
}

.faqw-logos::after {
  right: 0;
  background: linear-gradient(270deg, #fff 25%, rgba(255,255,255,0));
}

.faqw-logos-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 22px;
  width: max-content;
  padding-left: 18px;
  animation: faqwMarquee 28s linear infinite;
  will-change: transform;
}

.faqw-logo-item {
  flex: 0 0 auto;
  min-width: 110px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .95;
  transition: opacity .2s ease, transform .2s ease;
}

.faqw-logo-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.faqw-logo-item img {
  display: block;
  width: auto;
  height: 28px;
  max-width: 160px;
  object-fit: contain;
  transition: transform .2s ease;
}

.faqw-logo-item:hover img { transform: scale(1.03); }

@keyframes faqwMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


.faqw-title {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: .98;
  font-weight: 900;
  color: #7f59eb;
  letter-spacing: -.2px;
}

.faqw-title span {
  background: linear-gradient(90deg, #2f7df5, #8b56ee, #f16662);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faqw-accordion { display: grid; gap: 9px; }

.faqw-item {
  border: 1px solid #e3eaf6;
  border-radius: 12px;
  background: #fbfdff;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.faqw-item:hover {
  border-color: #d6e1f3;
  box-shadow: 0 6px 14px rgba(47,125,245,.05);
}

.faqw-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #243246;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

.faqw-arrow {
  flex-shrink: 0;
  color: #6d7f97;
  transition: transform .2s ease;
}

.faqw-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faqw-answer p {
  margin: 0;
  padding: 0 13px 13px;
  color: #5f748d;
  font-size: 14px;
  line-height: 1.4;
}

.faqw-item.active .faqw-answer { max-height: 220px; }
.faqw-item.active .faqw-arrow { transform: rotate(180deg); }

@media (max-width: 980px) {
  .faqw-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faqw-left-topo {
    flex-direction: column;
    align-items: flex-start;
  }

  .faqw-mini-menu { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .faqw-section { padding: 16px 8px 24px; }

  .faqw-left,

  .faqw-left-topo { padding: 12px 14px; }
  .faqw-mini-menu { display: none; }
  .faqw-left-banner { min-height: 160px; }
  .faqw-banner-content { padding: 16px 14px 14px; }
  .faqw-kicker { font-size: 11px; margin-bottom: 6px; }
  .faqw-left-banner h2 { font-size: 20px; }
  .faqw-sub { font-size: 12px; margin: 8px 0 12px; }

  .faqw-btn-whats {
    width: 100%;
    min-width: 0;
    font-size: 13px;
    padding: 12px;
  }

  .faqw-logos { padding: 10px 0; }

  .faqw-logos-track {
    gap: 14px;
    padding-left: 12px;
    animation-duration: 22s;
  }

  .faqw-logo-item {
    min-width: 86px;
    height: 30px;
  }

  .faqw-logo-item img {
    height: 20px;
    max-width: 110px;
  }

  .faqw-question { font-size: 14px; padding: 12px; }
  .faqw-answer p { font-size: 13px; padding: 0 12px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .faqw-logos-track { animation: none; }
}

/* =========================
   FAQ PAGE
========================= */
.faq-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 0px 80px;
}

.faq-titulo {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
}

.faq-titulo .azul { color: #2f7df5; }
.faq-titulo .roxo { color: #8b56ee; }

.faq-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e3eaf6;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  border-color: #c8d8f5;
  box-shadow: 0 6px 18px rgba(47, 125, 245, 0.08);
}

.faq-pergunta {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1d2b3a;
  text-align: left;
}

.faq-seta {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f7df5;
  font-size: 16px;
  transition: transform 0.25s ease, background 0.2s ease;
}

.faq-item.active .faq-seta {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #2f7df5, #8b56ee);
  color: #fff;
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-resposta p {
  padding: 0 20px 18px;
  font-size: 15px;
  color: #5f748d;
  line-height: 1.6;
  font-weight: 600;
}

.faq-item.active .faq-resposta {
  max-height: 300px;
}

@media (max-width: 480px) {
  .faq-wrap {
    padding: 0 12px 40px;
    margin: 24px auto;
  }

  .faq-pergunta {
    font-size: 15px;
    padding: 16px;
  }

  .faq-resposta p {
    font-size: 14px;
    padding: 0 16px 16px;
  }
}

/* =========================
   SEÇÃO USOS (TÍTULO + CARDS + IMAGEM)
========================= */

/* Container geral da seção */
.usos-section {
  width: 100%;
  padding: 20px 14px 40px;
}

.usos-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* Título "Usos" */
.usos-titulo {
  font-size: 26px;
  font-weight: 900;
  color: #000;
  margin-bottom: 8px;
}

/* =========================
   FAIXA SUPERIOR (cards de usos)
========================= */

.usos-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.usos-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px 12px;
}

.usos-card:nth-child(1),
  background: linear-gradient(90deg, #eef4f7, #e2eaee);
}

.usos-card:nth-child(3),
.usos-card:nth-child(4) {
  background: transparent;
}

.usos-icon-box {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usos-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.usos-texto h3 {
  font-size: 16px;
  font-weight: 800;
  color: #000;
  margin: 0 0 4px;
}

.usos-texto p {
  font-size: 13px;
  color: #555;
  line-height: 1.45;
  margin: 0;
}

/* =========================
   IMAGEM ÚNICA RETANGULAR ABAIXO DA FAIXA
========================= */

.usos-imagem-unica {
  margin-top: 24px;
}

.usos-imagem-box {
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;        /* retângulo bem horizontal */
}

.usos-imagem-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* preenche o retângulo sem distorcer */
  display: block;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 992px) {
  .usos-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usos-imagem-box {
    aspect-ratio: 16 / 9;      /* um pouco mais alto em telas médias */
  }
}

@media (max-width: 640px) {
  .usos-section {
    padding: 16px 10px 30px;
  }

  .usos-titulo {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .usos-cards {
    grid-template-columns: 1fr;
  }

  .usos-card {
    padding: 10px 8px 12px;
  }

  .usos-imagem-box {
    aspect-ratio: auto;
  }
}

/* NOVA FAIXA DE LOGOS (CARD BRANCO + BORDA GRADIENTE) */
.faqw-logos {
  position: relative;
  width: 100%;
  margin: 0;                            /* encaixa logo abaixo da faixa escura */
  border-radius: 0 0 20px 20px;         /* segue o raio do .faqw-left */
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}


/* área interna da faixa de logos */
.faqw-logos-inner {
  position: relative;
  padding: 0px 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* trilha que se movimenta */
.faqw-logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: faqwMarquee 24s linear infinite;
  will-change: transform;
}

/* cada logo */
.faqw-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faqw-logo-item img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faqw-logo-item:hover img {
  opacity: 1;
  transform: translateY(-1px) scale(1.03);
}

/* animação contínua dos logos */
@keyframes faqwMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* RESPONSIVO – LOGOS */
@media (max-width: 640px) {
  .faqw-logos {
    border-radius: 0 0 16px 16px;
  }

  .faqw-logos-inner {
    padding: 12px 18px;
  }

  .faqw-logos-track {
    gap: 32px;
    animation-duration: 18s;
  }

  .faqw-logo-item img {
    height: 24px;
    max-width: 120px;
  }
}

/* FAIXA ESCURA COM CTA ACIMA DOS LOGOS */
.faqw-cta-top {
  background:linear-gradient(90deg, #022247, #500002);                    /* fundo escuro, estilo da imagem */
  padding: 20px 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faqw-cta-inner {
  max-width: 520px;
  text-align: center;
}

.faqw-cta-title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.2px;

  /* texto com gradiente */
  background: linear-gradient(90deg, #2f7df5, #8b56ee, #f16662);
  -webkit-background-clip: text;  /* Chrome / Safari */
  background-clip: text;
  color: transparent;             /* essencial para o efeito */
}

@media (max-width: 640px) {
  .faqw-cta-title {
    font-size: 20px;
  }
}

.faqw-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  color: #ffffff;
  background: linear-gradient(90deg, #2f7df5, #8b56ee, #f16662);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.faqw-cta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

@media (max-width: 640px) {
  .faqw-cta-top {
    padding: 18px 12px 20px;
  }

  .faqw-cta-title {
    font-size: 17px;
  }

  .faqw-cta-btn {
    width: 100%;
    max-width: 260px;
    font-size: 14px;
  }
}


/* =========================
   RODAPÉ VIPBAND
========================= */

/* RODAPÉ VIPBAND */

/* Fundo geral do rodapé */
.vip-footer {
  background: #050816;
  color: #e5e7eb;
  padding: 32px 16px 18px;
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
}

/* topo do rodapé (colunas) */
.vip-footer-top {
  max-width: 1220px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* colunas padrão */
.vip-footer-col,
.vip-footer-news {
  font-size: 13px;
  text-align: center;  /* centraliza o conteúdo dentro da coluna */
}

/* títulos das colunas */
.vip-footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 10px;
}

/* listas */
.vip-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vip-footer-col li {
  margin-bottom: 6px;
}

.vip-footer-col a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 13px;
}

.vip-footer-col a:hover {
  color: #60a5fa;
}

/* redes sociais */
.vip-footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.vip-footer-social-link {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #4b5563;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #e5e7eb;
  text-decoration: none;
}

.vip-footer-social-link:hover {
  border-color: #60a5fa;
  color: #60a5fa;
}


/* linha de baixo (logo + texto) */
.vip-footer-bottom {
  max-width: 1100px;
  margin: 16px auto 0;
  padding-top: 12px;
  border-top: 1px solid #1f2933;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: #6b7280;
}

.vip-footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vip-footer-logo-img {
  height: 28px;
  width: auto;
}

/* texto de copyright */
.vip-footer-copy {
  text-align: right;

}

@media (max-width: 768px) {
  .vip-footer-brand {
    margin: 0 auto;       /* joga o bloco pro centro */
    justify-content: center;
  }
}
/* -------------------------- */
/* RESPONSIVO - CELULAR       */
/* -------------------------- */

@media (max-width: 768px) {
  .vip-footer {
    padding: 24px 16px 14px;
  }

  .vip-footer-top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0px;  /* espaço horizontal entre as colunas */
  row-gap: 10px;    /* espaço vertical (se precisar quebrar linha) */
}


  /* bottom: empilha logo e texto, mas mantém o texto à direita */
  .vip-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .vip-footer-copy {
    width: 100%;
    text-align: center; /* força o copyright encostado à direita */
  }
}


/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body.vip-body {
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
  background: #f3f4f6;
  color: #111827;
}

/* -------------------------- */
/* FAQ PAGE                   */
/* -------------------------- */

/* Container geral da página FAQ */
.faq-page {
  width: 100%;             /* largura parecida com o mock de celular */
  margin: 0 auto;
  background: #ffffff;
  min-height: calc(100vh - 220px); /* pra empurrar até o rodapé */
  border-radius: 0 0 18px 18px;    /* cantos levemente arredondados embaixo */
  overflow: hidden;
}

/* Faixa superior com degradê (igual à imagem) */
.faq-top-bar {
  background: linear-gradient(90deg, #2f7df5, #8b56ee, #f16662);
  padding: 22px 18px 20px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.35);
}

.faq-top-title {
  margin: -4px 0px 0px;
  font-size: 54px;
  font-weight: 800;
}

.faq-top-subtitle {
  margin: 4px 0 0;
  font-size: 20px;
  opacity: 1;
}

/* Conteúdo principal da FAQ */
.faq-main {
  padding: 14px 0px 0px;
}

.faq-wrap {
  margin-top: 6px;
}

/* Lista de cards ocupando quase toda a largura */
.faq-lista {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Card de cada FAQ */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  position: relative;
  overflow: hidden;
}

/* Barrinha colorida na lateral esquerda */
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f7df5, #8b56ee, #f16662);
}

/* Botão da pergunta */
.faq-pergunta {
  width: 100%;
  border: none;
  background: transparent;
  padding: 14px 16px 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-pergunta-texto {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  text-align: left;
}

/* Ícone + / - no canto direito */
.faq-icone {
  font-size: 20px;
  font-weight: 700;
  color: #9ca3af;
  flex-shrink: 0;
  width: 18px;
  text-align: right;
}

.faq-item.active .faq-icone {
  color: #111827;
}

.faq-item.active .faq-icone::before {
  content: '–';
}

.faq-item:not(.active) .faq-icone::before {
  content: '+';
}

/* Área da resposta */
.faq-resposta {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  padding-bottom: 0;
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-resposta p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Quando ativo, abre a resposta */
.faq-item.active .faq-resposta {
  max-height: 320px;
  padding-bottom: 10px;
}

/* CTA final "Não encontrou sua resposta?" */
.faq-cta {
  margin-top: 18px;
  padding: 14px 18px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2f7df5, #8b56ee, #f16662);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}

.faq-cta-titulo {
  margin: 0 0 8px;
  font-size: 23px;
  font-weight: 700;
}

.faq-cta-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.faq-cta-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

/* WhatsApp */
.faq-cta-btn.whatsapp {
  background: #22c55e;
  color: #ffffff;
}

/* E-mail */
.faq-cta-btn.email {
  background: #ffffff;
  color: #374151;
}

/* =========================
   PAGINA PULSEIRAS
========================= */
.pulseiras-page {
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 14px 36px;
  display: grid;
  gap: 18px;
}

.pulseiras-hero {
  border-radius: 20px;
  border: 1px solid #dfe7f5;
  background:
    radial-gradient(420px 150px at 10% 15%, rgba(255,255,255,.2), transparent 65%),
    linear-gradient(120deg, #16345f 0%, #2f7df5 40%, #8b56ee 72%, #f16662 100%);
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  box-shadow: 0 16px 36px rgba(23, 43, 76, 0.2);
}

.pulseiras-hero-content {
  padding: 24px 22px;
}

.pulseiras-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: .9;
}

.pulseiras-hero-content h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 900;
}

.pulseiras-subtitle {
  margin: 10px 0 18px;
  max-width: 580px;
  font-size: 15px;
  line-height: 1.45;
  opacity: .96;
}

.pulseiras-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #12345c;
  background: #ffffff;
  border: 2px solid rgba(255,255,255,.7);
  box-shadow: 0 10px 24px rgba(10, 20, 35, 0.2);
}

.pulseiras-hero-media {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.pulseiras-hero-media img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(15, 30, 50, 0.35));
}

.pulseiras-blocos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pulseiras-card {
  background: #fff;
  border: 1px solid #dfe7f5;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(22, 38, 66, 0.06);
}

.pulseiras-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #1b2e45;
}

.pulseiras-card p {
  margin: 0;
  color: #4c6078;
  line-height: 1.45;
  font-size: 14px;
}

.pulseiras-galeria {
  background: #fff;
  border: 1px solid #dfe7f5;
  border-radius: 18px;
  padding: 18px;
}

.pulseiras-galeria-head h2 {
  margin: 0 0 6px;
  font-size: 28px;
  color: #15283d;
}

.pulseiras-galeria-head p {
  margin: 0 0 14px;
  color: #5f748d;
  font-size: 14px;
}

.pulseiras-galeria-path {
  margin: 0 0 14px;
  font-size: 13px;
  color: #344a63;
}

.pulseiras-galeria-path code {
  background: #eef4ff;
  color: #27405d;
  border: 1px solid #d3def0;
  border-radius: 8px;
  padding: 2px 8px;
}

.pulseiras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pulseiras-foto-slot {
  min-height: 180px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulseiras-foto-slot img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .pulseiras-hero {
    grid-template-columns: 1fr;
  }

  .pulseiras-hero-media {
    min-height: 220px;
    padding-top: 0;
  }

  .pulseiras-blocos {
    grid-template-columns: 1fr;
  }

  .pulseiras-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pulseiras-page {
    padding: 14px 8px 26px;
    gap: 12px;
  }

  .pulseiras-hero {
    border-radius: 16px;
  }

  .pulseiras-hero-content {
    padding: 16px 14px;
  }

  .pulseiras-subtitle {
    font-size: 14px;
  }

  .pulseiras-cta {
    width: 100%;
    min-width: 0;
    height: 46px;
    font-size: 14px;
  }

  .pulseiras-galeria {
    border-radius: 14px;
    padding: 14px;
  }

  .pulseiras-galeria-head h2 {
    font-size: 22px;
  }

  .pulseiras-grid {
    grid-template-columns: 1fr;
  }

  .pulseiras-foto-slot {
    min-height: 130px;
  }

  .pulseiras-foto-slot img {
    min-height: 130px;
  }
}

@media (max-width: 768px) {

  .vip-footer-contact-icon {
    display: block;        /* ícone ocupa a linha de cima */
    margin-bottom: 2px;
  }

  .vip-footer-contact-text {
    display: block;        /* texto vem embaixo */
    white-space: normal;   /* permite quebrar linha se for grande */
  }
}

.whatsapp-fixo {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.whatsapp-fixo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-fixo:hover img {
  transform: scale(1.08);
}

.whatsapp-fixo-texto {
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .whatsapp-fixo {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-fixo img {
    width: 52px;
    height: 52px;
    padding: 9px;
  }

  .whatsapp-fixo-texto {
    font-size: 12px;
    padding: 7px 9px;
  }
}


