:root {
  --black: #0d0d0d;
  --black-alt: #141414;
  --rose: #c9856a;
  --rose-soft: #dba689;
  /* "Burnished Copper" — variante mais escura do acento, reservada ao
     menu fullscreen (ver DESIGN.md, The Nav Is Darker Rule). */
  --copper-burnished: #c4895e;
  --beige: #f5ede8;
  --white: #ffffff;
  --gray: #3a3a3a;
  --text-muted: rgba(245, 237, 232, 0.75);
  --text-faint: rgba(245, 237, 232, 0.55);
  --line: rgba(245, 237, 232, 0.12);
  --card-bg: rgba(245, 237, 232, 0.04);
  --card-bg-hover: rgba(245, 237, 232, 0.07);
  --radius: 14px;
  --transition: cubic-bezier(0.19, 1, 0.22, 1);
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--black);
  color: var(--text-muted);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* Foco visível consistente para links e botões — inputs/selects/textareas
   já têm o próprio tratamento (borda muda para --rose no focus). */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.container {
  width: min(1240px, 90%);
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.15;
  color: var(--white);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

/* REVEAL ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 34px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.35s var(--transition);
  white-space: nowrap;
}

.btn-rose {
  background: var(--rose);
  color: var(--black);
}

.btn-rose:hover {
  background: var(--rose-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 133, 106, 0.3);
}

.btn-rose:disabled {
  opacity: 0.4;
  pointer-events: none;
  transform: none;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--gray);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 13, 13, 0.3);
}

.btn-outline {
  border-color: var(--rose);
  color: var(--beige);
  background: transparent;
}

.btn-outline:hover {
  background: var(--rose);
  color: var(--black);
}

.btn-outline-light {
  border-color: rgba(245, 237, 232, 0.5);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--rose);
}

.btn-light:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  margin-top: 8px;
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
}

.btn-whatsapp:hover {
  background: #1eb757;
  transform: translateY(-2px);
}

.btn-small {
  min-height: 44px;
  padding: 0 22px;
  font-size: 0.8rem;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  position: relative;
}

.btn-submit.loading {
  opacity: 0.75;
  pointer-events: none;
}

.btn-submit.loading .btn-text::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(13, 13, 13, 0.35);
  border-top-color: var(--black);
  border-radius: 50%;
  vertical-align: -2px;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 22px 0;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.55rem;
}

.logo-studio {
  color: var(--white);
}

.logo-hair {
  color: var(--rose);
}

/* NAV — overlay fullscreen (hambúrguer -> tela cheia) */

.nav {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.97);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav.open {
  visibility: visible;
  opacity: 1;
}

.nav-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 22px;
}

.nav-item {
  position: relative;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav.open .nav-item {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.3s + var(--nav-i, 0) * 80ms);
}

.nav-link {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.4s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--copper-burnished);
}

/* Números decorativos — coluna independente, fixa à esquerda,
   sem relação estrutural com os links centralizados */
.nav-num {
  position: absolute;
  left: 3rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: color-mix(in srgb, var(--copper-burnished) 50%, transparent);
}

.nav-num:nth-child(1) { top: calc(25% - 0.5rem); }
.nav-num:nth-child(2) { top: calc(40% - 0.5rem); }
.nav-num:nth-child(3) { top: calc(57% - 0.5rem); }
.nav-num:nth-child(4) { top: calc(73% - 0.5rem); }

.nav-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.8rem;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
  transition: color 0.3s ease;
}

.nav-close:hover,
.nav-close:focus-visible {
  color: var(--copper-burnished);
}

.nav-cta {
  display: block;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  background: var(--copper-burnished);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.35s var(--transition);
}

.nav-cta:hover {
  background: var(--rose-soft);
  transform: translateY(-2px);
}

.nav.open .nav-cta {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.3s + var(--nav-i, 0) * 80ms);
}

@media (prefers-reduced-motion: reduce) {
  .nav-item,
  .nav-cta {
    transition: none;
  }
}

/* Botão do header — tesoura (fechado) / X (aberto) */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1001;
  background: transparent;
  color: var(--copper-burnished);
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--white);
}

.menu-toggle svg {
  position: absolute;
  inset: 0;
  width: 28px;
  height: 28px;
  opacity: 1;
  transform: rotate(0deg) scale(1);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-toggle .icon-close {
  opacity: 0;
  transform: rotate(-45deg) scale(0.7);
}

.menu-toggle.active .icon-scissors {
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
}

.menu-toggle.active .icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle svg {
    transition: none;
  }
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 9px;
}

