:root {
  --bg: #050505;
  --bg-soft: #0b0707;
  --panel: rgba(16, 10, 10, 0.78);
  --panel-strong: rgba(28, 12, 12, 0.88);
  --red: #ff1616;
  --red-deep: #7c070b;
  --gold: #e7c27b;
  --cream: #fff3df;
  --muted: #cdbfb7;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
  --radius: 16px;
  --font-titulo: "Cormorant Garamond", Georgia, serif;
  --font-texto: "DM Sans", system-ui, sans-serif;
  --font-display: var(--font-titulo);
  --font-body: var(--font-texto);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 22, 22, .2), transparent 30rem),
    radial-gradient(circle at 86% 18%, rgba(231, 194, 123, .1), transparent 28rem),
    linear-gradient(180deg, #020202, #0b0505 45%, #020202);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 12%, rgba(255,22,22,.12), transparent 30rem);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10001;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--bg);
  border-radius: 999px;
  padding: .7rem 1rem;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(100% - 2rem, 1180px); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  background: rgba(4, 4, 4, .72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(3,3,3,.96); box-shadow: 0 12px 34px rgba(0,0,0,.42); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: min-height .25s ease; }
.site-header.is-scrolled .header-inner { min-height: 62px; }
.logo {
  width: 174px;
  height: 58px;
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  transition: width .25s ease, height .25s ease;
}
.logo img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 174px;
  height: 174px;
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 18px rgba(255,22,22,.24));
  transition: width .25s ease, height .25s ease;
}
.site-header.is-scrolled .logo { width: 130px; height: 44px; }
.site-header.is-scrolled .logo img { width: 130px; height: 130px; }

.main-nav { display: none; align-items: center; gap: .35rem; }
.main-nav a, .btn, .label, .eyebrow, .small-text {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
}
.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .55rem .9rem;
  color: rgba(255,243,223,.72);
  font-weight: 500;
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover, .main-nav a.is-active { color: white; background: rgba(255,22,22,.13); }
.nav-toggle {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  color: var(--cream);
}
.nav-toggle span { width: 22px; height: 2px; background: currentColor; }
.header-cta { display: none; }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .9rem 1.35rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
  transition: transform .7s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateX(120%) skewX(-18deg); }
.btn-primary { background: linear-gradient(135deg, var(--red), #a90f14); color: white; box-shadow: 0 18px 50px rgba(255,22,22,.26); }
.btn-secondary { border-color: rgba(231,194,123,.46); color: var(--cream); background: rgba(255,255,255,.035); }

.hero, .page-hero {
  min-height: 92svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.page-hero { min-height: 62svh; align-items: end; }
.hero-media, .page-hero-media, .hero-overlay, .page-hero-media::after { position: absolute; inset: 0; }
.hero-media img, .page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.08);
}
.hero-overlay, .page-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(3,3,3,.96), rgba(3,3,3,.72) 46%, rgba(3,3,3,.32)),
    linear-gradient(0deg, rgba(3,3,3,.96), transparent 56%);
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,194,123,.55), transparent);
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: 2rem; max-width: 780px; }
.hero-content, .page-hero-content { position: relative; z-index: 1; max-width: 780px; }
.eyebrow { margin: 0 0 1rem; color: var(--gold); font-weight: 600; }
h1, h2, h3, .logo-text, .hero-title {
  margin: 0;
  font-family: var(--font-body);
  letter-spacing: .02em;
  color: var(--cream);
}
h1 {
  max-width: 890px;
  font-family: var(--font-body);
  font-size: clamp(2.35rem, 4.6vw, 4.65rem);
  line-height: 1.08;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -.02em;
}
h2 {
  font-size: clamp(2.1rem, 3.15vw, 3.45rem);
  line-height: 1.07;
  font-weight: 600;
}
h3 {
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.12;
  font-weight: 600;
}
p {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .02em;
}
p { margin: 0; color: rgba(255,243,223,.78); font-size: 1rem; line-height: 1.78; }
.hero-copy, .page-hero-content p:not(.eyebrow) { max-width: 680px; margin-top: 1.25rem; font-size: clamp(1.02rem, 1.7vw, 1.22rem); color: rgba(255,243,223,.84); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-note { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.4rem; }
.hero-note span {
  border: 1px solid rgba(231,194,123,.32);
  border-radius: 999px;
  padding: .45rem .75rem;
  color: rgba(255,243,223,.8);
  background: rgba(0,0,0,.32);
  font-size: .78rem;
  font-weight: 400;
}

.section { padding: clamp(4.5rem, 7vw, 6.5rem) 0; position: relative; }
.section-muted { background: linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.01)); }
.section-red { background: linear-gradient(135deg, rgba(88,7,13,.8), rgba(5,5,5,.96)); }
.section-head { max-width: 760px; margin-bottom: 2.5rem; }
.section-head p { margin-top: 1rem; }
.split { display: grid; gap: clamp(2rem, 4vw, 3rem); align-items: center; }
.copy { max-width: 720px; }
.copy p + p { margin-top: 1rem; }
.highlight-row { display: grid; gap: .8rem; margin-top: 2rem; }
.highlight {
  padding: 1rem;
  border-left: 1px solid rgba(231,194,123,.45);
  background: linear-gradient(90deg, rgba(255,22,22,.08), transparent);
}
.highlight strong { display: block; color: var(--cream); font-family: var(--font-display); font-size: 1.45rem; font-weight: 400; }

