.typewriter-cursor {
  display: inline-block;
  margin-left: 0.08em;
  color: var(--gold);
  font-weight: 900;
  animation: typewriterPulse 0.8s infinite;
}

@keyframes typewriterPulse {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

.auto-3d {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.28s cubic-bezier(0.22, 0.68, 0.22, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    filter 0.28s ease;
}

.auto-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 0%), rgba(255, 255, 255, 0.22), rgba(201, 168, 76, 0.12) 28%, transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  transform: translateZ(34px);
}

.auto-3d:hover::before,
.auto-3d.is-tilting::before {
  opacity: 1;
}

.auto-3d:hover,
.auto-3d.is-tilting {
  border-color: rgba(201, 168, 76, 0.55);
  filter: saturate(1.08);
}

.auto-3d > * {
  position: relative;
  z-index: 3;
}


.section-heading h2,
.locales-premium-intro h2,
.gallery-heading h2,
.contact-copy h2,
.contact-panel-header h2,
.brand-title-style {
  font-family: var(--font-display);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.section-heading h2,
.gallery-heading h2 {
  color: var(--cream);
  text-shadow:
    0 12px 34px rgba(0, 0, 0, 0.62),
    0 0 38px rgba(201, 168, 76, 0.12);
}

.section-heading .label,
.gallery-heading .label,
.label {
  color: var(--gold-soft);
  font-weight: 950;
  letter-spacing: 0.42em;
}

.button,
.contact-submit,
.local-block-btn {
  letter-spacing: 0.18em;
}


.section-heading h2,
.locales-premium-intro h2,
.gallery-heading h2,
.contact-panel-header h2,
.barber-heading-style {
  font-family: var(--font-display);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.section-heading h2,
.gallery-heading h2,
.contact-panel-header h2 {
  text-shadow:
    0 12px 34px rgba(0, 0, 0, 0.62),
    0 0 38px rgba(201, 168, 76, 0.12);
}


.section-heading h2.checho-brand-heading,
.locales-premium-intro h2.checho-brand-heading {
  position: relative;
  display: inline-grid;
  justify-items: center;
  gap: 0.16em;
  margin: 0 auto 28px;
  color: var(--gold-soft);
  font-family: var(--font-body);
  line-height: 0.9;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.32));
  isolation: isolate;
}

.checho-brand-heading::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: min(240px, 54vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.9), transparent);
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.42);
}

.checho-brand-heading::after {
  content: "\\2702";
  position: absolute;
  left: 50%;
  bottom: -29px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 22px;
  color: var(--gold-soft);
  background: rgba(5, 5, 5, 0.04);
  font-family: var(--font-body);
  font-size: 1rem;
  transform: translateX(-50%);
  text-shadow: 0 0 14px rgba(201, 168, 76, 0.5);
}

.checho-script-word {
  position: relative;
  display: block;
  color: transparent;
  background: linear-gradient(180deg, #fff4a8 0%, #d9b653 42%, #9b6419 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Yellowtail", cursive;
  font-size: clamp(4.1rem, 8.5vw, 8.8rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 16px rgba(255, 231, 142, 0.34),
    0 12px 30px rgba(0, 0, 0, 0.34);
  transform: rotate(-2deg);
}

.checho-script-word::after {
  content: "";
  position: absolute;
  inset: 6% -8%;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.18), transparent 62%);
  filter: blur(12px);
}

.checho-title-word {
  display: block;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.35vw, 1.34rem);
  font-weight: 950;
  letter-spacing: 0.58em;
  line-height: 1;
  text-indent: 0.58em;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.35),
    0 0 14px rgba(255, 255, 255, 0.22);
}

.locales-brand-heading .checho-title-word {
  color: #080604;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.62),
    0 12px 28px rgba(0, 0, 0, 0.22);
}

.locales-brand-heading::after {
  background: rgba(255, 255, 255, 0.5);
}

.checho-brand-heading.visible,
.reveal.visible .checho-brand-heading {
  animation: chechoTitleIn 900ms cubic-bezier(0.2, 0.74, 0.2, 1) both;
}

@keyframes chechoTitleIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    filter: blur(8px) drop-shadow(0 14px 34px rgba(0, 0, 0, 0.18));
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 14px 34px rgba(0, 0, 0, 0.32));
  }
}

@media (max-width: 620px) {
  .checho-script-word {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .checho-title-word {
    font-size: 0.74rem;
    letter-spacing: 0.34em;
    text-indent: 0.34em;
  }
}

/* CHECHO BARBER TYPOGRAPHY GOLD START */
h1,
h2,
h3 {
  text-wrap: balance;
}

.header-brand-text {
  animation: brandHeaderGlow 3.4s ease-in-out infinite;
}

.header-brand-text::after {
  content: "";
  width: min(100%, 210px);
  height: 2px;
  margin-top: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.75);
}

