/* ==========================================================================
   Que Beleza - Salão de Beleza Asa Sul
   Estilos da página principal
   ========================================================================== */

@font-face {
  font-family: "Unbounded";
  src: url("assets/unbounded-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
}
@font-face {
  font-family: "Inconsolata";
  src: url("assets/inconsolata-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
:root {
  --green: #075f43;
  --green-dark: #034934;
  --green-deep: #013426;
  --orange: #ff6b1a;
  --pink: #f4b6ca;
  --cream: #f4f0e8;
  --white: #fffdf8;
  --ink: #151515;
  --graphite: #4e4e52;
  --line: rgba(255, 253, 248, .24);
  --display: "Unbounded", Arial, sans-serif;
  --mono: "Inconsolata", "Courier New", monospace;
  --page: min(1180px, calc(100vw - 44px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--green);
  font-family: var(--mono);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--pink); color: var(--ink); }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.14;
  letter-spacing: -.045em;
}
p { color: rgba(255, 253, 248, .84); }
.container { width: var(--page); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before { content: "✦"; font-size: 13px; }
.section-title {
  max-width: 900px;
  margin: 22px 0 28px;
  font-size: clamp(38px, 5.1vw, 64px);
  font-weight: 700;
}
.section-intro { max-width: 760px; font-size: clamp(16px, 1.8vw, 20px); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 15px 24px;
  border: 2px solid var(--ink);
  background: var(--orange);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 500;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn:focus-visible, .nav-link:focus-visible, .menu-toggle:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }
.btn-light { background: var(--cream); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--white); box-shadow: 5px 5px 0 var(--white); }
.btn-ghost:hover { box-shadow: 2px 2px 0 var(--white); }
.arrow { font-size: 20px; line-height: 1; }

.topbar {
  padding: 8px 0;
  overflow: hidden;
  background: var(--orange);
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  white-space: nowrap;
}
.ticker { display: flex; width: max-content; animation: ticker 26s linear infinite; }
.ticker span { padding-right: 44px; font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
@keyframes ticker { to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 95, 67, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
}
.brand img { width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; position: relative; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--orange); transition: right .25s ease; }
.nav-link:hover::after { right: 0; }
.nav-cta { padding: 10px 16px; background: var(--cream); color: var(--ink); border: 1px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--white); padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 6px 0; background: currentColor; transition: .2s ease; }

.hero {
  min-height: calc(100vh - 111px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, .94fr);
  background: var(--green);
}
.hero-copy { display: flex; align-items: center; padding: 70px max(44px, calc((100vw - 1180px) / 2)); padding-right: 60px; }
.hero-inner { max-width: 760px; }
.hero h1 { margin: 24px 0 28px; font-size: clamp(48px, 5.2vw, 82px); font-weight: 700; }
.hero h1 span { display: block; color: var(--orange); }
.hero-text { max-width: 690px; font-size: clamp(16px, 1.6vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 38px; }
.hero-photo { position: relative; min-height: 650px; overflow: hidden; border-left: 2px solid var(--ink); }
.hero-photo img { height: 100%; object-fit: cover; object-position: 54% 38%; }
.hero-photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(1, 52, 38, .14), transparent 35%); pointer-events: none; }
.photo-stamp {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.retro-strip { overflow: hidden; padding: 16px 0; background: var(--ink); color: var(--cream); border-block: 2px solid var(--ink); }
.retro-strip-track { display: flex; width: max-content; animation: ticker 34s linear infinite reverse; }
.retro-strip span { padding-right: 48px; font-family: var(--display); font-size: 18px; font-weight: 700; }
.retro-strip b { color: var(--orange); }

.about { background: var(--green-deep); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr); gap: 80px; align-items: center; }
.about-copy p { max-width: 720px; font-size: 18px; }
.about-photo { position: relative; padding: 0 24px 24px 0; }
.about-photo::after { content: ""; position: absolute; inset: 28px 0 0 28px; border: 3px solid var(--orange); z-index: 0; }
.about-photo img { position: relative; z-index: 1; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 50%; border: 2px solid var(--ink); filter: saturate(.92) contrast(1.04); }
.about-note { display: inline-block; margin-top: 26px; padding: 12px 16px; background: var(--pink); color: var(--ink); font-weight: 500; transform: rotate(-1deg); }

