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

  html {
  scroll-behavior: smooth;
}

  :root {
    --gold: #BE9D6D;
    --gold-light: #E8D5B0;
    --black: #26231E;
    --fblack: #000000;
    --off-white: #F8F5F0;
    --cream: #F2EDE5;
    --muted: #7A7268;
    --border: rgba(201,169,110,0.25);
    --header-h: 68px;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--off-white);
  }

  /* BADGE EM DESENVOLVIMENTO */
  .dev-banner {
    background: var(--gold);
    color: var(--black);
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 9px;
  }

  /* HEADER */
  header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 48px;
    height: 68px;
    border-bottom: 1px solid var(--border);
    background: var(--fblack);
  }

  nav { 
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex; 
    gap: 32px; 
  }

  nav a {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(248,245,240,0.55);
    text-decoration: none;
  }

  .header-color {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    padding: 0 48px;
    height: 68px;
    gap: 32px;
}

.header-color a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.header-color a:hover { color: var(--gold); }

  /* HERO */
  .hero {
    position: relative;
    text-align: center;
    padding: 40px 24px 80px;
    border-bottom: 1px solid var(--gold);
    overflow: hidden;
  }

  .hero-tag {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.9s 0.4s ease forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--off-white);
    margin-bottom: 28px;
  }

  .hero-title em { font-style: regular; color: var(--gold-light); }

  .hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.06em;
    opacity: 0;
    animation: fadeUp 0.9s 1s ease forwards;
  }

  .Monteserrat {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.60rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.06em;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(201,169,110,0.09) 0%, transparent 70%);
    pointer-events: none;
  }

  