.menu-toggle span:nth-child(3) {
  top: 18px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* HERO */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(13, 13, 13, 0.95) 0%,
    rgba(13, 13, 13, 0.82) 42%,
    rgba(13, 13, 13, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-top: 100px;
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rose-soft);
  background: rgba(201, 133, 106, 0.14);
  border: 1px solid rgba(201, 133, 106, 0.4);
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(245, 237, 232, 0.85);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* STATS */

.stats {
  background: #000000;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--rose);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
}

.stat-icon svg {
  width: 0.85em;
  height: 0.85em;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* SERVIÇOS */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== UAU CARDS — STUDIO HAIR ===== */
.service-card {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(196, 137, 94, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  cursor: default;
  transform-style: preserve-3d;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* Brilho cobre deslizando */
.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(196, 137, 94, 0.18) 50%,
    rgba(255, 200, 150, 0.10) 55%,
    transparent 65%
  );
  transform: skewX(-15deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.service-card:hover::before {
  left: 125%;
}

.service-card:hover {
  border-color: rgba(196, 137, 94, 0.5);
  box-shadow:
    0 8px 32px rgba(196, 137, 94, 0.15),
    0 0 0 1px rgba(196, 137, 94, 0.2);
}

/* Garantir que o conteúdo do card fique acima do brilho */
.service-card > * {
  position: relative;
  z-index: 2;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(201, 133, 106, 0.12);
  color: var(--rose);
  margin-bottom: 22px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--white);
}

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

/* PORTFÓLIO */

.portfolio {
  background: var(--black-alt);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.portfolio-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 45%, rgba(13, 13, 13, 0.92) 100%);
}

.portfolio-title {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--white);
}

/* SOBRE */

.about {
  background: var(--black);
}

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

.about-text p {
  color: var(--text-muted);
  margin: 22px 0 32px;
  max-width: 52ch;
}

.about-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* TEAM (modal card layout) */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
}

.team-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 22px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-card h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--gray);
}

.team-role {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin: 6px 0 12px;
}

.team-card p {
  color: var(--gray);
  font-size: 0.92rem;
  max-width: 32ch;
  margin-inline: auto;
}

/* TESTIMONIALS */

.testimonials {
  background: var(--black-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.testimonial-stars {
  color: var(--rose);
  letter-spacing: 3px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--beige);
  margin-bottom: 26px;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--black);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
}

.author-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
}

/* CTA FINAL */

.cta-final {
  background: var(--rose);
  padding: 100px 0;
}

.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--black);
  margin-bottom: 18px;
}

.cta-content p {
  color: rgba(13, 13, 13, 0.78);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* CONTATO */

.contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin: 20px 0 32px;
  max-width: 46ch;
}

.contact-details {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-details li span:last-child,
.contact-details li a {
  color: var(--beige);
}

.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input,
select,
textarea {
  border: 1px solid var(--line);
  background: rgba(245, 237, 232, 0.03);
  color: var(--beige);
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 237, 232, 0.4);
}

select option {
  background: var(--black-alt);
  color: var(--beige);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-status {
  margin-top: 14px;
  font-size: 0.88rem;
  min-height: 22px;
}

.form-status.success {
  color: #5fc98a;
}

.form-status.error {
  color: #e07a72;
}

/* FOOTER */

.site-footer {
  background: #000000;
  color: rgba(245, 237, 232, 0.6);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-social a {
  color: rgba(245, 237, 232, 0.6);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--rose);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
}

/* MODAL BASE (shared by booking + team) */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.5s var(--transition);
  color: var(--gray);
}

.modal.open .modal-panel {
  transform: translateY(0) scale(1);
}

.team-modal-panel {
  width: min(900px, 100%);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--black);
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.3s ease, color 0.3s ease;
}

.modal-close:hover {
  background: var(--rose);
  color: var(--white);
}

.booking-step h3,
.team-modal .modal-body h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: var(--black);
  margin-bottom: 10px;
}

.booking-intro {
  color: var(--gray);
  margin-bottom: 30px;
  max-width: 52ch;
}

.booking-field {
  margin-bottom: 24px;
}

.booking-field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  background: var(--beige);
  border-color: rgba(58, 58, 58, 0.15);
  color: var(--black);
  width: 100%;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(58, 58, 58, 0.45);
}

.booking-field select option {
  background: var(--white);
  color: var(--black);
}

.booking-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.booking-field-grid input {
  width: 100%;
}

/* Progress indicator */

.booking-progress {
  margin-bottom: 30px;
}

.booking-step-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 10px;
}

.booking-progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: rgba(58, 58, 58, 0.12);
  overflow: hidden;
}

.booking-progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--rose);
  border-radius: 100px;
  transition: width 0.5s var(--transition);
}