.services { background: var(--cream); color: var(--ink); }
.services p { color: rgba(21, 21, 21, .74); }
.services-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .72fr); gap: 72px; align-items: stretch; }
.service-list { display: grid; gap: 0; margin-top: 48px; border-top: 2px solid var(--ink); }
.service-row { display: grid; grid-template-columns: 68px 1fr auto; gap: 24px; align-items: center; padding: 25px 0; border-bottom: 2px solid var(--ink); }
.service-num { font-family: var(--display); font-size: 13px; font-weight: 800; color: var(--orange); }
.service-row h3 { margin: 0 0 6px; font-size: clamp(23px, 2.6vw, 34px); }
.service-row p { margin: 0; font-size: 14px; }
.service-arrow { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--ink); border-radius: 50%; font-size: 20px; transition: .2s ease; }
.service-row:hover .service-arrow { color: var(--cream); background: var(--green); transform: rotate(-35deg); }
.services-photo { position: sticky; top: 110px; align-self: start; height: 760px; overflow: hidden; border: 2px solid var(--ink); background: var(--green); }
.services-photo img { height: 100%; object-fit: cover; object-position: 50% 52%; }
.services-photo-label { position: absolute; left: 20px; bottom: 20px; padding: 10px 14px; background: var(--orange); color: var(--ink); border: 1px solid var(--ink); font-size: 12px; font-weight: 500; }
.service-disclaimer { margin-top: 36px; padding: 20px 24px; border: 1px solid var(--ink); background: #dedbd4; font-size: 13px; }

.davines { background: var(--green); }
.davines-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.1fr); gap: 80px; align-items: center; }
.davines-photo { position: relative; }
.davines-photo img { aspect-ratio: 4 / 3; object-fit: cover; border: 2px solid var(--ink); }
.davines-photo::before { content: "DAVINES •"; position: absolute; left: -28px; top: -30px; z-index: 1; padding: 12px 16px; background: var(--pink); color: var(--ink); border: 2px solid var(--ink); font-weight: 500; transform: rotate(-6deg); }
.treatment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.treatment { padding: 20px; border: 1px solid var(--white); }
.treatment b { display: block; margin-bottom: 8px; color: var(--orange); font-family: var(--display); font-size: 30px; }
.treatment h3 { margin: 0 0 9px; font-size: 19px; }
.treatment p { margin: 0; font-size: 12px; }

.nails { padding: 0; background: var(--green-dark); }
.nails-grid { display: grid; grid-template-columns: minmax(370px, .82fr) minmax(0, 1.18fr); min-height: 900px; }
.nails-photo { overflow: hidden; position: relative; border-right: 2px solid var(--ink); }
.nails-photo img { height: 100%; object-fit: cover; object-position: 50% 55%; }
.nails-copy { display: flex; align-items: center; padding: 95px max(44px, calc((100vw - 1180px) / 2)); padding-left: 70px; }
.nails-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.nail-card { padding: 28px; border: 2px solid var(--pink); position: relative; }
.nail-card:last-child { grid-column: 1 / -1; }
.nail-card h3 { font-size: 26px; margin-bottom: 12px; }
.nail-card p { margin: 0; font-size: 14px; }
.nail-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px; border-radius: 50%; background: var(--ink); color: var(--pink); font-family: var(--display); font-weight: 800; }
.nails-highlight { margin-top: 22px; padding-left: 18px; border-left: 4px solid var(--orange); font-size: 13px; }

.aesthetics { background: var(--graphite); }
.aesthetic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.aesthetic-card { background: var(--green); border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.aesthetic-card img { height: 250px; object-fit: cover; border-bottom: 2px solid var(--ink); }
.aesthetic-card-copy { padding: 26px; }
.aesthetic-card h3 { min-height: 54px; margin-bottom: 12px; font-size: 26px; }
.aesthetic-card p { margin: 0; font-size: 14px; }

.combos { background: var(--cream); color: var(--ink); overflow: hidden; }
.combos p { color: rgba(21, 21, 21, .74); }
.combos::before { content: "COMBINHOS"; position: absolute; right: -40px; top: 38px; color: rgba(7, 95, 67, .07); font-family: var(--display); font-size: clamp(100px, 18vw, 260px); font-weight: 900; letter-spacing: -.08em; }
.combo-layout { display: grid; grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr); gap: 60px; align-items: start; }
.combo-photo { position: relative; margin-top: 30px; }
.combo-photo img { height: 620px; object-fit: cover; object-position: 50% 48%; border: 2px solid var(--ink); }
.combo-photo span { position: absolute; left: -20px; bottom: 24px; padding: 12px 16px; color: var(--ink); background: var(--pink); border: 2px solid var(--ink); font-size: 13px; font-weight: 500; transform: rotate(-3deg); }
.combo-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 42px; }
.combo-card { min-height: 230px; padding: 30px; border: 2px solid var(--ink); background: var(--green); color: var(--white); box-shadow: 6px 6px 0 var(--pink); }
.combo-card:last-child { grid-column: 1 / -1; min-height: 190px; }
.combo-card h3 { font-size: 30px; margin-bottom: 18px; }
.combo-card p { color: rgba(255, 253, 248, .84); margin-bottom: 8px; font-size: 14px; }

