*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.hb-page {
  font-family: Arial, Calibri,  sans-serif;
  background: #1a0f05;
  color: #f5e8cf;
  overflow-x: hidden;
  width: 100%;
}

.hb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #1a0f05;
  isolation: isolate;
  padding: 16px 40px 16px;
  width: 100%;
}

.hb-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: .5;
  animation: hb-grain-shift 8s steps(2) infinite;
}
@keyframes hb-grain-shift {
  0%,100% { transform: translate(0,0); }
  25%     { transform: translate(-2%,-1%); }
  50%     { transform: translate(1%,2%); }
  75%     { transform: translate(-1%,1%); }
}

.hb-bloom {
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,.15) 0%, transparent 68%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; z-index: 0;
}

.hb-bg-word {
  position: absolute;
  top: 20px; right: 20px;
  font-family: Arial, Calibri, sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232,184,74,.06);
  line-height: 1; user-select: none; pointer-events: none;
  z-index: 1; letter-spacing: -2px;
}

.hb-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.hb-orb-1 { top: -60px; left: -60px; width: 300px; height: 300px; border: 40px solid rgba(245,232,207,.03); }
.hb-orb-2 { bottom: -80px; right: -80px; width: 400px; height: 400px; border: 50px solid rgba(245,232,207,.02); }

.hb-hero-split {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 10px;
}

.hb-hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding-right: 20px;
}

.hb-hero-h1 {
  font-family: Arial, Calibri, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700; line-height: 1.1; letter-spacing: 1px;
  margin-bottom: 8px; overflow: hidden;
}
.hb-hero-h1 .hb-line {
  display: block; transform: translateY(100%);
  animation: hb-line-up .9s cubic-bezier(.22,.68,0,1.2) forwards;
}
.hb-hero-h1 .hb-line:nth-child(1) { animation-delay: .2s; color: #f5e8cf; }
.hb-hero-h1 .hb-line:nth-child(2) { animation-delay: .4s; color: #e8b84b; }
@keyframes hb-line-up { to { transform: translateY(0); } }

.hb-hero-line {
  width: 160px; height: 2px;
  background: linear-gradient(to right, #e8b84b, transparent);
  margin-bottom: 10px;
  position: relative;
  animation: hb-fade-up .9s .5s both;
}
.hb-hero-line::after {
  content: ''; position: absolute;
  right: -6px; top: -3px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #e8b84b;
}

.hb-hero-desc {
  font-size: 0.82rem; line-height: 1.55;
  color: rgba(245,232,207,.85); font-weight: 300;
  max-width: 480px; margin-bottom: 8px;
  animation: hb-fade-up .9s .7s both;
}
.hb-hero-desc strong { color: #fff; font-weight: 700; }

.hb-hero-star {
  font-size: 0.88rem; color: #e8b84b; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  animation: hb-fade-up .9s .85s both;
}
.hb-hero-star i { font-size: 0.82rem; }

.hb-hero-visual {
  display: flex; align-items: center; justify-content: center;
  animation: hb-fade-up 1s .5s both;
  width: 100%;
  padding: 8px;
}
.hb-owl-wrap { 
  text-align: center; 
  width: 100%;
  max-width: 200px;
}
.hb-owl-logo {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(200,146,42,.2));
  animation: hb-owl-float 4s ease-in-out infinite;
}
@keyframes hb-owl-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
.hb-owl-tagline {
  font-family: Arial, Calibri, sans-serif;
  font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(245,232,207,.55);
  margin-top: 12px;
}

.hb-cards-wrap {
  position: relative; z-index: 2;
  max-width: 1200px; 
  margin: 8px auto 0;
  display: flex; 
  flex-direction: column; 
  align-items: center;
  width: 100%;
}

.hb-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.hb-card {
  background: #2a1a0a;
  border: 1px solid rgba(200,146,42,.2);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: background .35s, border-color .35s, transform .35s;
  cursor: default;
  position: relative; overflow: hidden;
}
.hb-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(to top, rgba(200,146,42,.08), transparent);
  transition: height .4s;
}
.hb-card:hover {
  background: #342010;
  border-color: rgba(232,184,74,.4);
  transform: translateY(-3px);
}
.hb-card:hover::after { height: 100%; }

.hb-card-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,146,42,.12);
  border: 1px solid rgba(200,146,42,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #e8b84b; font-size: 0.85rem;
  transition: background .35s, border-color .35s;
  position: relative; z-index: 1;
}
.hb-card:hover .hb-card-icon {
  background: rgba(200,146,42,.22);
  border-color: rgba(200,146,42,.55);
}

.hb-card-text { position: relative; z-index: 1; }
.hb-card-text h3 {
  font-family: Arial, Calibri, sans-serif;
  font-size: 0.80rem; font-weight: 700;
  color: #f5e8cf; margin-bottom: 4px;
  letter-spacing: .3px;
}
.hb-card-text p {
  font-size: 0.70rem; line-height: 1.45;
  color: rgba(245,232,207,.65); font-weight: 300;
}

.hb-cta-gold {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: Arial, Calibri, sans-serif;
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  color: #1a0f05;
  background: linear-gradient(135deg, #e8b84b, #c8922a);
  padding: 10px 28px;
  text-decoration: none; font-weight: 700;
  margin-top: 14px;
  border-radius: 6px;
  transition: transform .3s, box-shadow .3s;
}
.hb-cta-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200,146,42,.35);
}
.hb-cta-gold i { font-size: 0.72rem; transition: transform .3s; }
.hb-cta-gold:hover i { transform: translateX(4px); }

