/* ==========================================================================
   GiFerraro — Design tokens
   ========================================================================== */
:root {
  --nude: #f5e6da;
  --nude-soft: #faf2ea;
  --rosa: #f0d8ce;
  --rosa-soft: #f7e9e2;
  --bege: #efe2d3;
  --grafite: #2b2b2b;
  --grafite-soft: #3d3937;
  --dourado: #c9a86a;
  --dourado-soft: #e4d2ac;
  --texto: #3a332e;
  --texto-suave: #6b615a;
  --branco: #fffdfb;
  --whatsapp: #25d366;

  --font-titulo: "Cormorant Garamond", "Playfair Display", serif;
  --font-corpo: "Plus Jakarta Sans", "Inter", sans-serif;

  --radius: 14px;
  --radius-lg: 28px;
  --shadow: 0 12px 30px -14px rgba(43, 43, 43, 0.25);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-corpo);
  color: var(--texto);
  background: var(--nude-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--grafite);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus { left: 0; }

h1, h2, h3 {
  font-family: var(--font-titulo);
  color: var(--grafite);
  margin: 0 0 .5em;
  line-height: 1.15;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 600;
  color: var(--dourado);
  margin: 0 0 .75em;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
  margin-bottom: 2.2rem;
}
.section-title--left { text-align: left; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-corpo);
  font-weight: 600;
  font-size: .95rem;
  padding: .85em 1.6em;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn--pill { border-radius: 999px; }
.btn--primary {
  background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-soft) 100%);
  color: var(--grafite);
  box-shadow: var(--shadow);
}
.btn--primary:hover { transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--grafite);
  color: var(--grafite);
  border-radius: 999px;
}
.btn--outline:hover { background: var(--grafite); color: #fff; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* Logo mark (mask-image technique) */
.logo-mark {
  width: 40px;
  height: 40px;
  -webkit-mask-image: url("../assets/logo/logo-gf.png");
  mask-image: url("../assets/logo/logo-gf.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
}
.logo-mark--graphite { background-color: var(--grafite); }
.logo-mark--white { background-color: #fff; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 242, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43,43,43,.06);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 14px 24px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-right: auto;
}
.navbar__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar__logo-text strong { font-family: var(--font-titulo); font-size: 1.05rem; color: var(--grafite); }
.navbar__logo-text small { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--texto-suave); }

.navbar__menu {
  display: flex;
  gap: 1.75rem;
  font-size: .92rem;
  font-weight: 500;
}
.navbar__menu a:hover { color: var(--dourado); }

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar__burger span {
  display: block;
  height: 2px;
  background: var(--grafite);
  border-radius: 2px;
}

.navbar__cta { white-space: nowrap; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(180deg, var(--rosa-soft) 0%, var(--nude-soft) 100%);
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
.hero__text h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}
.hero__text h1 span { color: var(--dourado); }
.hero__crbm {
  font-weight: 600;
  color: var(--texto-suave);
  letter-spacing: .04em;
  margin: 0 0 1rem;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--texto-suave);
  max-width: 46ch;
  margin: 0 0 2rem;
}
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.hero__seal {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--grafite);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 4px solid var(--nude-soft);
  box-shadow: var(--shadow);
}
.hero__seal span {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--dourado);
}
.hero__seal small { font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }

/* ==========================================================================
   Sobre
   ========================================================================== */
.sobre { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.sobre__texto {
  max-width: 70ch;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.08rem;
  color: var(--texto-suave);
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card-destaque {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.card-destaque__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dourado-soft);
  color: var(--grafite);
  font-weight: 700;
  margin-bottom: 1rem;
}
.card-destaque h3 { font-size: 1.2rem; }
.card-destaque p { color: var(--texto-suave); font-size: .95rem; margin: 0; }

/* ==========================================================================
   Método GF FACE
   ========================================================================== */
.metodo { padding: clamp(3rem, 6vw, 5.5rem) 0; background: var(--bege); }
.metodo__inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: start;
}
.metodo__card {
  background: var(--branco);
  border: 1.5px solid var(--dourado-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 3rem);
}
.metodo__texto { color: var(--texto-suave); }
.metodo__slogan {
  font-family: var(--font-titulo);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--grafite);
  border-left: 3px solid var(--dourado);
  padding-left: 1rem;
  margin: 1.5rem 0 2rem;
}
.metodo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.metodo__steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.metodo__steps li { display: flex; gap: .8rem; align-items: flex-start; font-size: .95rem; }
.metodo__steps span {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grafite);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
}
.metodo__beneficios { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.metodo__beneficios li {
  font-size: .95rem;
  padding-left: 1.4rem;
  position: relative;
  color: var(--texto-suave);
}
.metodo__beneficios li::before {
  content: "✓";
  position: absolute; left: 0; color: var(--dourado); font-weight: 700;
}
.metodo__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 2/3;
  object-fit: cover;
}

