/* ============================================
   PENTE FINO BARBERSHOP — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;600;700&display=swap');

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

:root {
  --gold: #C9A84C;
  --gold-lt: #D0C6C4;
  --gold-dk: #9A7A30;
  --gold-glow: rgba(201, 168, 76, 0.25);
  --dark: #111111;
  --dark-2: #0D0D0D;
  --dark-3: #181818;
  --dark-4: #1E1E1E;
  --dark-5: #2A2A2A;
  --glass: rgba(255, 255, 255, 0.03);
  --light: #F0EBE1;
  --muted: #7A7570;
  --white: #FFFFFF;
  --green: #25D366;
  --green-dk: #1aaa52;
  --red: #E74C3C;
  --font-d: 'Playfair Display', serif;
  --font-b: 'Barlow', sans-serif;
  --font-c: 'Barlow Condensed', sans-serif;
  --radius: 14px;
  --shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-b);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;

}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dk);
  border-radius: 3px;
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo {
  width: 140px;
  animation: pulseLogo 1.5s infinite alternate ease-in-out;
  border-radius: 8px;
  /* Se a logo for quadrada e precisar de borda arredondada */
}

@keyframes pulseLogo {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.preloader-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0 32px;
  transition: background 0.3s ease;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .header {
    padding: 0 20px;
  }

  .logo-img {
    width: 140px;
  }
}

.logo-main {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
}

.logo-accent {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  font-style: italic;
}

.logo-sub {
  font-family: var(--font-c);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-btn {
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-btn:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, .2);
  background: rgba(201, 168, 76, .04);
}

.nav-btn--active {
  color: var(--gold);
  border-color: rgba(201, 168, 76, .25);
}

.nav-btn--wpp {
  color: var(--dark);
  background: #25D366;
  border-color: #25D366;
}

.nav-btn--wpp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: var(--dark);
}

/* Botão CTA do menu — Agendar */
.nav-btn--cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: #111 !important;
  border-color: transparent;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(201, 168, 76, .25);
}

.nav-btn--cta:hover {
  background: linear-gradient(135deg, var(--gold-lt) 0%, #f5e08a 100%);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, .40);
}

/* ── HAMBURGUER (mobile) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  margin-left: auto;
  background: none;
  border: 1.5px solid rgba(201, 168, 76, .2);
  border-radius: 8px;
  cursor: pointer;
  z-index: 201;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
}

/* Animação X ao abrir */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MENU MOBILE ── */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201, 168, 76, .15);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px 24px 28px;
    margin-left: 0;
    /* escondido por padrão */
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 199;
  }

  .header-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-btn {
    font-size: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    justify-content: flex-start;
  }

  .nav-btn--cta {
    justify-content: center;
    margin-top: 8px;
    padding: 16px;
  }
}

/* ── MAIN BOOKING ── */
.main-booking {
  min-height: 100vh;
  padding: 88px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(201, 168, 76, .06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 60% at 85% 80%, rgba(201, 168, 76, .04) 0%, transparent 50%),
    linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

/* ── BOOKING HEADER ── */
.booking-header {
  text-align: center;
  width: 100%;
  max-width: 700px;
}

.booking-label {
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.booking-title {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.booking-title em {
  color: var(--gold);
  font-style: italic;
}

.booking-sub {
  font-size: 15px;
  color: var(--muted);
}


.booking-quick-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 700px;
}

.booking-quick-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(201, 168, 76, .15);
  color: var(--muted);
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s cubic-bezier(.2, .8, .2, 1);
}

.booking-quick-btn:hover {
  border-color: rgba(201, 168, 76, .4);
  color: var(--gold);
  background: rgba(201, 168, 76, .05);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .booking-quick-actions {
    flex-direction: column;
  }
}


/* ── BOOKING CARD ── */
.booking-card {
  background: linear-gradient(160deg, #141414 0%, #0f0f0f 100%);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: var(--radius);
  padding: 44px;
  width: 100%;
  max-width: 700px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(201, 168, 76, 0.04) inset;
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

/* ── STEPS ── */
.step {
  display: none;
}

.step.active {
  display: block;
  animation: fadeUp .35s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.step-badge {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.step-title {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.step-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}

.btn-back {
  font-family: var(--font-c);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  transition: color .2s;
  margin-top: 4px;
  flex-shrink: 0;
}

.btn-back:hover {
  color: var(--gold);
}

/* ── BARBERS GRID ── */
.barbers-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.barber-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1.5px solid rgba(201, 168, 76, .1);
  background: var(--dark-3);
  cursor: pointer;
  transition: all .25s cubic-bezier(.2, .8, .2, 1);
  position: relative;
}

.barber-item:hover {
  border-color: rgba(201, 168, 76, .4);
  background: rgba(201, 168, 76, .04);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.barber-item.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .07);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, .1) inset, var(--shadow-gold);
}

.barber-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(201, 168, 76, .25);
  box-shadow: 0 0 12px rgba(201, 168, 76, .1);
}

.barber-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.barber-initials {
  width: 100%;
  height: 100%;
  background: var(--dark-5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-c);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.barber-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}

.barber-spec {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

.barber-check {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--dark);
  background: transparent;
  transition: all .25s;
}

.barber-item.selected .barber-check {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, .4);
}