.hb-ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(92,54,16,.2);
  border-bottom: 1px solid rgba(92,54,16,.2);
  padding: 16px 0;
  background: #2a1a0a;
  width: 100%;
}
.hb-ticker {
  display: flex; width: max-content;
  animation: hb-ticker-move 26s linear infinite;
}
.hb-ticker-item {
  font-family: Arial, Calibri, sans-serif;
  font-size: .7rem; letter-spacing: 4px; text-transform: uppercase;
  color: #ffffff;
  padding: 0 36px; white-space: nowrap;
  display: flex; align-items: center; gap: 20px;
}
.hb-ticker-item::after { content: '◆'; font-size: .45rem; color: rgba(232,184,74,.7); }
@keyframes hb-ticker-move {
  from { transform: translateX(0) } to { transform: translateX(-50%) }
}

.hb-section {
  position: relative;
  padding: 60px 50px;
  overflow: hidden;
  width: 100%;
}

.hb-section-eyebrow {
  font-family: Arial, Calibri, sans-serif;
  font-size: .6rem; letter-spacing: 6px; text-transform: uppercase;
  color: #e8b84b;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.hb-section-eyebrow::after {
  content: ''; flex: 1; max-width: 60px; height: 1px; background: #e8b84b;
}

/* ═══════════════════════════════
   MODALIDADES
   ═══════════════════════════════ */