.visual-grid { display: grid; gap: 1rem; }
.model-grid { display: grid; gap: 1rem; }
.visual-card, .service-card, .testimonial-card, .contact-card, .history-card, .map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.016));
  box-shadow: 0 14px 38px rgba(0,0,0,.18);
  overflow: hidden;
  position: relative;
}
.visual-card::before, .service-card::before, .testimonial-card::before, .contact-card::before, .history-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(231,194,123,.14), transparent 42%, rgba(255,22,22,.08));
  opacity: 0;
  transition: opacity .2s ease;
}
.visual-card:hover::before, .service-card:hover::before, .testimonial-card:hover::before, .contact-card:hover::before, .history-card:hover::before { opacity: 1; }
.visual-card { min-height: 360px; }
.model-grid .visual-card { min-height: 420px; aspect-ratio: 2 / 3; }
.visual-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.visual-card.portrait-card img { object-position: center top; }
.visual-card:hover img { transform: scale(1.025); }
.visual-card.large { min-height: 560px; }
.visual-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--cream);
}
.visual-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.78), transparent 48%); }

.service-grid, .testimonial-grid, .hours-grid { display: grid; gap: 1rem; }
.service-card, .testimonial-card, .contact-card, .history-card { padding: clamp(1.15rem, 2vw, 1.6rem); transition: border-color .2s ease, background .2s ease; }
.service-card:hover, .testimonial-card:hover, .contact-card:hover, .history-card:hover { border-color: rgba(231,194,123,.35); background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); }
.service-card p, .testimonial-card p { margin-top: .75rem; }
.stars { color: var(--gold); letter-spacing: .18em; font-size: .78rem; margin-bottom: .8rem; opacity: .85; }
blockquote { margin: 0 0 1rem; font-family: var(--font-display); color: rgba(255,243,223,.88); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.18; }
cite { color: var(--gold); font-style: normal; font-size: .88rem; }

.final-cta { text-align: center; padding: clamp(4.5rem, 7vw, 6.5rem) 0; background: radial-gradient(circle at 50% 0%, rgba(255,22,22,.14), transparent 34rem); }
.final-cta p { max-width: 620px; margin: 1rem auto 1.8rem; }

.hours-grid { margin-top: 1.5rem; }
.hour-item { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.hour-item strong { color: var(--cream); font-weight: 500; }
.hour-item span { color: var(--gold); }
.contact-form label { display: block; margin: .8rem 0 .3rem; color: rgba(255,243,223,.72); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0,0,0,.36);
  color: var(--cream);
  padding: .9rem;
  outline: 0;
}
.contact-form button { width: 100%; margin-top: 1rem; }
.map-card { min-height: 400px; }
.map-card iframe { width: 100%; min-height: 400px; border: 0; display: block; filter: grayscale(.15) contrast(1.04); }

