/* ===================================
   STYLE.CSS - Estilos da página principal (otimizado)
   ================================== */

/* Reset básico e configurações globais */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
}

/* Container principal */
.container {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding-top: 0;
  padding-bottom: 64px;
}

/* Linhas separadoras */
.linha-fina {
  width: 100%;
  height: 1px;
  background: #ededed;
  border: none;
  margin: 0;
}

.linha-grossa-loja {
  width: 100%;
  height: 6px;
  background: #ededed;
  border: none;
  margin: 0;
}

/* Badge indicado */
.indicado {
  display: inline-block;
  background: #ee4d2d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  padding: 1px 5px;
  margin-right: 6px;
  line-height: 1.1;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* Ícones */
.icon-caminhao img, .icon-selo img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.icon-caminhao {
  display: flex;
  align-items: center;
  margin-right: 6px;
}

.icon-selo {
  display: flex;
  align-items: center;
  margin-right: 6px;
}

.icon-seta {
  color: #b0b0b0;
  font-size: 22px;
  margin-left: 6px;
}

.icon-like {
  width: 18px;
  height: 18px;
  margin-right: 2px;
}

/* Header da página */
.header {
  position: relative;
  width: 100%;
}

/* Barra de oferta */
.oferta-bar {
  display: flex;
  align-items: center;
  background: #ea6511;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  height: 32px;
  padding: 0 8px;
  gap: 4px;
}

.oferta-txt2 {
  font-size: 13px;
  margin-left: auto;
  margin-right: 4px;
  font-weight: 500;
  vertical-align: middle;
  display: flex;
  align-items: center;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.5px;
}

.timer-box {
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
  min-width: 20px;
  padding: 1px 6px;
  margin-left: 2px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  box-sizing: border-box;
}

.oferta-img-bar {
  height: 18px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* Seção de preços */
.novo-preco-section {
  background: #fff6f2;
  padding: 20px 12px 12px 12px;
  margin-bottom: 8px;
}

.preco-row {
  display: flex;
  justify-content: space-between;
  align-items: center !important;
  margin-bottom: 2px;
}

.preco-col-esq {
  display: flex;
  align-items: center;
  gap: 6px;
}

.preco-col-dir {
  display: flex;
  align-items: center !important;
}

.preco-atual {
  color: #EE4D2D !important;
  font-size: 22px;
  font-weight: 700;
  margin-right: 1px;
}

.preco-valor-cifrao {
  font-size: 0.75em;
  vertical-align: baseline;
  margin-right: 2px;
}

.preco-valor-principal {
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1;
}

.preco-antigo {
  margin-left: 0 !important;
  margin-right: 0 !important;
  color: #b0b0b0;
  text-decoration: line-through;
  font-size: 13px;
}

.desconto {
  margin-left: 0 !important;
  color: #ea6511;
  background: #fff0e5;
  border-radius: 3px;
  padding: 1px 4px;
  font-size: 12px;
  font-weight: 500;
}

.vendidos {
  color: #757575;
  font-size: 12px;
  margin-left: 8px;
  display: flex;
  align-items: center;
}

/* Título do produto */
.novo-titulo-produto {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  padding: 4px 8px 6px 8px;
  background: #fff;
}

/* Frete */
.frete-row {
  display: flex;
  align-items: center;
  padding: 14px 12px 14px 12px;
  background: #fff;
  font-size: 16px;
  gap: 0;
}

.frete-gratis-txt {
  color: #1ba672;
  font-weight: 700;
  margin-right: 6px;
  font-size: 16px;
}

.frete-antigo {
  color: #b0b0b0;
  text-decoration: line-through;
  font-size: 15px;
  margin: 0;
  font-weight: 400;
}

/* Seguros */
.seguros-row {
  display: flex;
  align-items: center;
  padding: 14px 12px 14px 8px;
  background: #fff;
  font-size: 16px;
  gap: 0;
}

.seguros-txt {
  color: #222;
  font-weight: 500;
  font-size: 16px;
  margin-right: 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.seguros-row .icon-seta {
  color: #b0b0b0;
  font-size: 22px;
  display: flex;
  align-items: center;
}

/* Card da loja */
.loja-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 14px 8px 10px 8px;
  gap: 12px;
}

.loja-img-card {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #eee;
}

.loja-info-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.loja-nome-card {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.loja-status {
  font-size: 13px;
  color: #b0b0b0;
  margin-bottom: 2px;
}

.loja-metricas {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}

.loja-metricas.compacto {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 6px;
  font-size: 13px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  height: 20px;
  white-space: nowrap;
}

.loja-metrica {
  font-size: 14px;
  color: #ee4d2d !important;
  font-weight: 500;
  margin-right: 0;
}

.loja-metrica span {
  color: #222 !important;
  font-weight: 400;
  margin-left: 2px;
  font-size: 14px;
}

/* Seção de descrição */
.descricao-section {
  background: #fff;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  padding: 0 0 18px 0;
  margin: 0;
}

.descricao-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px 16px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  border-bottom: 1px solid #ededed;
}

.descricao-especificacao {
  font-size: 17px;
  font-weight: 700;
  color: #222;
}

.descricao-bloco {
  padding: 18px 16px 0 16px;
}

.descricao-titulo {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.descricao-produto {
  font-size: 16px;
  color: #222;
  font-weight: 400;
  margin-bottom: 8px;
}

.ver-mais-btn {
  background: none;
  border: none;
  color: #ee4d2d;
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 0 auto;
  padding: 2px 0;
  cursor: pointer;
  transition: color 0.2s;
  letter-spacing: 0;
  line-height: 1.1;
}

.seta-baixo {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  line-height: 1;
  background: none;
  padding: 0;
  width: 20px;
  height: 20px;
}

.seta-cima {
  transform: rotate(180deg);
  transition: transform 0.2s;
}

/* Seção de avaliações */
.avaliacoes-section {
  background: #fff;
  padding: 0 0 24px 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.avaliacoes-header {
  padding: 18px 16px 0 16px;
}

.avaliacoes-titulo {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  display: block;
  margin-bottom: 6px;
}

.avaliacoes-nota {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.estrelas {
  display: flex;
  align-items: center;
  gap: 1px;
}

.estrela {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.nota {
  color: #ee4d2d;
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
}

.barra {
  color: #757575;
  font-size: 16px;
  margin-left: 1px;
}

.total {
  color: #b0b0b0;
  font-size: 15px;
  margin-left: 6px;
}

.avaliacoes-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  background: #f5f5f5;
  color: #222;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #ededed;
  display: flex;
  align-items: center;
  gap: 2px;
}

.tag-num {
  color: #b0b0b0;
  font-size: 15px;
  margin-left: 2px;
}

.avaliacao-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 16px 0 16px;
  border-top: 1px solid #ededed;
}

.avaliacao-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #f5f5f5;
  flex-shrink: 0;
}

.avaliacao-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.avaliacao-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.avaliacao-nome {
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.avaliacao-util {
  color: #b0b0b0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.avaliacao-estrelas {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 2px;
}

.avaliacao-texto {
  font-size: 16px;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.5;
}

.avaliacao-midias {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.midia-thumb {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ededed;
  background: #fafafa;
}

.avaliacao-data {
  color: #b0b0b0;
  font-size: 14px;
  margin-top: 2px;
}

/* Botão de compra */
.comprar-container {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
  padding: 12px 0 12px 0;
  z-index: 200;
  margin: 0;
  display: flex;
  justify-content: center;
}

.comprar-btn {
  width: 100%;
  max-width: 100vw;
  background: #de6240;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  height: 48px;
  text-align: center;
  cursor: pointer;
  font-family: 'Roboto', Arial, sans-serif;
  transition: background 0.2s;
  margin: 0;
  box-shadow: none;
}

.comprar-btn:active {
  background: #c94e2e;
}

/* Container do carrossel */
.carousel-container {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
  display: block;
  line-height: 0;
}

.carousel {
  width: 100%;
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.carousel-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  background: #fff;
  vertical-align: top;
  line-height: 0;
}

.carousel-indicator {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #fff;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  border-radius: 18px;
  border: 1.5px solid #ddd;
  padding: 6px 12px;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  line-height: 1;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 22px;
  color: #ee4d2d;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: background 0.2s;
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

.carousel-arrow:active {
  background: #fff3ee;
}

/* Modal de seguro */
.modal-seguro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.18);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;
}

.modal-seguro-content {
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.13);
  max-width: 480px;
  width: 100vw;
  padding: 32px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-seguro-titulo {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  text-align: left;
  margin-bottom: 8px;
  width: 100%;
}

.modal-seguro-bloco-linha {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 4px 0;
  width: 100%;
}

.modal-seguro-icon-inline img {
  width: 26px;
  height: 26px;
  display: block;
}

.modal-seguro-titulo2-inline {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  display: block;
  margin-bottom: 0;
}

.modal-seguro-texto-inline {
  font-size: 13px;
  color: #757575;
  margin: 2px 0 8px 0;
  width: 100%;
  text-align: left;
  line-height: 1.25;
}

.modal-seguro-btn {
  width: 100%;
  background: #ee4d2d;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0;
  line-height: 1;
}

.modal-seguro-btn:active {
  background: #e64526;
}

/* Modal de especificação */
.modal-especificacao {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.18);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;
}

.modal-especificacao-content {
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.13);
  max-width: 480px;
  width: 100vw;
  padding: 8px 18px 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-especificacao-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
}

.modal-especificacao-titulo {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  text-align: center;
  flex: 1;
}

.modal-especificacao-tabela {
  width: 100%;
  margin: 18px 0 18px 0;
}

.modal-especificacao-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #757575;
  font-weight: 400;
  padding: 7px 0;
  border-bottom: none;
}

.modal-especificacao-row span:first-child {
  color: #757575;
  font-weight: 400;
  min-width: 120px;
}

.modal-especificacao-row span:last-child {
  color: #222;
  font-weight: 500;
  text-align: right;
}

.modal-especificacao-btn {
  width: 100%;
  background: #ee4d2d;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0;
  line-height: 1;
}

.modal-especificacao-btn:active {
  background: #e64526;
}

/* Header Shopee fixo */
#headerShopee {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 44px;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 1px 0 #ededed;
  align-items: center;
  justify-content: center;
  padding: 0 0px;
  gap: 0;
  transition: all 0.2s;
  flex-direction: row;
}

