/* ============================================================
   BARBEARIA DO ANJO — Premium Stylesheet
   Desenvolvido pela Fregale · https://www.fregale.com.br
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --black: #000000;
  --ink-900: #050505;
  --ink-800: #0c0c0c;
  --ink-700: #111111;
  --ink-600: #1a1a1a;
  --ink-500: #2b2b2b;
  --line: rgba(201, 162, 39, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);

  --gold: #c9a227;
  --gold-bright: #d4af37;
  --gold-soft: #e7cf86;
  --gold-grad: linear-gradient(
    135deg,
    #e7cf86 0%,
    #d4af37 38%,
    #c9a227 72%,
    #a07d12 100%
  );

  --white: #ffffff;
  --smoke: #f5f5f5;
  --muted: #b7b3a6;
  --muted-2: #8a877d;

  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: 
  "Plus Jakarta Sans", sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow-soft: 0 18px 50px -22px rgba(0, 0, 0, 0.9);
  --shadow-gold: 0 22px 60px -26px rgba(201, 162, 39, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 96px;
}
body {
  font-family: var(--font-body);
  background: #000000;
  color: var(--smoke);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
}
::selection {
  background: var(--gold);
  color: #000;
}

/* Atmosphere: subtle grain + radial glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
 
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 3;
}
section {
  position: relative;
  z-index: 3;
}
.section {
  padding-block: clamp(72px, 10vw, 140px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.eyebrow::before {
  content: "";
  width: 0px;
  height: 1px;
  background: var(--gold-grad);
}
.eyebrow.center {
  justify-content: center;
}
.eyebrow.center::after {
  content: "";
  width: 0px;
  height: 1px;
  background: var(--gold-grad);
}

.section-head {
  max-width: 720px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
}
.title {
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  margin-block: 18px 22px;
}
.title .accent {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  --bx: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px var(--bx);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    color 0.4s var(--ease);
  will-change: transform;
}
.btn svg {
  width: 19px;
  height: 19px;
  transition: transform 0.5s var(--ease);
}
.btn-gold {
  background: rgba(212, 175, 55, 0.6);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%);
  transition: transform 0.9s var(--ease);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 28px 70px -24px rgba(212, 175, 55, 0.6);
}
.btn-gold:hover::after {
  transform: translateX(130%);
}
.btn-gold:hover svg {
  transform: translateX(4px);
}





.btn-golden {
  background: #0f8001;
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}
.btn-golden::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%);
  transition: transform 0.9s var(--ease);
}
.btn-golden:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 28px 70px -24px rgba(212, 175, 55, 0.6);
}
.btn-golden:hover::after {
  transform: translateX(130%);
}
.btn-golden:hover svg {
  transform: translateX(4px);
}



.btn-ghost {
  border: 1px solid var(--line);
  color: var(--white);
  background: #000000;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -26px rgba(201, 162, 39, 0.5);
}

.btn-ghosten {
  border: 1px solid var(--line);
  color: var(--white);
  background: #033bd3;
  backdrop-filter: blur(6px);
}
.btn-ghosten:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -26px rgba(201, 162, 39, 0.5);
}




.btn-block {
  width: 100%;
}
.btn:active {
  transform: translateY(-1px) scale(0.99);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #000000;
  transition:
    opacity 0.7s var(--ease),
    visibility 0.7s var(--ease);
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
}
.pl-wrap {
  display: grid;
  place-items: center;
  gap: 26px;
}
.pl-logo {
  width: clamp(150px, 36vw, 210px);
  filter: drop-shadow(0 14px 40px rgba(201, 162, 39, 0.28));
  animation: plPulse 2.2s var(--ease) infinite;
}
.pl-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.18);
  border-top-color: var(--gold-bright);
  animation: plSpin 0.9s linear infinite;
}
@keyframes plSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes plPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition:
    background 0.45s var(--ease),
    padding 0.45s var(--ease),
    border-color 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease);
  padding-block: 22px;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  padding-block: 12px;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease-bounce);
}
.brand:hover img {
  transform: rotate(-6deg) scale(1.06);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text b {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.96rem;
  color: var(--white);
}
.brand-text span {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  letter-spacing: 0.02em;
  transition: color 0.35s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  transition: width 0.4s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.4s var(--ease),
    opacity 0.3s var(--ease);
}
.burger span:nth-child(1) {
  top: 17px;
}
.burger span:nth-child(2) {
  top: 22px;
}
.burger span:nth-child(3) {
  top: 27px;
}
.burger.open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 880;
  background: rgba(3, 3, 3, 0.96);
  backdrop-filter: blur(14px);
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.45s var(--ease),
    visibility 0.45s var(--ease);
}
.drawer.open {
  opacity: 1;
  visibility: visible;
}
.drawer a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  padding: 12px;
  transform: translateY(16px);
  opacity: 0;
  transition:
    transform 0.5s var(--ease),
    opacity 0.5s var(--ease),
    color 0.3s var(--ease);
}
.drawer.open a {
  transform: translateY(0);
  opacity: 1;
}
.drawer a:nth-child(1) {
  transition-delay: 0.08s;
}
.drawer a:nth-child(2) {
  transition-delay: 0.14s;
}
.drawer a:nth-child(3) {
  transition-delay: 0.2s;
}
.drawer a:nth-child(4) {
  transition-delay: 0.26s;
}
.drawer a:nth-child(5) {
  transition-delay: 0.32s;
}
.drawer a:nth-child(6) {
  transition-delay: 0.38s;
}
.drawer a:hover {
  color: var(--gold-bright);
}
.drawer .btn {
  margin-top: 22px;
  transition-delay: 0.44s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    #000000;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 3;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #000000;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000000;
}
.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  
}
@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.55);
  }
  70%,
  100% {
    box-shadow: 0 0 0 9px rgba(212, 175, 55, 0);
  }
}
.hero h1 {
  font-size: clamp(2.4rem, 7.2vw, 5.0rem);
  margin-block: 24px 22px;
  letter-spacing: -0.03em;
}
.hero h1 .accent {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.hero p.lead {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  gap: clamp(22px, 4vw, 48px);
  flex-wrap: wrap;
}
.hstat b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
}
.hstat span {
  font-size: 0.78rem;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero visual / brand medallion */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.medallion {

}
.medallion::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate 9s linear infinite;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.medallion img {
  width: 120%;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.6));
}
.hero-orbit {

}
.hero-badge {
  position: absolute;
  bottom: 4%;
  right: -2%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}