.site-footer {
  padding: clamp(3.5rem, 6vw, 5rem) 0 1.25rem;
  border-top: 1px solid rgba(231,194,123,.16);
  background:
    radial-gradient(circle at 18% 0%, rgba(255,22,22,.13), transparent 28rem),
    linear-gradient(180deg, rgba(12,5,5,.98), #020202 58%, #000);
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, .75fr));
  gap: clamp(1.6rem, 3vw, 2.8rem);
  align-items: start;
}
.footer-brand h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 400;
  color: var(--cream);
}
.footer-brand p {
  max-width: 420px;
  margin: .7rem 0 0;
  color: rgba(255,243,223,.72);
}
.footer-col {
  display: grid;
  gap: .58rem;
  align-content: start;
}
.footer-col h3 {
  margin: 0 0 .45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
}
.footer-col a,
.footer-col p {
  margin: 0;
  color: rgba(255,243,223,.7);
  font-size: .95rem;
  line-height: 1.6;
}
.footer-col a:hover {
  color: #fff;
}
.footer-redes {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.25rem;
}
.footer-redes a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(231,194,123,.2);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255,22,22,.045);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}
.footer-redes a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,22,22,.5);
  color: #fff;
  background: rgba(255,22,22,.09);
}
.footer-redes svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.footer-redes svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.footer-redes img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.footer-redes .footer-whatsapp {
  color: #fff;
  background: transparent;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  margin-top: clamp(2rem, 4vw, 3.25rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,243,223,.55);
  font-size: .85rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 88px;
  height: 88px;
  display: block;
  background: transparent;
  box-shadow: none;
  animation: whatsapp-breathe 3.8s ease-in-out infinite;
  transition: transform .2s ease;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 22%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 22, 22, .08);
  box-shadow: 0 0 18px rgba(255, 22, 22, .2);
  animation: whatsapp-halo 3.8s ease-in-out infinite;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(255,22,22,.14));
}
.whatsapp-float:hover { transform: translateY(-1px) scale(1.015); }
@keyframes whatsapp-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.012); }
}
@keyframes whatsapp-halo {
  0%, 100% { opacity: .18; transform: scale(.9); }
  50% { opacity: .45; transform: scale(1.02); }
}

.modal-maioridade { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 1rem; background: rgba(0,0,0,.86); backdrop-filter: blur(12px); }
.modal-box { width: min(100%, 440px); padding: 2rem; border: 1px solid rgba(231,194,123,.28); border-radius: 18px; background: linear-gradient(145deg, #120909, #050505); text-align: center; box-shadow: var(--shadow); }
.modal-box > img,
.modal-kiss { display: none !important; }
.logo-modal { color: var(--red); font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; letter-spacing: .08em; }
.modal-botoes { display: grid; gap: .75rem; margin-top: 1.3rem; }
.btn-sim, .btn-nao { min-height: 48px; border-radius: 999px; border: 0; cursor: pointer; }
.btn-sim { background: var(--red); color: white; }
.btn-nao { background: rgba(255,255,255,.08); color: var(--cream); border: 1px solid var(--line); }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity .42s ease, transform .42s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 899px) {
  .main-nav {
    position: fixed;
    top: 82px;
    left: 1rem;
    right: 1rem;
    display: grid;
    padding: .7rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(5,5,5,.97);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { border-radius: 12px; padding: .9rem; }
}

@media (min-width: 680px) {
  .highlight-row, .service-grid, .testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .visual-grid { grid-template-columns: 1.15fr .85fr; }
  .model-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .visual-card.large { grid-row: span 2; }
  .hours-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2rem; }
}

@media (min-width: 980px) {
  .model-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .model-grid .visual-card { min-height: 360px; }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .hero-grid { grid-template-columns: minmax(0, 780px); }
  .split { grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr); }
  .contact-layout { grid-template-columns: minmax(0, .9fr) minmax(340px, .66fr); display: grid; gap: 2rem; align-items: start; }
  .section-head, .hero-grid, .page-hero-content { margin-left: clamp(0rem, 4vw, 3rem); }
}

@media (max-width: 899px) {
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .logo { width: 138px; height: 48px; }
  .logo img { width: 138px; height: 138px; }
  .site-header.is-scrolled .logo { width: 116px; height: 40px; }
  .site-header.is-scrolled .logo img { width: 116px; height: 116px; }
  .hero-actions .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .whatsapp-float { right: 12px; bottom: 12px; width: 78px; height: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