/* ── SERVICES LIST ── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1.5px solid rgba(201, 168, 76, .1);
  background: var(--dark-3);
  cursor: pointer;
  transition: all .2s;
  position: relative;
}

.service-item:hover {
  border-color: rgba(201, 168, 76, .35);
  background: var(--dark-4);
}

.service-item.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .06);
}

.service-info {
  flex: 1;
}

.service-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}

.service-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.5;
}

.service-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.service-dur {
  font-family: var(--font-c);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}

.service-price {
  font-family: var(--font-c);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.service-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--dark);
  background: transparent;
  transition: all .2s;
  flex-shrink: 0;
}

.service-item.selected .service-check {
  background: var(--gold);
  border-color: var(--gold);
}

/* ── CALENDAR ── */
.calendar-wrap {
  background: var(--dark-3);
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, .1);
  padding: 24px;
  margin-bottom: 28px;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cal-nav button {
  background: none;
  border: 1px solid rgba(201, 168, 76, .2);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav button:hover {
  background: rgba(201, 168, 76, .1);
}

.cal-nav span {
  font-family: var(--font-c);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.cal-grid-head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
}

.cal-grid-head span {
  text-align: center;
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  border: 1.5px solid transparent;
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: rgba(201, 168, 76, .1);
  border-color: rgba(201, 168, 76, .3);
}

.cal-day.today {
  color: var(--gold);
  font-weight: 700;
}

.cal-day.selected {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
}

.cal-day.disabled {
  color: var(--dark-5);
  cursor: default;
}

.cal-day.empty {
  cursor: default;
}

.cal-day.domingo {
  color: #E74C3C;
  opacity: .5;
  cursor: default;
}

/* ── SLOTS ── */
.slots-wrap {
  margin-bottom: 28px;
}

.slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slot-btn {
  font-family: var(--font-c);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid rgba(201, 168, 76, .2);
  background: var(--dark-3);
  color: var(--light);
  cursor: pointer;
  transition: all .2s;
}

.slot-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, .06);
}

.slot-btn.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.loading-slots {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  font-size: 14px;
}

.no-slots-msg {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  font-size: 14px;
}

/* ── FORM ── */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.form-group input {
  width: 100%;
  padding: 15px 18px;
  background: var(--dark-3);
  border: 1.5px solid rgba(201, 168, 76, .12);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 15px;
  transition: all .25s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .03);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .08);
}

.form-group input::placeholder {
  color: #3a3a3a;
}

/* ── BUTTONS ── */
.btn-next {
  width: 100%;
  padding: 17px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  border: none;
  color: #111;
  font-family: var(--font-c);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 4px 20px rgba(201, 168, 76, .25);
}

.btn-next:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--gold-lt) 0%, #f5e08a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, .4);
}

.btn-next:disabled {
  opacity: .3;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-confirm {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
}

/* ── RESUMO ── */
.resumo {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.resumo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
}

.resumo-row:not(:last-child) {
  border-bottom: 1px solid rgba(201, 168, 76, .07);
}

.resumo-label {
  color: var(--muted);
}

.resumo-val {
  font-weight: 600;
  color: var(--white);
}

.resumo-price .resumo-val {
  color: var(--gold);
  font-size: 18px;
  font-family: var(--font-c);
}

/* ── SUCCESS ── */
.success-box {
  text-align: center;
  padding: 24px 0;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(46, 204, 113, .1);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--green);
  margin: 0 auto 24px;
}

.success-title {
  font-family: var(--font-d);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}

.success-sub {
  color: var(--muted);
  margin-bottom: 24px;
}