/* Service selection cards (booking step 1) */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.service-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px 12px;
  border: 1px solid rgba(58, 58, 58, 0.15);
  border-radius: var(--radius);
  background: var(--beige);
  transition: all 0.25s ease;
}

.service-option:hover {
  border-color: var(--rose);
}

.service-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose);
}

.service-option-icon svg {
  width: 20px;
  height: 20px;
}

.service-option-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--black);
}

.service-option.selected {
  background: rgba(201, 133, 106, 0.14);
  border-color: var(--rose);
}

.service-option.selected .service-option-icon {
  background: var(--rose);
  color: var(--white);
}

/* Day strip */

.booking-days {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.day-chip {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 62px;
  padding: 12px 8px;
  border: 1px solid rgba(58, 58, 58, 0.15);
  border-radius: 12px;
  background: var(--white);
  transition: all 0.25s ease;
}

.day-chip:hover {
  border-color: var(--rose);
}

.day-chip .day-weekday {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

.day-chip .day-number {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--black);
}

.day-chip.selected {
  background: var(--rose);
  border-color: var(--rose);
}

.day-chip.selected .day-weekday,
.day-chip.selected .day-number {
  color: var(--white);
}

/* Time slots */

.booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 46px;
}

.booking-hint {
  color: var(--gray);
  font-size: 0.88rem;
  font-style: italic;
}

.slot-btn {
  padding: 10px 16px;
  border: 1px solid rgba(58, 58, 58, 0.15);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  transition: all 0.25s ease;
}

.slot-btn:hover:not(:disabled) {
  border-color: var(--rose);
}

.slot-btn.selected {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.slot-btn:disabled {
  color: var(--gray);
  background: var(--beige);
  text-decoration: line-through;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Booking step navigation */

.booking-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
}

.booking-nav .btn {
  flex: 1;
}

.booking-nav span:empty {
  flex: 1;
}

/* Step 3 recap */

.booking-summary-recap {
  background: var(--beige);
  border: 1px solid rgba(58, 58, 58, 0.15);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--black);
  margin-bottom: 26px;
}

/* Success step */

.booking-success {
  text-align: center;
}

/* Cada bloco entra em cascata (fade + slide) assim que a etapa é revelada;
   mesmo vocabulário de stagger do menu fullscreen (var(--i), 90ms/item). */
.booking-success > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--transition), transform 0.5s var(--transition);
}

.booking-success.is-revealed > * {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i, 0) * 90ms);
}

.booking-success-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  margin-bottom: 20px;
}

.booking-success-icon svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.booking-success-icon .icon-check {
  opacity: 0;
  transform: scale(0.6) rotate(-20deg);
}

/* A tesoura do menu "fecha" em check assim que a confirmação chega */
.booking-success-icon.is-checked .icon-snip {
  opacity: 0;
  transform: scale(0.6) rotate(20deg);
}

.booking-success-icon.is-checked .icon-check {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.booking-confirmation-card {
  background: var(--beige);
  border: 1px solid rgba(58, 58, 58, 0.15);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 18px;
  text-align: left;
}

.booking-summary {
  color: var(--black);
  font-size: 1.05rem;
  margin: 0;
}

.booking-note {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.booking-success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-success-actions .btn-whatsapp {
  margin-top: 0;
}

.booking-add-calendar svg {
  width: 20px;
  height: 20px;
}

.booking-close-final {
  width: 100%;
  margin-top: 14px;
  border-color: rgba(58, 58, 58, 0.25);
  color: var(--gray);
}

.booking-close-final:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

@media (prefers-reduced-motion: reduce) {
  .booking-success > *,
  .booking-success-icon svg {
    transition: none;
  }
}

/* Team modal */

/* "Nossos Especialistas" — promovido de eyebrow a heading principal:
   mantém o rastro de letter-spacing/uppercase do eyebrow, mas no
   tamanho e peso de um heading de verdade (herda de .team-modal
   .modal-body h3, ver regra acima). */
.team-modal .modal-body h3 {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-modal .team-grid {
  margin-top: 34px;
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 360px;
  }

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

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

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .modal-panel {
    padding: 36px 28px;
    max-height: 92vh;
  }

  .booking-field-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 80px 0;
  }

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

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

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

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

  .hero-actions .btn {
    width: 100%;
  }

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

  .contact-form {
    padding: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 0;
  }

  .modal-panel {
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  .booking-nav {
    flex-direction: column-reverse;
  }

  .booking-nav .btn {
    width: 100%;
  }
}

/* STUDIO HAIR — Canvas Efeito */
#studio-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content,
.hero-overlay,
[class*="hero-"] {
  position: relative;
  z-index: 2;
}