.hero-badge .stars {
  color: var(--gold-bright);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.hero-badge b {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
}
.hero-badge small {
  color: var(--muted-2);
  font-size: 0.7rem;
}

/* Marquee strip */
.marquee {
  border-block: 1px solid var(--line-soft);
  padding-block: 18px;
  overflow: hidden;
  background: var(--ink-900);
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-track span::after {
  content: "✦";
  color: var(--gold);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SOBRE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}
.about-portrait {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #141414, #060606);
  aspect-ratio: 4/5;
  display: grid;
  place-items: center;
  ;
}
.about-portrait img {
  width: 100%;
  opacity: 0.96;
}
.about-portrait .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 50% at 50% 30%,
    rgba(201, 162, 39, 0.16),
    transparent 65%
  );
}
.about-portrait .frame-tag {
  position: absolute;
  left: 50% !important;
  bottom: 22px;
  transform: translateX(-50%) !important;

  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--gold-soft);

  text-align: center;
  white-space: nowrap;
}
.about-quote {
  margin-top: 30px;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--white);
  line-height: 1.45;
}
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.value-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.015);
  transition:
    transform 0.5s var(--ease),
    border-color 0.5s var(--ease),
    background 0.5s var(--ease);
}
.value-item:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  background: rgba(201, 162, 39, 0.04);
}
.value-item .ic {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-bright);
}
.value-item .ic svg {
  width: 19px;
  height: 19px;
}
.value-item b {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.value-item span {
  font-size: 0.83rem;
  color: var(--muted-2);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 54px;
}
.svc-card {
  position: relative;
  padding: 30px 28px 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.6),
    rgba(7, 7, 7, 0.6)
  );
  overflow: hidden;
  transition:
    transform 0.55s var(--ease),
    border-color 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 100% at 0% 0%,
    rgba(201, 162, 39, 0.1),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}