@keyframes brandHeaderGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.36));
  }
}

.section-heading .label,
.gallery-heading .label,
.locales-premium-tag,
.contact-panel-header span,
.badge {
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-weight: 950;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(201, 168, 76, 0.26);
}

.gallery-heading h2,
.contact-panel-header h2 {
  color: #fff6c9;
  font-family: "Yellowtail", cursive;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: none;
  text-shadow:
    0.035em 0.035em 0 #050505,
    0 0 20px rgba(212, 175, 55, 0.22),
    0 12px 38px rgba(0, 0, 0, 0.55);
}

.price-card h3,
.local-block-info h3,
.local-block-box h4,
.local-block-prices h4,
.footer h3 {
  color: #fff6c9;
  font-family: var(--font-display);
  font-weight: 850;
  letter-spacing: 0.03em;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.42),
    0 0 18px rgba(212, 175, 55, 0.16);
}

.section-heading p,
.locales-premium-intro p,
.gallery-heading p,
.contact-panel-header p,
.contact-note,
.footer p,
.price-card p,
.price-card li,
.local-block-address,
.local-block-box p,
.local-block-prices span {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.75;
}

.section-heading p,
.gallery-heading p,
.contact-panel-header p,
.contact-note,
.footer p,
.price-card p,
.price-card li,
.local-block-address,
.local-block-box p,
.local-block-prices span {
  color: rgba(245, 239, 226, 0.76);
}

.locales-premium-intro p {
  color: rgba(8, 6, 4, 0.76);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button,
.contact-submit,
.local-block-btn {
  box-shadow:
    0 0 0 rgba(212, 175, 55, 0),
    0 12px 28px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    filter 0.26s ease;
}

.button:hover,
.contact-submit:hover,
.local-block-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.35),
    0 18px 34px rgba(0, 0, 0, 0.34);
  filter: saturate(1.12);
}

.social-links .social-icon {
  position: relative;
  overflow: hidden;
  animation: socialFloat 3.2s ease-in-out infinite;
}

.social-links .social-icon:nth-child(2) {
  animation-delay: 0.18s;
}

.social-links .social-icon:nth-child(3) {
  animation-delay: 0.36s;
}

.social-links .social-icon:nth-child(4) {
  animation-delay: 0.54s;
}

.social-links .social-icon::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(212, 175, 55, 0.18);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.social-links .social-icon:hover::before {
  opacity: 1;
  transform: scale(1);
  animation: socialSpin 1.4s linear infinite;
}

@keyframes socialFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes socialSpin {
  to {
    transform: rotate(1turn) scale(1);
  }
}
/* CHECHO BARBER TYPOGRAPHY GOLD END */
/* ==========================================
   SOLO TITULOS ESTILO CHECHO BARBER
   h1, h2, h3
========================================== */

h1,
h2,
h3 {
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #fff6c9;
  text-shadow:
    0.045em 0.045em 0 #050505,
    0 0 14px rgba(212, 175, 55, 0.26),
    0 14px 30px rgba(0, 0, 0, 0.35);
}

/* Tamaños */
h1 {
  font-size: clamp(4rem, 9vw, 8rem);
}

h2 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

h3 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

/* Quitar líneas, tijeras o subrayados animados en títulos */
h1::before,
h1::after,
h2::before,
h2::after,
h3::before,
h3::after,
.checho-brand-heading::before,
.checho-brand-heading::after,
.academy-brand-heading::before,
.academy-brand-heading::after,
.locales-brand-heading::before,
.locales-brand-heading::after,
.section-heading h2::before,
.section-heading h2::after,
.gallery-heading h2::before,
.gallery-heading h2::after,
.contact-panel-header h2::before,
.contact-panel-header h2::after,
.locales-premium-intro h2::before,
.locales-premium-intro h2::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

/* Si tienes spans dentro del título CHECHO'S / ACADEMY */
.checho-script-word,
.checho-title-word {
  font-family: "Yellowtail", cursive !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  color: #fff6c9 !important;
  text-shadow:
    0.045em 0.045em 0 #050505,
    0 0 14px rgba(212, 175, 55, 0.26),
    0 14px 30px rgba(0, 0, 0, 0.35);
}

/* Quitar animación de movimiento en títulos */
h1,
h2,
h3,
.checho-script-word,
.checho-title-word {
  animation: none !important;
  transform: none !important;
  filter: none !important;
}