:root{
  --ob-amarillo:#ffcc0a;
  --ob-azul:#141947;
  --ob-morado:#a54a97;

  --bg:#ffffff;
  --ink:#0f1222;
  --muted:rgba(20,25,71,.72);

  --card:#ffffff;
  --line:rgba(20,25,71,.12);

  --shadow: 0 14px 40px rgba(20,25,71,.12);
  --shadow2: 0 10px 24px rgba(20,25,71,.10);

  --r-xl:22px;
  --r-lg:18px;
  --r-md:14px;

  --container: 1200px;
}

*{ box-sizing:border-box; }
img{ max-width:100%; display:block; }
.hora-page{
  background: var(--bg);
  color: var(--ink);
}
.hora-page h3{
  letter-spacing: 2px;
}

/* Layout helpers */
.hora-container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.hora-section{
  padding: 72px 0;
}
.hora-section--tint{
  background:
    radial-gradient(900px 300px at 10% 10%, rgba(165,74,151,.14), transparent 60%),
    radial-gradient(900px 300px at 90% 30%, rgba(255,204,10,.12), transparent 60%),
    linear-gradient(180deg, rgba(20,25,71,.03), rgba(20,25,71,.01));
}
.hora-sectionHead{
  max-width: 860px;
  margin-bottom: 26px;
}
.hora-sectionHead h2{
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
  margin: 0 0 10px;
  letter-spacing: .2px;
}
.hora-sectionHead p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* Hero */
.hora-hero{
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20,25,71,.96), rgba(20,25,71,.90));
}
.hora-hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hora-hero__bg{
  position:absolute;
  inset:-120px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.65)),
    radial-gradient(900px 360px at 15% 20%, rgba(255,204,10,.10), transparent 60%),
    radial-gradient(800px 340px at 80% 30%, rgba(165,74,151,.12), transparent 60%),
    radial-gradient(700px 260px at 50% 80%, rgba(255,204,10,.08), transparent 65%);
  filter: blur(0px);
  opacity: .55;
  pointer-events:none;
  z-index: 1;
}
.hora-hero__content{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.hora-kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  margin:0 0 12px;
  color: rgba(255,255,255,.82);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
}
.hora-title{
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.03;
  letter-spacing: .2px;
}
.hora-subtitle{
  margin: 0 0 18px;
  color: rgba(255,255,255,.80);
  line-height: 1.6;
  max-width: 54ch;
}
.hora-hero__ctas{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 14px 0 16px;
}
.hora-hero__badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.hora-badge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  font-size: 12px;
}

/* Buttons */
.hora-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .2px;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  user-select:none;
}
.hora-btn--primary{
  background: var(--ob-amarillo);
  color: #111;
  box-shadow: 0 12px 26px rgba(255,204,10,.22);
}
.hora-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(255,204,10,.28);
}
.hora-btn--ghost{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.hora-btn--ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.06);
}

.hora-btn--whatsapp{
  background: linear-gradient(135deg, #25d366, #1da851);
  border-color: #1fb45a;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,211,102,.25);
}
.hora-btn--whatsapp:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(37,211,102,.32);
}