.svc-card:hover::before {
  opacity: 1;
}
.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid var(--line);
  color: var(--gold-bright);
  margin-bottom: 20px;
  transition: transform 0.55s var(--ease-bounce);
}
.svc-card:hover .svc-icon {
  transform: rotate(-8deg) scale(1.08);
}
.svc-icon svg {
  width: 27px;
  height: 27px;
}
.svc-card h3 {
  font-size: 1.32rem;
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.svc-price-list {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
}
.svc-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.88rem;
  color: var(--muted);
  padding-bottom: 9px;
  border-bottom: 1px dashed var(--line-soft);
}
.svc-price-list li b {
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 0.95rem;
}
.svc-card .svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  transition:
    gap 0.4s var(--ease),
    color 0.4s var(--ease);
}
.svc-card .svc-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--ease);
}
.svc-card .svc-cta:hover {
  color: var(--gold-bright);
  gap: 13px;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diff {
  background: var(--ink-900);
  border-block: 1px solid var(--line-soft);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.diff-card {
  text-align: center;
  padding: 38px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.012);
  transition:
    transform 0.55s var(--ease),
    border-color 0.55s var(--ease),
    background 0.55s var(--ease);
}
.diff-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.045);
}
.diff-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  background: #884d00af ;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}
.diff-card h3 {
  font-size: 1.2rem;
  margin-bottom: 9px;
}
.diff-card p {
  font-size: 0.86rem;
  color: var(--muted-2);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-top: 52px;
}
.gal-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  cursor: pointer;
  background: #0a0a0a;
}
.gal-item.tall {
  grid-row: span 2;
}
.gal-item.wide {
  grid-column: span 2;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.9s var(--ease),
    filter 0.6s var(--ease);
}
.gal-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}
.gal-item .gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-overlay span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  transform: translateY(10px);
  transition: transform 0.5s var(--ease);
}
.gal-item:hover .gal-overlay span {
  transform: translateY(0);
}
.gal-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.18);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease-bounce);
}
.gal-item:hover .gal-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease);
  padding: 24px;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(900px, 92vw);
  max-height: 84vh;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transform: scale(0.94);
  transition: transform 0.5s var(--ease-bounce);
}
.lightbox.open img {
  transform: scale(1);
}
.lb-close,
.lb-nav {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(20, 20, 20, 0.7);
  display: grid;
  place-items: center;
  color: var(--white);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.lb-close:hover,
.lb-nav:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.08);
}
.lb-close {
  top: 26px;
  right: 26px;
}
.lb-nav.prev {
  left: 3vw;
  top: 50%;
  transform: translateY(-50%);
}
.lb-nav.next {
  right: 3vw;
  top: 50%;
  transform: translateY(-50%);
}
.lb-nav.prev:hover,
.lb-nav.next:hover {
  transform: translateY(-50%) scale(1.08);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi {
  background: var(--ink-900);
  border-block: 1px solid var(--line-soft);
}
.testi-viewport {
  overflow: hidden;
  margin-top: 48px;
}
.testi-track {
  display: flex;
  transition: transform 0.7s var(--ease);
}
.testi-slide {
  min-width: 100%;
  padding: 4px;
}
.testi-card {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.7),
    rgba(8, 8, 8, 0.7)
  );
  box-shadow: var(--shadow-soft);
}
.testi-stars {
  color: var(--gold-bright);
  letter-spacing: 4px;
  font-size: 1.05rem;
  margin-bottom: 22px;
}
.testi-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 26px;
}
.testi-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testi-author b {
  font-family: var(--font-display);
  color: var(--gold-soft);
  letter-spacing: 0.05em;
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--muted-2);
}
.testi-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-500);
  transition:
    width 0.4s var(--ease),
    background 0.4s var(--ease);
}
.testi-dot.active {
  width: 30px;
  border-radius: 6px;
  background: var(--gold-grad);
}