.success-detail {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 28px;
  text-align: left;
}

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

.btn-wpp-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-c);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}

.btn-wpp-confirm:hover {
  background: #1ebe5d;
}

.btn-novo {
  padding: 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(201, 168, 76, .25);
  color: var(--gold);
  text-decoration: none;
  text-align: center;
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .2s;
}

.btn-novo:hover {
  background: rgba(201, 168, 76, .06);
}

/* ── HORÁRIOS PAGE ── */
.page-horarios,
.page-meus {
  padding: 108px 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  margin-bottom: 48px;
}

.page-title {
  font-family: var(--font-d);
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
}

.page-title em {
  color: var(--gold);
  font-style: italic;
}

.page-sub {
  color: var(--muted);
  margin-top: 8px;
  font-size: 15px;
}

.date-picker-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.date-picker-wrap input[type="date"] {
  padding: 12px 16px;
  background: var(--dark-2);
  border: 1.5px solid rgba(201, 168, 76, .2);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
}

.date-picker-wrap input:focus {
  border-color: var(--gold);
}

.btn-buscar {
  padding: 12px 28px;
  background: var(--gold);
  border: none;
  border-radius: 8px;
  color: var(--dark);
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.btn-buscar:hover {
  background: var(--gold-lt);
}

.horarios-date-label {
  text-align: center;
  font-family: var(--font-c);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.horarios-date-label strong {
  color: var(--gold);
}

.horarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.horario-barber-col {
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: var(--radius);
  padding: 24px;
}

.hb-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 2px solid rgba(201, 168, 76, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-c);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dk);
  flex-shrink: 0;
}

.hb-name {
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
}

.hb-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  min-height: 40px;
}

.slot-tag {
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(201, 168, 76, .08);
  border: 1px solid rgba(201, 168, 76, .2);
  color: var(--gold);
}

.no-slots {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 0;
}

.btn-agendar-small {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--gold);
  border-radius: 8px;
  color: var(--dark);
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}

.btn-agendar-small:hover {
  background: var(--gold-lt);
}

/* ── MEUS AGENDAMENTOS ── */
.meus-card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 560px;
  margin: 0 auto;
}

.agend-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, .1);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.agend-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.agend-data {
  font-family: var(--font-c);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

.agend-body {
  font-size: 14px;
  color: var(--light);
  line-height: 1.7;
}

.agend-status {
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.status-ok {
  background: rgba(46, 204, 113, .12);
  color: var(--green);
  border: 1px solid rgba(46, 204, 113, .3);
}

.status-done {
  background: rgba(136, 132, 128, .12);
  color: var(--muted);
  border: 1px solid rgba(136, 132, 128, .2);
}

.status-cancel {
  background: rgba(231, 76, 60, .1);
  color: var(--red);
  border: 1px solid rgba(231, 76, 60, .3);
}

.btn-cancelar {
  margin-top: 14px;
  padding: 8px 20px;
  border-radius: 8px;
  background: rgba(231, 76, 60, .1);
  border: 1px solid rgba(231, 76, 60, .3);
  color: var(--red);
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}

.btn-cancelar:hover {
  background: rgba(231, 76, 60, .2);
}

/* ── ALERT ── */
.alert-erro {
  background: rgba(231, 76, 60, .1);
  border: 1px solid rgba(231, 76, 60, .3);
  color: var(--red);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ── FOOTER ── */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(201, 168, 76, .1);
  padding: 32px 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .35), transparent);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
}

.footer-brand {
  font-family: var(--font-c);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
}

.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--gold-lt);
  text-decoration: underline;
}

@media (max-width: 680px) {

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .footer-info {
    justify-content: center;
  }
}


/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .header {
    padding: 0 16px;
  }

  .header-inner {
    gap: 8px;
    height: 60px;
  }

  .logo-sub {
    display: none;
  }

  .nav-btn {
    font-size: 11px;
    padding: 7px 10px;
  }

  .booking-card {
    padding: 24px 16px;
  }

  .main-booking {
    padding: 80px 12px 40px;
  }

  .service-item {
    flex-wrap: wrap;
  }

  .date-picker-wrap {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================================
   LOCATION SECTION (Como Chegar + Instagram)
   ============================================ */
.location-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
  padding: 100px 5% 80px;
  position: relative;
}

.location-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .25), transparent);
}

.location-container {
  max-width: 1100px;
  margin: 0 auto;
}

.location-header {
  text-align: center;
  margin-bottom: 60px;
}