/* Hero media */
.hora-mediaCard{
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  padding: 16px;
}
.hora-mediaCard__frame{
  border-radius: 18px;
  overflow:hidden;
  height: 300px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.hora-mediaCard__frame img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.hora-mediaCard__frame--placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
}
.hora-mediaCard__placeholder{
  display:none;
  text-align:center;
  color: rgba(255,255,255,.75);
}
.hora-mediaCard__frame--placeholder .hora-mediaCard__placeholder{
  display:block;
}
.hora-mediaCard__placeholder p{
  margin:0 0 6px;
  font-weight:700;
}
.hora-mediaCard__placeholder small{
  opacity:.85;
}
.hora-mediaCard__miniGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hora-mini{
  border-radius: 16px;
  padding: 12px 12px 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.hora-mini__title{
  display:block;
  color: rgba(255,255,255,.70);
  font-size: 12px;
  letter-spacing:.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hora-mini__value{
  display:block;
  color:#fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2px;
}
.hora-mini__desc{
  display:block;
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  line-height: 1.35;
}

/* Scroll hint */
.hora-scrollHint{
  position:absolute;
  left:50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.hora-scrollHint span{
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,.86);
  border-bottom: 2px solid rgba(255,255,255,.86);
  transform: rotate(45deg);
  animation: hora-bounce 1.25s ease-in-out infinite;
}
@keyframes hora-bounce{
  0%,100%{ transform: translateY(-2px) rotate(45deg); opacity:.9; }
  50%{ transform: translateY(3px) rotate(45deg); opacity:1; }
}

/* Cards / lists */
.hora-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}
.hora-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.hora-card h3{
  margin: 0 0 10px;
  font-size: 18px;
}
.hora-muted{ color: var(--muted); line-height: 1.6; }
.hora-list{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.hora-pillRow{
  margin-top: 12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.hora-pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20,25,71,.14);
  background: linear-gradient(180deg, rgba(255,204,10,.14), rgba(165,74,151,.08));
  color: rgba(20,25,71,.86);
  font-weight: 700;
  font-size: 12px;
}

/* Filters */
.hora-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 18px 0 14px;
}
.hora-filter{
  border: 1px solid rgba(20,25,71,.16);
  background: #fff;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 800;
  color: rgba(20,25,71,.86);
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.hora-filter:hover{ transform: translateY(-1px); }
.hora-filter.is-active{
  border-color: rgba(255,204,10,.75);
  background: rgba(255,204,10,.18);
}

/* Modules grid */
.hora-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hora-module{
  position:relative;
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  padding: 16px;
  min-height: 170px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hora-module:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(165,74,151,.24);
}
.hora-module__top h3{
  margin: 10px 0 8px;
  font-size: 18px;
  letter-spacing:.1px;
}
.hora-module__top p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.hora-tag{
  display:inline-flex;
  align-items:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing:.06em;
  text-transform: uppercase;
  color: rgba(20,25,71,.92);
  background: linear-gradient(90deg, rgba(255,204,10,.30), rgba(165,74,151,.18));
  border: 1px solid rgba(20,25,71,.10);
}
.hora-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  margin-top: 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,204,10,.6);
  background: linear-gradient(180deg, rgba(255,204,10,.95), rgba(255,204,10,.8));
  color: #111;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255,204,10,.22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.hora-link:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255,204,10,.3);
}

.hora-note{
  margin-top: 16px;
  border-radius: var(--r-lg);
  padding: 14px 16px;
  border: 1px solid rgba(20,25,71,.12);
  background: rgba(20,25,71,.02);
  color: var(--muted);
}

/* Gallery */
.hora-gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.hora-shot{
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  background: #fff;
}
.hora-shot__btn{
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  cursor: zoom-in;
  background: transparent;
}
.hora-shot__btn:focus-visible{
  outline: 2px solid var(--ob-amarillo);
  outline-offset: 3px;
  border-radius: 18px;
}
.hora-shot__btn img{
  width:100%;
  height: 190px;
  object-fit: cover;
  transition: transform .3s ease;
}
.hora-shot__btn:hover img{
  transform: scale(1.03);
}
.hora-shot figcaption{
  padding: 10px 12px;
  font-weight: 800;
  color: rgba(20,25,71,.86);
}
.hora-shot.is-missing{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(255,204,10,.12), rgba(165,74,151,.08));
}
.hora-shot.is-missing img{ display:none; }
.hora-shot.is-missing .hora-shot__btn{ display:none; }
.hora-galleryHint{ margin-top: 10px; }