/* ── MOBILE MENU ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--off-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(6,5,4,0.98);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-bottom: 40px;
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mobile-nav-links a {
  font-family: 'ivymode', sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: rgba(248,245,240,0.85);
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 18px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  transition: color 0.2s;
}

.mobile-nav-links a:first-child { border-top: 1px solid rgba(201,169,110,0.1); }
.mobile-nav-links a:active { color: var(--gold); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #9B7A45; }

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero .ivy,
.hero .hero-title,
.hero .dejavu {
  opacity: 0;
  animation: fadeUp 0.9s 0.65s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 768px) {

  header {
    padding: 0 20px;
    height: 72px;
  }

  nav,
  .header-color {
    display: none;
  }

}

  /* 4 NICHOS */
  .nichos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 520px;
    border-top: 1px solid var(--gold);
  }

  .nicho {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 52px 32px;
    min-height: 520px;
    text-decoration: none;
    border-right: 1px solid var(--gold);
    transition: flex 0.6s cubic-bezier(0.4,0,0.2,1);
  }

  .nichos:hover .nicho { flex: 0.7; }
  .nichos .nicho:hover { flex: 1.9; }

  .nicho:last-child { border-right: none; }

  .nicho-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
    opacity: 0.35;
    transform: scale(1.04);
  }

  .nicho:hover .nicho-bg {
    opacity: 0.55;
    transform: scale(1);
  }

  .nicho-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,0.95) 0%, rgba(14,14,14,0.3) 60%, transparent 100%);
  }

  .nicho-number {
    position: absolute;
    top: 36px;
    left: 32px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: rgba(201,169,110,0.12);
    line-height: 1;
    transition: color 0.4s;
    user-select: none;
  }

  .nicho:hover .nicho-number { color: rgba(201,169,110,0.28); }

  .nicho-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
  }

  .nicho-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
    display: block;
    filter: sepia(1) saturate(0.4) brightness(1.4);
    transition: transform 0.4s;
  }

  .nicho:hover .nicho-icon { transform: scale(1.15); }

  .nicho-tag {
    display: inline-block;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.35);
    padding: 4px 12px;
    margin-bottom: 14px;
  }

  .nicho-title {
    font-family: 'ivymode', sans-serif;
    font-size: 1.85rem;
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .nicho-desc {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(248,245,240,0.55);
    line-height: 1.7;
    max-width: 200px;
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s;
    opacity: 0;
  }

  .nicho:hover .nicho-desc {
    max-height: 80px;
    opacity: 1;
  }

  .nicho-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.4s 0.1s, gap 0.3s;
  }

  .nicho:hover .nicho-cta { opacity: 1; }
  .nicho-cta::after { content: '→'; transition: transform 0.3s; }
  .nicho:hover .nicho-cta::after { transform: translateX(4px); }

  /* BG patterns por nicho */
  .nicho-1 .nicho-bg { background-image: url('../img/hair.jpeg'); }
  .nicho-2 .nicho-bg { background-image: url('../img/barb.jpeg'); }
  .nicho-3 .nicho-bg { background-image: url('../img/est.jpeg'); }
  .nicho-4 .nicho-bg { background-image: url('../img/ter.jpeg'); }
  
  /* DIVIDER */
  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 40px 0;
    border-top: 1px solid var(--gold);
  }

  .div-line { width: 50px; height: 1px; background: var(--gold); }
  .div-dot { width: 5px; height: 5px; border: 1px solid var(--gold); transform: rotate(45deg); }

  /* SOBRE */
  .sobre > div {
    background: var(--cream);
    color: var(--black);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
  }

  .sobre-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
  }

  .sobre-title {
    font-family: 'ivymode', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 20px;
  }

  .sobre-title em { font-style: normal; color: #BE9D6D; }

  .sobre-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.9;
  }


  /* CONTATO */
  .contato {
    display: flex;
    justify-content: center;
    position: relative;
    background: var(--black);
    color: var(--cream);
    padding: 80px 64px;
    gap: 80px;
    align-items: center;
  }

  .contato-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
  }

  .contato-title {
    font-family: 'ivymode', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--cream);
    margin-bottom: 20px;
  }

  .contato-title em { font-style: normal; color: #BE9D6D; }

  .contato-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.9;
  }

  .contato::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(201,169,110,0.09) 0%, transparent 70%);
    pointer-events: none;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stat {
    border-left: 1px solid rgba(155,122,69,0.3);
    padding-left: 20px;
  }

  .stat-num {
    font-family: 'ivymode', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: #BE9D6D;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
  }

  /* FOOTER — layout padronizado com Site Barber/Site Salon */
  footer {
    background: var(--fblack);
    border-top: 1px solid var(--border);
    padding: 60px 72px 36px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 52px;
  }

  .footer-logo {
    max-width: 130px;
    height: auto;
    display: block;
    margin-bottom: 20px;
  }

  .footer-tagline {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.9;
    max-width: 230px;
    margin-bottom: 24px;
  }

  .footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--muted);
    word-break: break-word;
    overflow-wrap: break-word;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold-light); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .footer-copy {
    font-size: 0.7rem;
    color: var(--cream);
  }

  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    justify-self: center;
  }

  .footer-social a {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
  }
  .footer-social a:hover { color: var(--gold); opacity: 0.82; transform: scale(1.1); }

  /* Estilos para o botão flutuante do WhatsApp */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 70px;
            right: 20px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
        }

  @media (max-width: 900px) {
    header { padding: 0 43px; }
    nav { display: flex; }
    .nichos { grid-template-columns: 1fr 1fr; }
    .nicho { border-bottom: 1px solid var(--border); }
    .sobre { grid-template-columns: 1fr; padding: 60px 0px; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 560px) {
    .nichos { grid-template-columns: 1fr; }
    footer { padding: 36px 24px 24px; }
    .footer-top { grid-template-columns: 1fr; }
  }

  .logo {
    width: 168.2px;
    height: 31px;

  }

  .logo-header {
  height: 0.7rem;
  width: auto;
}

  @font-face {
    font-family: 'Dejavu Serif';
      src: url('../fonts/dejavu-serif/DejavuSerif.ttf')
      format('truetype');
    font-weight: 400;

  }

  .dejavu {
    font-family: 'Dejavu Serif', serif;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--off-white);
    margin-bottom: 18px;

  }

    .dejavu em { font-style: normal; color: var(--gold-light); }

  .ivy {
  font-family: "ivymode", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--off-white);
    margin-bottom: 18px;

}
  .ivy em { font-style: normal; color: var(--gold-light); }

  /* ══════════════════════════════════════
   AGENDAMENTO
══════════════════════════════════════ */
.agendamento {
  padding: 100px 72px;
  background: var(--black);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.agenda-info .section-body { margin-bottom: 36px; }

.agenda-contato {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.agenda-contato-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.agenda-contato-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.agenda-contato-text {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.agenda-form {
  background: var(--black2);
  border: 1px solid var(--border);
  padding: 52px 44px;
  width: 100%;
  max-width: 1000px;
}

.agenda-form-title {
  font-family: 'ivymode', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--black);
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(201,169,110,0.18);
  color: var(--off-white);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
}

.field input:focus,
.field select:focus { border-color: var(--gold); }
.field input::placeholder { color: rgba(122,114,104,0.45); }
.field select option { background: var(--black2); }
.field textarea:focus { border-color: var(--gold); }

.btn-agendar {
  width: 100%;
  background: var(--gold);
  color: var(--off-white);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  padding: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity 0.25s;
}
.btn-agendar:hover { opacity: 0.88; }

textarea {
  width: 100%;
  min-height: 140px;
  background: transparent;
  border: 1px solid rgba(190, 157, 109, 0.2);
  padding: 18px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  resize: vertical;
  outline: none;
}

textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.campo-full label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.campo-full input,
.campo-full select,
.campo-full textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(201,169,110,0.18);
  color: var(--off-white);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
}

.campo-full input:focus,
.campo-full select:focus { border-color: var(--gold); }
.campo-full input::placeholder { color: rgba(122,114,104,0.45); }
.campo-full select option { background: var(--black2); }

/* ══════════════════════════════════════
   MOBILE ≤ 768px
══════════════════════════════════════ */
@media (max-width: 768px) {

  :root { --header-h: 64px; }

  /* HEADER */
  header {
    justify-content: space-between;
    height: 64px;
    padding: 0 20px;
  }

  .menu-toggle { display: flex; }

  /* HERO */
  .hero {
    padding: 44px 24px 60px;
  }
  .hero-title,
  .ivy,
  .dejavu {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 0.78rem;
    line-height: 1.7;
  }

  /* NICHOS — altura reduzida, conteúdo visível sem hover */
  .nicho {
    min-height: 260px;
    padding: 36px 24px;
  }
  .nicho-title {
    font-size: 1.45rem;
  }
  .nicho-desc {
    max-height: 80px;
    opacity: 1;
  }
  .nicho-cta {
    opacity: 1;
    margin-top: 14px;
  }
  .nicho-bg {
    opacity: 0.45;
  }
  .nicho-number {
    font-size: 3rem;
    top: 20px;
    left: 20px;
  }

  /* SOBRE — corrige padding do div interno */
  .sobre > div {
    padding: 52px 24px;
  }
  .sobre-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .sobre-body {
    font-size: 0.83rem;
    line-height: 1.85;
  }

  /* CONTATO / FORM */
  .contato {
    padding: 48px 16px;
    flex-direction: column;
    gap: 0;
  }
  .agenda-form {
    padding: 36px 24px;
    width: 100%;
  }
  .agenda-form-title {
    font-size: 1.2rem;
    margin-bottom: 28px;
    line-height: 1.4;
  }
  .form-row-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field {
    margin-bottom: 20px;
  }
  .field label,
  .campo-full label {
    font-size: 0.62rem;
    margin-bottom: 10px;
  }

  /* FOOTER */
  footer {
    padding: 40px 20px 28px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    text-align: center;
  }
  .footer-copy {
    font-size: 0.62rem;
    line-height: 1.7;
  }
  .footer-col ul li {
    margin-bottom: 10px;
  }
  .footer-col ul li a {
    display: inline-block;
    min-height: 36px;
    line-height: 36px;
  }
  .footer-social a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* WHATSAPP — evita sobrepor conteúdo */
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}

/* ══════════════════════════════════════
   SMALL PHONES ≤ 480px
   (iPhone 12 Pro / Android 20:9 — 360–412px)
══════════════════════════════════════ */
@media (max-width: 480px) {

  /* HERO */
  .hero {
    padding: 36px 20px 52px;
  }

  /* NICHOS */
  .nicho {
    min-height: 240px;
    padding: 28px 20px;
  }

  /* SOBRE */
  .sobre > div {
    padding: 44px 20px;
  }

  /* CONTATO */
  .contato {
    padding: 40px 12px;
  }
  .agenda-form {
    padding: 28px 20px;
  }
  .agenda-form-title {
    font-size: 1.1rem;
    margin-bottom: 22px;
  }

  /* ACESSIBILIDADE: font-size 16px impede zoom automático no iOS */
  .field input,
  .field select,
  .field textarea,
  .campo-full input,
  .campo-full select,
  .campo-full textarea,
  textarea {
    font-size: 16px;
    padding: 14px 12px;
    min-height: 48px;
  }

  /* Botão — touch target confortável */
  .btn-agendar {
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
  }

  /* FOOTER */
  .footer-top {
    gap: 28px;
  }
}