/* ============================================================
   LOCATION
   ============================================================ */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
  margin-top: 48px;
}
.loc-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.loc-row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.012);
  transition:
    border-color 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.loc-row:hover {
  border-color: var(--line);
  transform: translateX(4px);
}
.loc-row .ic {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-bright);
}
.loc-row .ic svg {
  width: 21px;
  height: 21px;
}
.loc-row b {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.96rem;
  margin-bottom: 3px;
}
.loc-row p,
.loc-row a {
  color: var(--muted);
  font-size: 0.9rem;
}
.loc-row a:hover {
  color: var(--gold-bright);
}
.loc-hours {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.loc-hours div {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--muted);
}
.loc-hours div b {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
}
.nav-buttons {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.nav-buttons .btn {
  flex: 1;
  min-width: 150px;
  padding-block: 14px;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.012);
  overflow: hidden;
  transition: border-color 0.4s var(--ease);
}
.faq-item.open {
  border-color: var(--line);
  background: rgba(201, 162, 39, 0.03);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  transition:
    background 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--gold-bright);
  transition:
    transform 0.4s var(--ease),
    background 0.4s var(--ease);
}
.faq-q .plus::before {
  width: 12px;
  height: 2px;
}
.faq-q .plus::after {
  width: 2px;
  height: 12px;
}
.faq-item.open .plus {
  background: var(--gold);
  transform: rotate(135deg);
}
.faq-item.open .plus::before,
.faq-item.open .plus::after {
  background: #000;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a p {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  margin: 48px auto 0;
}
.form-field {
  margin-bottom: 18px;
  position: relative;
}
.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.03);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}
.form-field select option {
  background: #111;
}
.contact-aside {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    170deg,
    rgba(20, 20, 20, 0.7),
    rgba(8, 8, 8, 0.7)
  );
}
.contact-aside h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.contact-aside p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 26px;
}
.contact-aside .loc-row {
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 12px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 950;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 36px -8px rgba(37, 211, 102, 0.55);
  transition:
    transform 0.45s var(--ease-bounce),
    box-shadow 0.45s var(--ease);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.wa-float:hover {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 20px 48px -8px rgba(37, 211, 102, 0.7);
}
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPing 2.2s var(--ease) infinite;
}
@keyframes waPing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.wa-tip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  background: #0c0c0c;
  border: 1px solid var(--line);
  color: var(--white);
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink-900);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(56px, 8vw, 90px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  padding-bottom: 50px;
}
.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.footer-brand p {
  color: var(--muted-2);
  font-size: 0.9rem;
  max-width: 36ch;
}
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.footer-col a,
.footer-col p {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 11px;
  transition:
    color 0.3s var(--ease),
    padding 0.3s var(--ease);
}
.footer-col a:hover {
  color: var(--gold-bright);
  padding-left: 5px;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--muted);
  transition:
    transform 0.4s var(--ease-bounce),
    border-color 0.4s var(--ease),
    color 0.4s var(--ease),
    background 0.4s var(--ease);
}
.socials a:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.06);
  padding: 0;
}
.socials a svg {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-block: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--muted-2);
}
.footer-bottom .credit a {
  color: var(--gold-bright);
  font-weight: 700;
  transition: opacity 0.3s var(--ease);
}
.footer-bottom .credit a:hover {
  opacity: 0.75;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  max-width: 520px;
  margin-inline: auto;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
  transform: translateY(140%);
  transition: transform 0.6s var(--ease-bounce);
}
.consent.show {
  transform: translateY(0);
}
.consent h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.consent h4 svg {
  width: 20px;
  height: 20px;
  color: var(--gold-bright);
}
.consent p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.consent p a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.consent-actions .btn {
  flex: 1;
  min-width: 130px;
  padding-block: 13px;
  font-size: 0.85rem;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal {
  padding-top: 150px;
  padding-bottom: 90px;
  max-width: 880px;
  margin-inline: auto;
}
.legal h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}
.legal .updated {
  color: var(--muted-2);
  font-size: 0.85rem;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 1.4rem;
  margin-block: 38px 14px;
  color: var(--gold-soft);
}
.legal h3 {
  font-size: 1.1rem;
  margin-block: 24px 10px;
}
.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 14px;
}
.legal ul {
  padding-left: 22px;
  list-style: disc;
}
.legal ul li {
  margin-bottom: 8px;
}
.legal a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-bright);
  margin-bottom: 30px;
}
.back-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.4s var(--ease);
}
.back-link:hover svg {
  transform: translateX(-4px);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }
  .hero-tag {
    margin-inline: auto;
  }
  .hero-visual {
    order: -1;
    margin-bottom: 10px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-portrait {
    max-width: 420px;
    margin-inline: auto;
    border: none;
  }
  .loc-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gal-item.wide {
    grid-column: span 2;
  }
  .gal-item.tall {
    grid-row: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 720px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }
  .burger {
    display: block;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero {
    padding-top: 110px;
  }
  .wa-float {
    bottom: 18px;
    right: 18px;
  }
}
@media (min-width: 1600px) {
  :root {
    --maxw: 1380px;
  }
}

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

/* ============================================================
   AGENDAMENTO ONLINE  (seção nativa — adicionada por Fregale)
   Usa exclusivamente os tokens de design já existentes.
   ============================================================ */
.agenda-section {
  position: relative;
  overflow: hidden;
}
.agenda-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 82% -8%, rgba(201, 162, 39, 0.12), transparent 60%),
    radial-gradient(700px 500px at 8% 108%, rgba(201, 162, 39, 0.07), transparent 60%);
  z-index: 0;
}
.agenda-section .container { z-index: 2; }