.location-label {
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.location-title {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.location-title em {
  color: var(--gold);
  font-style: italic;
}

.location-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.location-map-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, .15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .6);
  height: 340px;
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(40%) invert(92%) hue-rotate(180deg);
}

.location-info {
  background: linear-gradient(160deg, #161616, #111);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: 16px;
  padding: 55px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  justify-content: space-between;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-info-icon {
  font-size: 25px;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-info-item>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location-info-item strong {
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.location-info-item span {
  font-size: 18px;
  color: rgba(240, 235, 225, 0.75);
  line-height: 1.5;
}

.location-wpp-link {
  font-size: 18px;
  color: #25D366;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}

.location-wpp-link:hover {
  color: #1aaa52;
}

.location-ig-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-ig-header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(160deg, #161616, #111);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: 16px;
  padding: 20px 24px;
}

.location-ig-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 16px rgba(220, 39, 67, .35);
}

.location-ig-title {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.location-ig-sub {
  font-size: 13px;
  color: var(--muted);
}

.location-ig-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, .12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}

.location-ig-frame iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

.location-ig-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, .1);
  color: var(--muted);
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all .25s;
}

.location-ig-btn:hover {
  border-color: rgba(220, 39, 67, .4);
  color: #e85d79;
  background: rgba(220, 39, 67, .04);
}

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

  .location-title {
    font-size: 36px;
  }

  .location-map-wrap {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .location-section {
    padding: 72px 20px 60px;
  }

  .location-title {
    font-size: 30px;
  }

  .location-ig-frame iframe {
    height: 420px;
  }
}

/* INSTAGRAM (legado) */
.instagram-section {
  padding: 80px 20px;
  background: #0a0a0a;
  position: relative;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .25), transparent);
}

.instagram-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.instagram-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
}

.instagram-header p {
  font-family: 'Barlow', sans-serif;
  color: #7A7570;
  font-size: 17px;
  margin-bottom: 40px;
}

.instagram-frame {
  max-width: 540px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
  border: 1px solid rgba(201, 168, 76, .12);
}

.instagram-frame iframe {
  width: 100%;
  height: 650px;
  border: none;
  display: block;
}

@media(max-width:768px) {
  .instagram-header h2 {
    font-size: 30px;
  }

  .instagram-frame iframe {
    height: 550px;
  }
}

/* ── BOOKING INTRO (Logo + Título) ── */
.booking-intro {
  text-align: center;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(201, 168, 76, .12);
  padding-bottom: 24px;
}

.booking-logo-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.15);
}

.booking-intro-title {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* ── BOTÕES DA INTRODUÇÃO ── */
.booking-intro-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  /* Espaçamento entre os botões */
  margin-top: 16px;
}

.intro-action-btn {
  margin-bottom: 36px;
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  /* Espaço entre o ícone e o texto */
  transition: all 0.25s;
}

.intro-action-btn:hover {
  color: var(--gold);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(201, 168, 76, .06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 60% at 85% 80%, rgba(201, 168, 76, .04) 0%, transparent 50%),
    linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .25), transparent);
}

/* Glow decorativo no fundo */
.about-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── COLUNA IMAGEM ── */
.about-image-col {
  position: relative;
}

.about-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  border: 1px solid rgba(201, 168, 76, .15);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .7);
  /* Moldura dourada sutil no canto superior esquerdo */
}

/* Moldura dourada decorativa */
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  width: 60%;
  height: 60%;
  border-top: 2px solid rgba(201, 168, 76, .35);
  border-left: 2px solid rgba(201, 168, 76, .35);
  border-radius: 20px 0 0 0;
  z-index: 2;
  pointer-events: none;
}

/* Badge flutuante de anos de experiência */
.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #1a1508, #0f0e04);
  border: 1px solid rgba(201, 168, 76, .4);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .6), 0 0 0 1px rgba(201, 168, 76, .08) inset;
  z-index: 3;
}