.why { background: var(--green); }
.why-list { margin-top: 58px; border-top: 1px solid var(--line); }
.why-item { display: grid; grid-template-columns: 90px minmax(240px, .62fr) minmax(0, 1.2fr); gap: 30px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.why-icon { display: grid; place-items: center; width: 70px; height: 70px; border: 1px solid var(--white); border-radius: 50%; font-family: var(--display); font-size: 24px; color: var(--orange); }
.why-item h3 { margin: 0; font-size: clamp(23px, 3vw, 36px); }
.why-item p { margin: 0; font-size: 14px; }

.cta { background: var(--graphite); padding: 115px 0; }
.cta h2 { max-width: 1080px; margin-bottom: 46px; font-size: clamp(50px, 7vw, 90px); }
.cta h2 em { color: var(--orange); font-style: normal; }
.cta-panel { display: grid; grid-template-columns: 1fr 1fr; border: 2px solid var(--ink); }
.cta-panel > div { padding: 30px; background: var(--green); }
.cta-panel > div + div { border-left: 2px solid var(--ink); background: var(--green-dark); }
.cta-panel p { margin: 0; font-size: 16px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; }

.location { padding: 0; background: var(--green-deep); }
.location-grid { display: grid; grid-template-columns: minmax(350px, .86fr) minmax(0, 1.14fr); min-height: 670px; }
.location-photo { overflow: hidden; border-right: 2px solid var(--ink); }
.location-photo img { height: 100%; object-fit: cover; object-position: 52% 52%; }
.location-copy { display: flex; align-items: center; padding: 80px max(44px, calc((100vw - 1180px) / 2)); padding-left: 70px; }
.contact-list { display: grid; margin: 36px 0; border-top: 1px solid var(--line); }
.contact-row { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.contact-row span { color: var(--pink); text-transform: uppercase; }
.contact-row a:hover { color: var(--orange); }

.footer { padding: 42px 0; background: var(--ink); }
.footer-grid { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.footer .brand { width: 210px; margin-bottom: 18px; }
.footer p { max-width: 500px; margin: 0; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; font-size: 12px; text-transform: uppercase; }
.footer-links a:hover { color: var(--orange); }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  background: var(--orange);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 12px;
  font-weight: 500;
}
.whatsapp-float:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --page: min(100% - 36px, 760px); }
  .section { padding: 84px 0; }
  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    z-index: 60;
    display: grid;
    gap: 0;
    padding: 20px;
    background: var(--green-deep);
    border-bottom: 2px solid var(--ink);
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: none; }
  .nav-link { padding: 17px 4px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 14px; text-align: center; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 670px; padding: 70px 28px; }
  .hero-photo { min-height: 620px; border-left: 0; border-top: 2px solid var(--ink); }
  .about-grid, .services-layout, .davines-grid, .combo-layout { grid-template-columns: 1fr; }
  .about-grid { gap: 54px; }
  .about-photo { max-width: 560px; }
  .services-photo { position: relative; top: auto; height: 620px; order: -1; }
  .davines-photo { max-width: 650px; }
  .nails-grid, .location-grid { grid-template-columns: 1fr; }
  .nails-photo, .location-photo { min-height: 620px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .nails-copy, .location-copy { padding: 80px max(24px, calc((100vw - 760px) / 2)); }
  .aesthetic-grid { grid-template-columns: 1fr 1fr; }
  .aesthetic-card:last-child { grid-column: 1 / -1; }
  .aesthetic-card:last-child img { height: 330px; }
  .combo-layout { gap: 44px; }
  .combo-photo { max-width: 560px; }
  .why-item { grid-template-columns: 80px 1fr; }
  .why-item p { grid-column: 2; }
}

@media (max-width: 640px) {
  :root { --page: calc(100% - 28px); }
  .section { padding: 70px 0; }
  .topbar { padding: 6px 0; }
  .nav { min-height: 68px; }
  .nav-links { inset: 68px 0 auto; }
  .brand { width: 148px; }
  .hero { min-height: auto; }
  .hero-copy { min-height: 560px; padding: 60px 18px; }
  .hero h1 { font-size: clamp(43px, 12.4vw, 62px); }
  .hero-actions, .cta-actions { display: grid; }
  .btn { width: 100%; }
  .hero-photo { min-height: 520px; }
  .photo-stamp { width: 108px; right: 18px; bottom: 18px; font-size: 11px; }
  .section-title { font-size: clamp(34px, 9.2vw, 47px); }
  .about-copy p { font-size: 16px; }
  .about-photo { padding: 0 14px 14px 0; }
  .services-layout { gap: 42px; }
  .services-photo { height: 520px; }
  .service-row { grid-template-columns: 40px 1fr; gap: 14px; }
  .service-arrow { display: none; }
  .service-row p { font-size: 13px; }
  .treatment-grid, .nails-cards, .aesthetic-grid, .combo-cards { grid-template-columns: 1fr; }
  .treatment { padding: 18px; }
  .nails-photo, .location-photo { min-height: 520px; }
  .nails-copy, .location-copy { padding: 68px 16px; }
  .nail-card:last-child, .aesthetic-card:last-child, .combo-card:last-child { grid-column: auto; }
  .aesthetic-card img, .aesthetic-card:last-child img { height: 240px; }
  .combo-photo img { height: 520px; }
  .combo-photo span { left: 12px; }
  .combo-card, .combo-card:last-child { min-height: auto; }
  .why-item { grid-template-columns: 58px 1fr; gap: 18px; }
  .why-icon { width: 52px; height: 52px; font-size: 18px; }
  .why-item p { grid-column: 1 / -1; padding-left: 76px; }
  .cta h2 { font-size: clamp(42px, 11vw, 62px); }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel > div + div { border-left: 0; border-top: 2px solid var(--ink); }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 12px; }
  .whatsapp-float span { display: none; }
}

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