* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111;
  background: #111;
  overflow-x: hidden;
}

#background {
  position: fixed;
  inset: 0;
  /* mantenha a imagem de fundo, mas evite CSS pesado (sem filter/transform/background-attachment: fixed)
     que pode causar repaints durante o scroll, especialmente em dispositivos móveis */
  background: url("fundo1.png") center top / cover no-repeat;
  background-attachment: scroll;
  z-index: 0;
}

/* sobreposição leve em vez de filter para melhorar a performance de rolagem */
#background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.page { /* contêiner principal da página */
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding: 2rem 1.25rem calc(200px) 1.25rem;
}

.content { /* contêiner do conteúdo do catálogo */
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.catalog-container { /* contêiner do catálogo */
  background: rgba(0, 0, 0, 0.6);
  padding: 0.75rem; /* reduzir padding para aproximar o fundo das bordas no mobile */
  border-radius: 8px;
  color: #111;
  width: 100%;
  max-width: 800px;
  margin: 5 2rem; /* pequeno espaço para que o fundo preto quase toque as laterais no mobile */
}

.catalog-title { /* título do catálogo */
  font-size: 1.5rem;
  font-weight: bold;
  font-family: serif;
  text-align: center;
  margin: 0 0 1rem 0;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.catalog-intro { /* introdução do catálogo */
  font-size: 0.2rem;
  text-align: center;
  margin: 0 0 0rem 0;
  line-height: 1;
  color: #111;
}

.catalog-section { /* seção individual do catálogo */
  margin-bottom: 2.3rem;
}

.section-title { /* título da seção */
  font-size: 0.9rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: serif;
}

.service-list { /* lista de serviços */
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item { /* item individual do serviço */
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px dotted rgba(230, 217, 209, 0.3);
  color: #111;
}

/* Fazer cada linha do catálogo ocupar apenas uma linha em telas estreitas */
.service-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-item:last-child {
  border-bottom: none;
}

.service-name {
  flex: 1;
  font-size: 0.6rem;
  color: #111;
  padding-right: 1rem;
}

.service-price {
  font-size: 0.6rem;
  font-weight: 550;
  color: #111;
  white-space: nowrap;
}

.catalog-note {
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(230, 217, 209, 0.3);
  font-size: 0.5rem;
  line-height: 1;
  color: #111;
}

.catalog-note strong {
  color: #111;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  background: #1a1a1a;
  color: #E6D9D1;
  font-size: 0.75rem;
  padding: 0.5rem 0.5rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.footer a {
  color: #E6D9D1;
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  #background {
    background-image: url("fundo-desktop.png");
  }

  .page {
    padding: 3rem 2rem calc(200px) 2rem;
    justify-content: flex-end;
  }

  .catalog-container {
    width: 65%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: 0;
    padding: 3rem;
  }

  .catalog-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-name,
  .service-price {
    font-size: 1rem;
  }
}
/* ===== CATÁLOGO - MODELO DO SITE PRINCIPAL ===== */

.catalog-divider {
  width: 100%;
  height: 2px;
  background: rgba(30, 30, 30, 5);
  margin: -1rem 0 0rem;
}

.catalog-wrapper {
  max-width: 800px;
  margin-left: 0rem;
  margin-right: 0rem;
  padding: 2rem;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.catalog-title {
  font-family: serif;
  text-align: center;
  font-size: 1.rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.catalog-intro {
  text-align: center;
  font-size: 0.7rem;
  color: #2d353c;
  margin-bottom: 2rem;
}

.pricing-layout {
  border: 1.5px solid #1a1a1a;
  border-radius: 8px;
  padding: 1.5rem;
  
}

.pricing-block {
  padding: 1rem 0;
  border-bottom: 2px solid #1a1a1a;
}

.pricing-block:last-child {
  border-bottom: none;
}

.pricing-block-title {
  font-family: serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.pricing-row {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #1a1a1a;
  margin-top: 0.4rem;
}

.pricing-service {
  white-space: nowrap;
}

.pricing-dots {
  flex: 1;
  border-bottom: 1px dotted #1a1a1a;
  margin: 0 8px;
}

.pricing-price {
  white-space: nowrap;
  font-weight: 500;
}

.catalog-note {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: #1a1a1a;
  text-align: center;
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .catalog-wrapper {
    max-width: 120%;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0.2rem;
  }

  .pricing-layout {
    padding: 1.2rem;
  }

  .pricing-row {
    font-size: 0.65rem;
  }

  .pricing-service {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