.about-badge-number {
  font-family: var(--font-d);
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-badge-text {
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ── COLUNA TEXTO ── */
.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-label {
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.about-title {
  font-family: var(--font-d);
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-title em {
  color: var(--gold);
  font-style: italic;
}

.about-desc {
  font-size: 15px;
  color: rgba(240, 235, 225, 0.70);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-desc strong {
  color: var(--white);
  font-weight: 600;
}

/* STATS */
.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 28px 0 32px;
}

.about-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-num {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.about-stat-sep {
  width: 1px;
  height: 44px;
  background: rgba(201, 168, 76, .12);
  flex-shrink: 0;
}

/* CTA */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #1aaa52);
  color: #fff;
  font-family: var(--font-c);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .28);
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
  align-self: flex-start;
}

.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .45);
  filter: brightness(1.08);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-image-wrap::before {
    display: none;
  }

  .about-img {
    height: 360px;
  }

  .about-image-badge {
    bottom: 16px;
    right: 16px;
  }

  .about-title {
    font-size: 32px;
  }
}

@media (max-width: 560px) {
  .about-section {
    padding: 72px 20px 64px;
  }

  .about-img {
    height: 260px;
  }

  .about-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .about-stat-sep {
    width: 80%;
    height: 1px;
  }

  .about-cta {
    align-self: stretch;
    justify-content: center;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: #0c0c0c;
  padding: 100px 5% 80px;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .3), transparent);
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER DA SEÇÃO */
.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-label {
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.services-title {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.services-title em {
  color: var(--gold);
  font-style: italic;
}

.services-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* GRUPO */
.services-group {
  margin-bottom: 56px;
}

.services-group-title {
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, .12);
}

.combo-badge {
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

/* CARD BASE */
.svc-card {
  background: linear-gradient(160deg, #161616, #111);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .2), transparent);
  transition: opacity .3s;
  opacity: 0;
}

.svc-card:hover {
  border-color: rgba(201, 168, 76, .35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5), 0 0 0 1px rgba(201, 168, 76, .08) inset;
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-icon {
  font-size: 26px;
  line-height: 1;
}

.svc-body {
  flex: 1;
}

.svc-name {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.svc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.svc-price {
  font-family: var(--font-c);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
}

/* CARD COMBO */
.svc-card--combo .svc-combo-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-c);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .25);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 20px;
}

/* CARD DESTAQUE (Mais Popular) */
.svc-card--featured {
  background: linear-gradient(160deg, #1a1508, #110f04);
  border-color: rgba(201, 168, 76, .4);
  box-shadow: 0 8px 40px rgba(201, 168, 76, .1);
}

.svc-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, .06), transparent);
  pointer-events: none;
}

.svc-card--featured .svc-combo-tag {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

.svc-card--featured .svc-name {
  color: var(--gold-lt);
}

.svc-card--featured:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(201, 168, 76, .2), 0 0 0 1px rgba(201, 168, 76, .15) inset;
}

/* CTA BOTTOM */
.services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #1aaa52);
  color: #fff;
  font-family: var(--font-c);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .3);
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
}

.services-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .45);
  filter: brightness(1.08);
}

.services-cta-link {
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.services-cta-link:hover {
  color: var(--gold);
}

/* RESPONSIVO — SERVIÇOS */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid--combos {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .services-title {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  .services-section {
    padding: 72px 20px 60px;
  }

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

  .services-title {
    font-size: 32px;
  }

  .services-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .services-cta-btn {
    justify-content: center;
  }

  .services-cta-link {
    text-align: center;
    margin-top: 8px;
  }
}

/* ============================================
   PREMIUM HERO SECTION
   ============================================ */
.premium-hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  background: url('../img/hero-bg.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.premium-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg,
      rgba(12, 12, 12, 0.97) 0%,
      rgba(12, 12, 12, 0.75) 50%,
      rgba(12, 12, 12, 0.35) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.25) 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

/* Container alinhado com as demais seções */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.premium-hero-content {
  position: relative;
  max-width: 620px;
  animation: fadeRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-c);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-d);
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 18px;
  color: #D1D1D1;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 8px;
  font-family: var(--font-c);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-wpp {
  background: #C9A84C;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(208, 211, 37, 0.3);
}

.hero-btn-wpp:hover {
  background: #beae1e;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(211, 193, 37, 0.4);
}

.hero-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* PROVA SOCIAL */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50px;
  padding: 10px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-c);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(240, 235, 225, 0.70);
}

.proof-item strong {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}

.proof-separator {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 18px;
}

.star-icon {
  color: #FFD700;
  font-size: 15px;
}

.cut-icon {
  color: var(--gold);
  font-size: 15px;
}

/* ── FLOATING WHATSAPP ── */
.floating-wpp {
  position: fixed;
  bottom: 25px;
  right: 20px;
  background: linear-gradient(135deg, #25D366 0%, #1aaa52 100%);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: wppPulse 2.8s ease-in-out infinite;
}

@keyframes wppPulse {

  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.70), 0 0 0 10px rgba(37, 211, 102, 0.07);
  }
}