/* Steps */
.hora-steps{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.hora-step{
  border-radius: var(--r-xl);
  background:#fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.hora-step__num{
  display:inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  color: rgba(20,25,71,.92);
  background: rgba(255,204,10,.22);
  border: 1px solid rgba(255,204,10,.55);
}
.hora-step h3{
  margin: 10px 0 6px;
  font-size: 16px;
}
.hora-step p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* Accordion */
.hora-accordion{
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow2);
  overflow:hidden;
  margin-top: 12px;
}
.hora-acc__btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  cursor:pointer;
  font-weight: 900;
  color: rgba(20,25,71,.92);
}
.hora-acc__icon{
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(20,25,71,.70);
  border-bottom: 2px solid rgba(20,25,71,.70);
  transform: rotate(-45deg);
  transition: transform .18s ease;
}
.hora-acc__btn[aria-expanded="true"] .hora-acc__icon{
  transform: rotate(45deg);
}
.hora-acc__panel{
  padding: 0 16px 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA */
.hora-cta{
  padding: 64px 0;
  background: linear-gradient(135deg, rgba(20,25,71,.96), rgba(165,74,151,.20));
}
.hora-cta__inner{
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
  padding: 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 18px;
}
.hora-cta__text h2{
  margin:0 0 8px;
  color:#fff;
  font-size: 26px;
}
.hora-cta__text p{
  margin:0;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  max-width: 60ch;
}
.hora-cta__actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* Modal */
.hora-modal{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 9999;
}
.hora-modal.is-open{ display:block; }
.hora-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(10,12,24,.62);
  backdrop-filter: blur(3px);
}
.hora-modal__dialog{
  position: relative;
  width: min(680px, calc(100% - 26px));
  margin: 6vh auto 0;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.10);
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.30);
  padding: 18px;
  transform: translateY(10px);
  opacity: 0;
  animation: hora-pop .20s ease forwards;
}
@keyframes hora-pop{
  to{ transform: translateY(0); opacity: 1; }
}
.hora-modal__close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(20,25,71,.14);
  background: #fff;
  cursor:pointer;
}
.hora-modal__close:before,
.hora-modal__close:after{
  content:"";
  position:absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: rgba(20,25,71,.72);
  transform-origin:center;
}
.hora-modal__close:before{ transform: translate(-50%,-50%) rotate(45deg); }
.hora-modal__close:after{ transform: translate(-50%,-50%) rotate(-45deg); }
.hora-modal h3{
  margin: 6px 44px 8px 0;
  font-size: 20px;
}
.hora-modal__bullets{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.hora-modal__bullets .hora-bul{
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(20,25,71,.12);
  background: rgba(20,25,71,.02);
  color: rgba(20,25,71,.86);
  font-weight: 700;
}
.hora-modal__footer{
  display:flex;
  gap: 10px;
  justify-content:flex-end;
  flex-wrap:wrap;
  margin-top: 16px;
}
.hora-modal .hora-btn--ghost{
  color: rgba(20,25,71,.92);
  border-color: rgba(20,25,71,.18);
  background: #fff;
}
.hora-modal .hora-btn--ghost:hover{
  background: rgba(20,25,71,.04);
}
.hora-modal--gallery .hora-modal__dialog{
  width: min(980px, calc(100% - 26px));
  padding: 12px;
  background: rgba(10,12,24,.98);
  border: 1px solid rgba(255,255,255,.16);
}
.hora-modal--gallery .hora-modal__image{
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  background: #0b0f1f;
}
.hora-modal--gallery .hora-modal__close{
  background: rgba(255,255,255,.95);
}

/* Reveal animations */
.reveal{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hora-hero__content{ grid-template-columns: 1fr; }
  .hora-mediaCard__miniGrid{ grid-template-columns: 1fr; }
  .hora-split{ grid-template-columns: 1fr; }
  .hora-grid{ grid-template-columns: 1fr 1fr; }
  .hora-gallery{ grid-template-columns: 1fr 1fr; }
  .hora-steps{ grid-template-columns: 1fr 1fr; }
  .hora-cta__inner{ flex-direction:column; align-items:flex-start; }
  .hora-cta__actions{ justify-content:flex-start; }
}
@media (max-width: 560px){
  .hora-section{ padding: 54px 0; }
  .hora-grid{ grid-template-columns: 1fr; }
  .hora-steps{ grid-template-columns: 1fr; }
  .hora-gallery{ grid-template-columns: 1fr; }
  .hora-modal__bullets{ grid-template-columns: 1fr; }
}
