/* ==========================================================================
   Style Sobrancelhas — identidade visual oficial (ver memória
   style-sobrancelhas-brand): terracota + preto-café da logo, dourado
   emprestado da tabela de preços real da empresa.
   ========================================================================== */
:root {
  --color-bg: #fbf6f1;           /* marfim */
  --color-bg-alt: #f0e2d8;       /* blush */
  --color-primary: #c1602a;      /* terracota — da "Style" e do swoosh inferior da logo */
  --color-primary-dark: #a14e21;
  --color-secondary: #211d1b;    /* preto-café — da "Sobrancelhas" e do swoosh superior da logo */
  --color-accent: #c79a45;       /* dourado — das barras "FACIAL"/"CÍLIOS" da tabela de preços */
  --color-accent-deep: #9e7627;  /* dourado escuro — para TEXTO dourado sobre fundos claros (contraste WCAG) */
  --color-primary-darker: #8a431c; /* hover dos botões primários */
  --color-soft: #d9b8a8;         /* rosa-terra — acentos suaves */
  --color-text: #211d1b;
  --color-text-muted: #5c4f49;
  --color-white: #ffffff;

  --font-title: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
  --font-script: "Yellowtail", cursive;

  --max-width: 1140px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(33, 29, 27, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-primary-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

ul {
  list-style: none;
}

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

/* Chips de âncora para pular a categorias na tabela de preços */
.anchor-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.anchor-chips a {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--color-soft);
  background: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.anchor-chips a:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-accent);
}

/* Tagline oficial em script (ecoa a caligrafia da logo) */
.tagline-script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--color-accent-deep);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 243, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(43, 35, 32, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.logo__text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.logo__text em {
  font-style: normal;
  color: var(--color-primary);
}

.nav__list {
  display: flex;
  gap: 28px;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--color-primary-dark);
}

.nav__link.is-active {
  color: var(--color-primary-dark);
  position: relative;
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(193, 96, 42, 0.3);
}

.btn--primary:hover {
  background: var(--color-primary-darker);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
}

.btn--ghost:hover {
  border-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
}

/* ---------- Page hero (páginas internas) ---------- */
.page-hero {
  position: relative;
  padding: 76px 0 56px;
  text-align: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(199, 154, 69, 0.16) 0%, transparent 45%),
    linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  overflow: hidden;
}

.page-hero__breadcrumb {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.page-hero__breadcrumb a {
  color: var(--color-text-muted);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-primary);
}

.page-hero__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  margin-bottom: 14px;
}

.page-hero__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.page-hero .hero__logo-bg {
  width: min(380px, 45vw);
  right: -6%;
}

.page-hero__title em {
  font-style: italic;
  color: var(--color-primary);
}

.page-hero__subtitle {
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(199, 154, 69, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(193, 96, 42, 0.14) 0%, transparent 40%),
    linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  overflow: hidden;
}