.floating-wpp:hover {
  transform: translateY(-5px) scale(1.10);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.60);
  animation: none;
}

/* ── RESPONSIVE HERO ── */
@media (max-width: 900px) {
  .premium-hero {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-title {
    font-size: 56px;
  }
}

@media (max-width: 600px) {
  .premium-hero {
    min-height: 100svh;
    padding: 100px 20px 40px;
    align-items: flex-end;
    background-position: 65% top;
  }

  .premium-hero-overlay {
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.6) 0%, rgba(12, 12, 12, 0.85) 50%, rgba(12, 12, 12, 0.98) 100%);
    height: 100%;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .floating-wpp svg {
    width: 22px;
    height: 22px;
  }
}

/* ── BOTÃO VOLTAR AO TOPO ── */
.btn-top-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.90);
  border: 1.5px solid rgba(201, 168, 76, .35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
  /* escondido por padrão */
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, border-color .2s, box-shadow .2s;
}

.btn-top-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.btn-top-top:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .1);
  box-shadow: 0 6px 24px rgba(201, 168, 76, .25);
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .btn-top-top {
    bottom: 99px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(201, 168, 76, .06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 60% at 85% 80%, rgba(201, 168, 76, .04) 0%, transparent 50%),
    linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  padding: 100px 5% 80px;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .25), transparent);
}

.contact-container {
  max-width: 760px;
  margin: 0 auto;
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-label {
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.contact-title {
  font-family: var(--font-d);
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.contact-title em {
  color: var(--gold);
  font-style: italic;
}

.contact-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
}

/* CARD */
.contact-card {
  background: linear-gradient(160deg, #161616, #111);
  border: 1px solid rgba(201, 168, 76, .14);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .35), transparent);
}

/* FORM LAYOUT */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.contact-group label {
  font-family: var(--font-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-group input,
.contact-group textarea {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, .03);
  border: 1.5px solid rgba(201, 168, 76, .12);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 15px;
  outline: none;
  transition: all .25s;
  resize: none;
}

.contact-group input::placeholder,
.contact-group textarea::placeholder {
  color: #3a3a3a;
}

.contact-group input:focus,
.contact-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .03);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .08);
}

/* FOOTER ROW */
.contact-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact-privacy {
  font-size: 13px;
  color: var(--muted);
}

/* BOTÃO */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: #111;
  font-family: var(--font-c);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  padding: 17px 32px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 168, 76, .25);
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
}

.contact-btn:hover {
  background: linear-gradient(135deg, var(--gold-lt) 0%, #f5e08a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, .40);
}

/* SUCESSO */
.contact-success {
  display: none;
  background: rgba(46, 204, 113, .08);
  border: 1px solid rgba(46, 204, 113, .3);
  color: #2ecc71;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
  text-align: center;
}

.contact-success.show {
  display: block;
}

/* RESPONSIVO */
@media (max-width: 700px) {
  .contact-card {
    padding: 28px 20px;
  }

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

  .contact-footer-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-btn {
    justify-content: center;
  }

  .contact-title {
    font-size: 32px;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
  padding: 100px 5% 80px;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .25), transparent);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-label {
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.faq-title {
  font-family: var(--font-d);
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.faq-title em {
  color: var(--gold);
  font-style: italic;
}

.faq-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
}

/* ACCORDION LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: linear-gradient(160deg, #161616, #111);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s ease;
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, .3);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201, 168, 76, .08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}

.faq-question:hover {
  color: var(--gold-lt);
}

.faq-item.active .faq-question {
  color: var(--gold);
  padding-bottom: 16px;
}

.faq-chevron {
  color: var(--gold);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.2, .8, .2, 1), padding .4s cubic-bezier(.2, .8, .2, 1);
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: rgba(240, 235, 225, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

.faq-answer p strong {
  color: var(--white);
  font-weight: 600;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .faq-title {
    font-size: 32px;
  }

  .faq-question {
    font-size: 15px;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-question {
    padding-bottom: 12px;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 20px;
  }
}

/* ── SERVICE ITEM FOTO (Agendamento Step 2) ── */
.service-item-foto {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(201,168,76,.2);
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
  transition: transform .2s;
}

.service-item:hover .service-item-foto {
  transform: scale(1.06);
  border-color: rgba(201,168,76,.5);
}

.service-item-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}