.header-shopee-nav-item {
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#headerVoltar {
  height: 24px;
  width: 24px;
  cursor: pointer;
  display: block;
}

.header-shopee-middle {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

#headerTitulo {
  display: block;
  text-align: left;
  font-size: 1.1em;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
  margin-left: 4px;
}

.header-shopee-options {
  height: 20px;
  width: 20px;
  cursor: pointer;
  display: block;
}

/* Estilos customizados */
.modal-seguro-content-custom {
  padding: 14px 16px calc(10px + env(safe-area-inset-bottom, 0)) 16px;
}

.modal-seguro-titulo-custom {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  margin: 4px 0 10px 0;
  padding-left: 2px;
}

.linha-fina-custom {
  margin-bottom: 0;
}

.modal-seguro-btn-custom {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.container-custom {
  margin-top: 0;
  padding-top: 0;
}

.carousel-container-custom {
  margin-top: 0;
  padding-top: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
}

.carousel-custom {
  width: 100%;
  height: auto;
  display: block;
  line-height: 0;
}

.carousel-img-active {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: top;
  line-height: 0;
}

.carousel-img-hidden {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: top;
  line-height: 0;
}

.depoimento-video-thumb {
  background-image: url('../images/bg-thumb-shopee.webp');
  position: relative;
  cursor: pointer;
}

.depoimento1-thumb, .depoimento2-thumb, .depoimento3-thumb, .depoimento4-thumb, .depoimento5-thumb, .depoimento6-thumb {
  /* Placeholder para classes específicas dos depoimentos */
}

.depoimento-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.0);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.depoimento-play-icon {
  width: 44px;
  height: 44px;
}