.agenda-wrapper {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  margin-top: clamp(32px, 5vw, 56px);
}

/* ---------- Coluna 01 — info ---------- */
.agenda-info {
  position: relative;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.72), rgba(7, 7, 7, 0.72));
  box-shadow: var(--shadow-soft);
}
.agenda-info-title {
  font-family: "Bebas Neue", var(--font-display);
  font-weight: 400;
  letter-spacing: 1px;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1.02;
  color: var(--white);
}
.agenda-info-lead {
  color: var(--muted);
  margin-top: 12px;
  font-size: 0.98rem;
}
.agenda-steps {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.agenda-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.agenda-step-ic {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: #000;
  background: var(--gold-grad);
  box-shadow: 0 8px 22px -10px rgba(201, 162, 39, 0.7);
}
.agenda-steps li div { display: flex; flex-direction: column; }
.agenda-steps li b { color: var(--white); font-size: 0.98rem; font-weight: 700; }
.agenda-steps li span { color: var(--muted-2); font-size: 0.86rem; }

.agenda-pro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.agenda-pro img { border-radius: 50%; border: 1px solid var(--line); padding: 4px; background: #000; }
.agenda-pro div { display: flex; flex-direction: column; }
.agenda-pro b { color: var(--gold-soft); font-size: 0.96rem; }
.agenda-pro span { color: var(--muted-2); font-size: 0.84rem; }

/* ---------- Coluna 02 — card do sistema ---------- */
.agenda-card {
  position: relative;
  padding: clamp(22px, 2.6vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.92), rgba(5, 5, 5, 0.96));
  box-shadow: var(--shadow-gold);
}
.agenda-form { display: grid; gap: 24px; border: 0; }
.agenda-field { border: 0; padding: 0; margin: 0; }
.agenda-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.agenda-num {
  width: 24px; height: 24px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 0.78rem;
  color: var(--gold-soft);
  border: 1px solid var(--line);
  background: rgba(201, 162, 39, 0.08);
}

/* serviços */
.agenda-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.agenda-service {
  cursor: pointer;
  text-align: left;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  transition:
    border-color 0.4s var(--ease),
    transform 0.4s var(--ease),
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.agenda-service:hover { transform: translateY(-3px); border-color: var(--line); }
.agenda-service.selected {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  box-shadow: 0 14px 36px -20px rgba(201, 162, 39, 0.7);
}
.agenda-service .svc-name {
  display: block;
  font-family: "Bebas Neue", var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 1.5rem;
  line-height: 1.05;
}
.agenda-service .svc-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
  gap: 10px;
}
.agenda-service .svc-time { color: var(--muted-2); font-size: 0.82rem; }
.agenda-service .svc-price {
  font-family: "Bebas Neue", var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
  color: var(--gold-soft);
}

/* data */
.agenda-calendar { display: grid; gap: 8px; }
.agenda-date-label { font-size: 0.84rem; color: var(--muted); }
.agenda-date {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color-scheme: dark;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.agenda-date:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.16); }
.agenda-date::-webkit-calendar-picker-indicator { filter: invert(0.8) sepia(1) saturate(4) hue-rotate(2deg); cursor: pointer; }
.agenda-hint { font-size: 0.8rem; color: var(--muted-2); }