/* ==========================================================================
   Seletor de procedimentos (estilo lista limpa)
   ========================================================================== */
.seletor { padding: clamp(3rem, 6vw, 5.5rem) 0; text-align: center; }
.seletor__subtitulo { color: var(--texto-suave); margin: -1rem auto 2.5rem; max-width: 50ch; }
.seletor__lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
  text-align: left;
  max-width: 760px;
  margin: 0 auto 2rem;
}
.seletor__item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.2rem;
  background: var(--branco);
  border: 1.5px solid rgba(43,43,43,.08);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
  font-weight: 500;
}
.seletor__item:has(input:checked) {
  background: var(--rosa-soft);
  border-color: var(--dourado);
}
.seletor__item input {
  width: 18px; height: 18px;
  accent-color: var(--dourado);
  flex-shrink: 0;
}
.seletor__aviso {
  color: #b3492f;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Procedimentos / galeria
   ========================================================================== */
.procedimentos { padding: clamp(3rem, 6vw, 5.5rem) 0; background: var(--bege); }
.procedimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.proc-card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.proc-card__fotos {
  background: var(--bege);
}
.proc-card__fotos img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: contain;
}
.proc-card h3 { font-size: 1.15rem; margin: 1.2rem 1.2rem .4rem; }
.proc-card p { font-size: .9rem; color: var(--texto-suave); margin: 0 1.2rem 1.2rem; flex-grow: 1; }
.proc-card__link {
  display: block;
  padding: .9rem 1.2rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--grafite);
  border-top: 1px solid rgba(43,43,43,.08);
}
.proc-card__link:hover { color: var(--dourado); }

/* ==========================================================================
   Feedbacks — balões de chat
   ========================================================================== */
.feedbacks { padding: clamp(3rem, 6vw, 5.5rem) 0; text-align: center; }
.carrossel { max-width: 640px; margin: 0 auto; position: relative; }
.carrossel__viewport { overflow: hidden; }
.carrossel__track {
  display: flex;
  transition: transform .4s ease;
}
.chat-bubble {
  flex: 0 0 100%;
  background: #dcf8c6;
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow);
}
.chat-bubble p { margin: 0 0 .6rem; font-size: 1.02rem; }
.chat-bubble time { font-size: .72rem; color: var(--texto-suave); display: block; text-align: right; }
.carrossel__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.carrossel__nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--grafite);
  background: var(--branco);
  font-size: 1.3rem;
  cursor: pointer;
}
.carrossel__nav button:hover { background: var(--grafite); color: #fff; }

/* ==========================================================================
   Contato
   ========================================================================== */
.contato { padding: clamp(3rem, 6vw, 5.5rem) 0; background: var(--bege); }
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.contato__lista { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.contato__lista strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--dourado); margin-bottom: .2rem; }
.contato__lista a, .contato__lista span { font-size: 1.05rem; }
.contato__mapa iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ==========================================================================
   Rodapé
   ========================================================================== */
.rodape { background: var(--grafite); color: #fff; padding: 3rem 0 0; }
.rodape__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.rodape__marca { display: flex; align-items: center; gap: .8rem; }
.rodape__marca strong { display: block; font-family: var(--font-titulo); font-size: 1.1rem; }
.rodape__marca small { color: rgba(255,255,255,.6); font-size: .78rem; }
.rodape__links { display: flex; gap: 1.4rem; font-size: .9rem; }
.rodape__links a:hover { color: var(--dourado); }
.rodape__social { display: flex; gap: 1.2rem; font-size: .9rem; }
.rodape__social a:hover { color: var(--dourado); }
.rodape__legal {
  padding: 1.5rem 24px 2rem;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.5rem;
}

/* ==========================================================================
   Botão flutuante WhatsApp
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(37,211,102,.6);
  z-index: 90;
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--grafite);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem;
  box-shadow: var(--shadow);
  z-index: 95;
}
.cookie-banner p { margin: 0; font-size: .85rem; flex: 1 1 220px; color: rgba(255,255,255,.85); }
.cookie-banner .btn--primary { padding: .6em 1.3em; font-size: .85rem; }
.cookie-banner[hidden] { display: none; }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 900px) {
  .navbar__menu { display: none; }
  .navbar__burger { display: flex; }
  .navbar__inner { justify-content: space-between; }
  .navbar__cta { display: none; }

  .navbar.is-open .navbar__menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--nude-soft);
    padding: 1.5rem 24px;
    gap: 1rem;
    border-bottom: 1px solid rgba(43,43,43,.08);
  }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 340px; margin: 0 auto; }

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

  .metodo__inner { grid-template-columns: 1fr; }
  .metodo__media { display: none; }
  .metodo__grid { grid-template-columns: 1fr; }

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

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

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

@media (max-width: 600px) {
  .procedimentos__grid { grid-template-columns: 1fr; }
  .rodape__inner { flex-direction: column; align-items: flex-start; }
}
