/* story */

:root{
  /* Paleta inspirada no story bege */
  --bg-page: #f7f4f0;         /* bege claro de fundo */
  --card: #ffffff;            /* cartões */
  --ink: #1a1a1a;             /* texto principal */
  --muted: #6e6e6e;           /* texto secundário */
  --badge: #e8dfd6;           /* pílula "Avaliações" */
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg-page);
  line-height: 1.6;
}

/* ====== HERO ====== */
.hero{
  position: relative;
  min-height: 100vh;
  background: url("Imagens/tatoo_02.png") center/cover no-repeat;
  display: grid;
  grid-template-rows: auto 1fr;
}

.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 244, 240, 0.7); /* overlay bege suave */
  z-index: 1;
}

.hero > *{
  position: relative;
  z-index: 2;
}

/* ====== SECTION ====== */
.reviews{
  position: relative;
  padding: clamp(24px, 4vw, 64px) 16px;
  display: grid;
  place-items: center;
  background: url("Imagens/tatoo_02.png") center/cover no-repeat;
  min-height: 100vh;
}

.reviews::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 244, 240, 0.8); /* overlay bege suave */
  z-index: 1;
}

.reviews__wrap{
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
}

/* ====== HEADER ====== */
.reviews__header{
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 40px);
}
.reviews__badge{
  display: inline-block;
  background: var(--badge);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .72rem;
  padding: .55em 1.1em;
  border-radius: 999px;
}
.reviews__title{
  margin: 14px 0 6px;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: .02em;
}
.reviews__subtitle{
  margin: 0 auto;
  color: var(--muted);
  max-width: 58ch;
  font-size: clamp(14px, 1.2vw, 18px);
}

/* ====== GRID ====== */
.reviews__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(18px, 2.5vw, 28px);
}
@media (max-width: 960px){
  .reviews__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .reviews__grid{ grid-template-columns: 1fr; }
}

/* ====== CARD ====== */
.review{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.4vw, 28px);
  display: grid;
  gap: 12px;
  position: relative;
}
.review__icon{
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 44px;
  line-height: 1;
  color: #d9d2ca;            /* aspas grandes bem discretas */
  font-weight: 800;
  user-select: none;
  pointer-events: none;
}
.review__text{
  margin: 0;
  color: var(--ink);
  font-size: clamp(14px, 1.2vw, 18px);
  padding-top: 10px;
}
.review__footer{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 6px;
}
.review__author{
  font-style: normal;
  font-weight: 700;
  letter-spacing: .02em;
}

/* ====== CTA ====== */
.reviews__cta{
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 3vw, 30px);
}
.btn{
  display: inline-block;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: .9em 1.4em;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover{
  opacity: .9;
  transform: translateY(-1px);
}