.comprar-container-custom {
  width: 100vw;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0)) 0;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  z-index: 1000;
}

.comprar-btn-custom {
  width: 94vw;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  box-sizing: border-box;
  border-radius: 8px;
  background: #ff5722;
  color: #fff;
  border: none;
}

.modal-especificacao-content-custom {
  padding: 8px 18px calc(12px + env(safe-area-inset-bottom, 0)) 18px;
}

.modal-especificacao-header-custom {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.modal-especificacao-titulo-custom {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin: 4px 0 10px 0;
}

.modal-especificacao-btn-custom {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Modal depoimento */
#depoimento-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.80);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#depoimento-modal-content {
  max-width: 100vw;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  background: transparent;
}

#depoimento-carousel {
  width: 100vw;
  max-width: 100vw;
  max-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: pan-y;
  background: transparent;
}

#depoimento-pontos {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 18px 0 0 0;
}

/* Estilos Plyr customizados */
.plyr--video {
  background: transparent !important;
  border-radius: 16px !important;
}

.plyr__video-wrapper {
  background: transparent !important;
  border-radius: 16px !important;
}

/* Media Query para dispositivos móveis */
@media (max-width: 480px) {
  .container {
    padding-top: 0;
    max-width: 100vw;
    border-radius: 0;
    box-shadow: none;
    padding-bottom: 64px;
  }
  
  .oferta-bar, .novo-preco-section, .novo-titulo-produto, .frete-row {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .loja-card {
    padding: 14px 8px 10px 8px;
    gap: 10px;
  }
  
  .loja-img-card {
    width: 48px;
    height: 48px;
  }
  
  .loja-nome-card {
    font-size: 16px;
  }
  
  .loja-metricas.compacto {
    gap: 8px;
    font-size: 12px;
    height: 18px;
  }
  
  .loja-metrica {
    font-size: 12px;
  }
  
  .loja-metrica span {
    font-size: 12px;
  }
  
  .descricao-section {
    padding: 0 0 14px 0;
  }
  
  .descricao-top {
    padding: 14px 10px 10px 10px;
    font-size: 16px;
  }
  
  .descricao-bloco {
    padding: 14px 10px 0 10px;
  }
  
  .descricao-titulo {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .descricao-produto {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .ver-mais-btn {
    font-size: 15px;
    margin-top: 12px;
  }
  
  .avaliacoes-header {
    padding: 14px 8px 0 8px;
  }
  
  .avaliacoes-titulo {
    font-size: 17px;
  }
  
  .tag {
    font-size: 14px;
    padding: 6px 10px;
  }
  
  .avaliacao-card {
    gap: 8px;
    padding: 16px 8px 0 8px;
  }
  
  .avaliacao-avatar {
    width: 36px;
    height: 36px;
  }
  
  .avaliacao-nome {
    font-size: 14px;
  }
  
  .avaliacao-util {
    font-size: 13px;
  }
  
  .avaliacao-texto {
    font-size: 14px;
  }
  
  .midia-thumb {
    width: 70px;
    height: 70px;
  }
  
  .avaliacao-data {
    font-size: 12px;
  }
  
  .carousel {
    height: 380px;
  }
  
  .carousel-img {
    height: 380px;
  }
  
  .carousel-indicator {
    font-size: 13px;
    padding: 4px 10px;
    bottom: 12px;
    right: 12px;
    border-radius: 16px;
    font-weight: 500;
  }
  
  .carousel-arrow {
    width: 26px;
    height: 26px;
    font-size: 18px;
  }
} 