/* horários */
.agenda-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  min-height: 52px;
}
.agenda-slots[aria-busy="true"] { opacity: 0.55; }
.agenda-slots-empty,
.agenda-slots-none {
  grid-column: 1 / -1;
  color: var(--muted-2);
  font-size: 0.88rem;
  margin: 0;
  padding: 6px 0;
}
.agenda-slot {
  cursor: pointer;
  padding: 12px 8px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}
.agenda-slot:hover { transform: translateY(-2px); border-color: var(--line); }
.agenda-slot.selected {
  border-color: var(--gold);
  background: var(--gold-grad);
  color: #000;
  font-weight: 700;
}
.agenda-skeleton {
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 37%, rgba(255,255,255,0.03) 63%);
  background-size: 400% 100%;
  animation: agShimmer 1.3s ease infinite;
}
@keyframes agShimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

/* dados */
.agenda-inputs { display: grid; gap: 14px; }
.agenda-input { display: grid; gap: 6px; }
.agenda-input label { font-size: 0.84rem; color: var(--muted); }
.agenda-opt { color: var(--muted-2); font-weight: 500; }
.agenda-input input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.agenda-input input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.16); }

/* resumo */
.agenda-summary {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.015);
  padding: 6px 18px;
}
.agenda-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.agenda-summary-row:last-child { border-bottom: 0; }
.agenda-summary-row span { color: var(--muted-2); font-size: 0.86rem; }
.agenda-summary-row b { color: var(--white); font-size: 0.92rem; text-align: right; }
.agenda-summary-row.total b { color: var(--gold-soft); font-family: "Bebas Neue", var(--font-display); font-weight: 400; font-size: 1.4rem; letter-spacing: 0.5px; }

.agenda-feedback {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  border: 1px solid var(--line-soft);
}
.agenda-feedback.error { color: #ffb4b4; border-color: rgba(255, 120, 120, 0.4); background: rgba(255, 80, 80, 0.06); }
.agenda-feedback.success { color: var(--gold-soft); border-color: var(--line); background: rgba(201, 162, 39, 0.08); }

.agenda-submit { width: 100%; }
.agenda-submit:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; }
.agenda-note { text-align: center; font-size: 0.78rem; color: var(--muted-2); margin: 0; }

/* ---------- responsivo ---------- */
@media (max-width: 1024px) {
  .agenda-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .agenda-services { grid-template-columns: 1fr; }
  .agenda-slots { grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); }
}
@media (prefers-reduced-motion: reduce) {
  .agenda-skeleton { animation: none; }
  .agenda-service, .agenda-slot { transition: none; }
}