.hb-modal-section { background: #ffffff; }
.hb-modal-section .hb-section-eyebrow { color: #c8922a; }
.hb-modal-section .hb-section-eyebrow::after { background: #c8922a; }
.hb-modal-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.hb-modal-header { margin-bottom: 50px; text-align: center; }
.hb-modal-header .hb-section-eyebrow { justify-content: center; }
.hb-modal-header .hb-section-eyebrow::after { display: none; }
.hb-modal-header .hb-section-eyebrow::before {
  content: ''; flex: 1; max-width: 60px; height: 1px; background: #c8922a;
}
.hb-modal-h2 {
  font-family: Arial, Calibri, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: #3d2008;
  letter-spacing: 1px;
  line-height: 1.1;
}
.hb-modal-h2 em { font-style: normal; color: #c8922a; }
.hb-modal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hb-modal-card {
  position: relative;
  padding: 44px 34px; overflow: hidden;
  background: #fff8f0;
  border: 1px solid rgba(92,54,16,.12);
  transition: background .4s, box-shadow .4s;
  box-shadow: 0 4px 24px rgba(92,54,16,.07);
}
.hb-modal-card:hover { background: #fff3e6; box-shadow: 0 8px 36px rgba(92,54,16,.14) }
.hb-modal-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent, #e8b84b 30%, #c8922a 70%, transparent);
}
.hb-modal-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(200,146,42,.1);
  border: 1px solid rgba(200,146,42,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: #c8922a; font-size: 1.05rem;
}
.hb-modal-title {
  font-family: Arial, Calibri, sans-serif; font-size: .78rem; letter-spacing: 4px;
  text-transform: uppercase; color: #3d2008; font-weight: 700; margin-bottom: 12px;
}
.hb-modal-body {
  font-size: .88rem; line-height: 1.9;
  color: #5c3610; font-weight: 300;
}

/* ═══════════════════════════════
   TALLERES
   ═══════════════════════════════ */
.hb-workshops-section { background: #1a0f05; }
.hb-workshops-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.hb-workshops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hb-workshops-h2 {
  font-family: Arial, Calibri, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: #f5e8cf;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.1;
  text-align: center;
}
.hb-workshops-h2 em {
  font-style: normal;
  color: #e8b84b;
}

.hb-workshops-body {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(245,232,207,.85);
  font-weight: 300;
  margin-bottom: 24px;
}
.hb-workshops-body strong { color: #f5e8cf; font-weight: 700; }

.hb-workshops-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.hb-wtag {
  font-family: Arial, Calibri, sans-serif;
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8b84b;
  border: 1px solid rgba(232,184,74,.4);
  padding: 10px 18px;
  transition: background .3s, border-color .3s;
  background: transparent;
}
.hb-wtag:hover {
  background: rgba(232,184,74,.1);
  border-color: rgba(232,184,74,.7);
}

.hb-workshops-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: Arial, Calibri, sans-serif;
  font-size: .75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #1a0f05;
  background: linear-gradient(135deg, #e8b84b, #c8922a);
  padding: 18px 36px;
  text-decoration: none;
  margin-top: 32px;
  font-weight: 700;
  border-radius: 6px;
  transition: transform .3s, box-shadow .3s;
}
.hb-workshops-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200,146,42,.35);
}
.hb-workshops-cta i {
  font-size: .85rem;
  transition: transform .3s;
}
.hb-workshops-cta:hover i {
  transform: translateX(4px);
}

.hb-workshops-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.hb-wv-card {
  background: rgba(245,232,207,.04);
  border: 1px solid rgba(232,184,74,.15);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: background .35s, border-color .35s, transform .35s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hb-wv-card:hover {
  background: rgba(232,184,74,.08);
  border-color: rgba(232,184,74,.3);
  transform: translateY(-3px);
}
.hb-wv-card.hb-wv-wide {
  grid-column: span 2;
}

.hb-wv-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(200,146,42,.1);
  border: 1px solid rgba(232,184,74,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .35s, border-color .35s;
}
.hb-wv-card:hover .hb-wv-icon-circle {
  background: rgba(200,146,42,.18);
  border-color: rgba(232,184,74,.5);
}
.hb-wv-icon-circle i {
  font-size: 1.8rem;
  color: #e8b84b;
}

.hb-wv-card strong {
  font-family: Arial, Calibri, sans-serif;
  font-size: .95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f5e8cf;
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
}

.hb-wv-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #e8b84b, #c8922a);
  margin-bottom: 14px;
}

.hb-wv-card span {
  font-family: Arial, Calibri, sans-serif;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,232,207,.65);
  display: block;
  line-height: 1.7;
}

/* ═══════════════════════════════
   CTA FINAL
   ═══════════════════════════════ */
.hb-cta-section {
  background: #ffffff;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(92,54,16,.1);
}
.hb-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,146,42,.07), transparent 65%);
  pointer-events: none;
}
.hb-cta-inner {
  max-width: 850px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
  width: 100%;
}
.hb-cta-eyebrow {
  font-family: Arial, Calibri, sans-serif;
  font-size: .6rem; letter-spacing: 7px; text-transform: uppercase;
  color: #c8922a;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 24px;
}
.hb-cta-eyebrow::before, .hb-cta-eyebrow::after {
  content: ''; flex: 1; max-width: 60px; height: 1px; background: #c8922a;
}
.hb-cta-h2 {
  font-family: Arial, Calibri, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700; color: #3d2008; letter-spacing: 1px;
  margin-bottom: 24px; line-height: 1.2;
}
.hb-cta-h2 em { font-style: normal; color: #c8922a }
.hb-cta-body {
  font-size: .97rem; line-height: 1.95;
  color: #5c3610; font-weight: 300;
  margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hb-cta-body strong { color: #3d2008; font-weight: 700; }
.hb-cta-btn {
  display: inline-flex;
  align-items: center; gap: 14px;
  font-family: Arial, Calibri, sans-serif;
  font-size: .7rem; letter-spacing: 5px; text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #7b4f1e, #5c3610);
  padding: 17px 40px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  font-weight: 700;
}
.hb-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(92,54,16,.3);
}
.hb-cta-btn svg { width: 18px; height: 18px; stroke: #ffffff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ═══════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════ */
.hb-reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.23,1,.32,1);
}
.hb-reveal.hb-in { opacity: 1; transform: translateY(0) }
.hb-r1 { transition-delay: .08s }
.hb-r2 { transition-delay: .2s }
.hb-r3 { transition-delay: .32s }
.hb-r4 { transition-delay: .44s }
.hb-r5 { transition-delay: .56s }
.hb-r6 { transition-delay: .68s }

@keyframes hb-fade-up {
  from { opacity: 0; transform: translateY(22px) }
  to   { opacity: 1; transform: translateY(0) }
}

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 1024px) {
  .hb-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hb-workshops-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hb-workshops-visual {
    order: -1;
  }
}

@media (max-width: 900px) {
  .hb-hero-split { grid-template-columns: 1fr; text-align: center; }
  .hb-hero-content { padding-right: 0; align-items: center; }
  .hb-hero-line { margin-left: auto; margin-right: auto; }
  .hb-hero-star { justify-content: center; }
  .hb-hero-desc { max-width: 100%; }
  .hb-hero-visual { margin-bottom: 20px; padding: 10px; }
  .hb-modal-cards { grid-template-columns: 1fr; }
  .hb-section { padding: 45px 24px; }
}

@media (max-width: 768px) {
  .hb-hero { padding: 30px 20px 40px; }
  .hb-cards-grid { grid-template-columns: 1fr; }
  .hb-card { flex-direction: column; align-items: center; text-align: center; }
  .hb-bg-word { font-size: 4rem; top: 15px; }
  .hb-owl-logo { max-width: 200px; }
  .hb-workshops-visual {
    grid-template-columns: 1fr;
  }
  .hb-wv-card.hb-wv-wide {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hb-hero-h1 { font-size: 1.8rem; }
  .hb-hero-desc { font-size: 0.88rem; }
  .hb-owl-logo { max-width: 160px; }
}