.hero__logo-bg {
  position: absolute;
  top: 50%;
  right: -8%;
  width: min(560px, 55vw);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

.hero__inner {
  position: relative;
  max-width: 760px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ---------- Sections (generic) ---------- */
.section {
  padding: 90px 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}

.section__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.cta .section__title::after,
.hero .section__title::after {
  margin-inline: auto;
}

.section__subtitle {
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 40px;
}

/* ---------- Sobre ---------- */
.sobre__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.sobre__highlights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sobre__highlights li {
  padding-left: 26px;
  position: relative;
  color: var(--color-text-muted);
}

.sobre__highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.photo-frame {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Moldura deslocada rosa-terra atrás da foto (clima editorial) */
.sobre__image {
  position: relative;
}

.sobre__image .photo-frame {
  position: relative;
  z-index: 1;
}

.sobre__image::before {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  border: 2px solid var(--color-soft);
  border-radius: var(--radius);
  z-index: 0;
}

/* ---------- Antes / Depois (micropigmentação) ---------- */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.before-after__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.before-after__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.before-after__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 0 10px;
  background: linear-gradient(180deg, transparent, rgba(33, 29, 27, 0.78));
  color: var(--color-white);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---------- Micropigmentação (destaque) ---------- */
.micropigmentacao {
  scroll-margin-top: 96px;
}

.micropigmentacao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.micropigmentacao__text p {
  margin-bottom: 28px;
  color: var(--color-text-muted);
}

/* ---------- Localização ---------- */
.localizacao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.localizacao__info p {
  margin-bottom: 12px;
}

.localizacao__map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- CTA final ---------- */
.cta__inner {
  text-align: center;
  max-width: 620px;
}

.cta__inner p {
  color: var(--color-text-muted);
  margin: 16px 0 32px;
}

.minimap {
  margin: 32px auto 0;
  max-width: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.minimap iframe {
  display: block;
  width: 100%;
  height: 220px;
}

/* ---------- Teasers (home → páginas internas) ---------- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.teaser-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(33, 29, 27, 0.12);
}

.teaser-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.teaser-card:hover .teaser-card__icon {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.teaser-card__icon svg,
.value-card__icon svg {
  width: 22px;
  height: 22px;
}

.teaser-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
}

.teaser-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

.teaser-card__link {
  font-weight: 600;
  color: var(--color-primary-dark);
  font-size: 0.9rem;
}

.teaser-card:hover .teaser-card__link,
.teaser-card__link:hover {
  text-decoration: underline;
}

/* ---------- Tabela de preços (categorizada, faixas douradas) ---------- */
.price-block {
  margin-bottom: 40px;
  scroll-margin-top: 96px;
}

.price-block:last-child {
  margin-bottom: 0;
}

.price-block__category {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 8px 22px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table tr {
  border-bottom: 1px solid var(--color-bg-alt);
}

.price-table tr:last-child {
  border-bottom: none;
}

.price-table td {
  padding: 16px 24px;
}

.price-table td:first-child {
  color: var(--color-text);
  font-weight: 500;
}

.price-table td:last-child {
  text-align: right;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Tabela da micropigmentação tem preços duplos longos — deixa quebrar linha */
.price-table--micro td:last-child {
  white-space: normal;
}

.price-table tbody tr:hover {
  background: rgba(217, 184, 168, 0.18);
}

.price-table tr.price-row--highlight {
  background: var(--color-bg-alt);
}

.price-table tr.price-row--highlight td:first-child::after {
  content: "★ mais pedido";
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.price-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.price-chip {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  margin: 2px 0 2px 6px;
  border: 1.5px solid var(--color-soft);
  color: var(--color-primary-dark);
  background: var(--color-white);
}
.price-chip--destaque {
  background: var(--color-bg-alt);
  border-color: var(--color-accent);
}
.teaser-card__price {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-variant-numeric: tabular-nums;
}
.footer .tagline-script--footer {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin: 4px 0 2px;
}

/* ---------- Cards de valores/diferenciais (Sobre) ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
}

.value-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.value-card__icon svg {
  width: 26px;
  height: 26px;
}

.value-card h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* ---------- Citação / callout ---------- */
.quote-block {
  border-left: 3px solid var(--color-accent);
  padding: 4px 0 4px 28px;
  margin: 40px 0;
}

.quote-block p {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-secondary);
}

/* ---------- FAQ (acordeão) ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item__question:hover {
  color: var(--color-primary-dark);
}

.faq-item__question:hover .faq-item__icon {
  background: var(--color-soft);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 24px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.faq-item.is-open .faq-item__answer {
  max-height: 700px;
  padding: 0 24px 22px;
}

/* ---------- WhatsApp e Instagram fixos (sempre visíveis) ---------- */
.social-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-float__btn {
  width: 44px;
  height: 44px;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-float__btn svg {
  width: 20px;
  height: 20px;
}

.social-float__btn:hover {
  transform: scale(1.08);
}

.social-float__btn--whatsapp {
  background: #25d366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.social-float__btn--instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  box-shadow: 0 10px 24px rgba(214, 36, 159, 0.35);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 48px 0;
  text-align: center;
}

.footer .logo__img {
  margin: 0 auto 10px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin: 18px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(251, 246, 241, 0.12);
  border-bottom: 1px solid rgba(251, 246, 241, 0.12);
}

.footer__nav a {
  color: var(--color-bg);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer__nav a:hover {
  color: var(--color-accent);
}

.logo__text--footer {
  color: var(--color-bg);
}

.logo__text--footer em {
  color: var(--color-primary);
}

.footer p {
  color: rgba(251, 246, 241, 0.75);
  font-size: 0.9rem;
  margin-top: 8px;
}

.footer p a {
  color: var(--color-bg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer p a:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 860px) {
  .sobre__inner,
  .micropigmentacao__inner,
  .localizacao__inner {
    grid-template-columns: 1fr;
  }

  .micropigmentacao__image {
    order: -1;
  }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(43, 35, 32, 0.08);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 24px;
  }

  .nav__list li {
    border-bottom: 1px solid rgba(43, 35, 32, 0.06);
  }

  .nav__link {
    display: block;
    padding: 14px 0;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 90px 0 60px;
  }

  .page-hero {
    padding: 56px 0 40px;
  }

  .section {
    padding: 64px 0;
  }

  .price-table td {
    padding: 14px 16px;
    font-size: 0.92rem;
  }

  .quote-block p {
    font-size: 1.1rem;
  }

  /* Espaço extra para os botões flutuantes não cobrirem o rodapé */
  .footer {
    padding-bottom: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
