/* /Humo-aereo/humo.css */

/* Paleta corporativa */
:root{
  --yellow:#ffcc0a;
  --blue:#141947;
  --purple:#a54a97;

  --bg:#ffffff;
  --surface:#f7f8fc;
  --text:#0f1226;
  --muted:rgba(15,18,38,.72);
  --line:rgba(15,18,38,.12);

  --radius:18px;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

/* Base */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  color:var(--text);
  background: #ffffff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.humo-page h3{
  letter-spacing: 2px;
}

.humo-page{
  min-height:60vh;
}

.container{
  width:min(1150px, calc(100% - 40px));
  margin-inline:auto;
}

a{ color:inherit; text-decoration:none; }

/* HERO */
.hero{
  position:relative;
  margin:0;
}

.hero__media{
  position:relative;
  width:100%;
  height: min(78vh, 760px);
  min-height: 520px;
  overflow:hidden;
  border-bottom: 1px solid var(--line);
}

.hero__video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: contrast(1.03) saturate(1.05);
}

.hero__shade{
  position:absolute;
  inset:auto 0 0 0;
  height:45%;
  background: linear-gradient(180deg, transparent 0%, rgba(7,10,27,.25) 20%, rgba(7,10,27,.65) 65%, rgba(7,10,27,.90) 100%);
  pointer-events:none;
}

.hero__overlay{
  position:absolute;
  inset:0;
  display:grid;
  align-content:center;
  justify-items:center;
  padding: clamp(22px, 4vw, 46px);
  opacity:0;
  transform: translateY(10px);
  transition: opacity .65s ease, transform .65s ease;
  pointer-events:none;
}

.hero__overlay.is-visible{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

.hero__overlayInner{
  width:min(760px, 100%);
  margin-inline: auto;
  background: linear-gradient(180deg, rgba(20,25,71,.50) 0%, rgba(15,21,56,.68) 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(16px, 2.6vw, 26px);
  backdrop-filter: blur(10px);
  text-align: center;
  color: #ffffff;
}

.hero__kicker{
  margin:0 0 8px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(255,204,10,.92);
  font-size: .82rem;
}

.hero__title{
  margin:0 0 10px;
  font-size: clamp(2.0rem, 3.8vw, 3.1rem);
  line-height:1.06;
}

.hero__subtitle{
  margin:0 0 18px;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height:1.55;
}

.hero__ctaRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content: center;
  margin-bottom:14px;
}

.hero__badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content: center;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,10,27,.35);
  color: rgba(238,240,255,.9);
  font-size:.88rem;
}

/* Replay button */
.hero__replay{
  position:absolute;
  top: 16px;
  right: 16px;
  z-index:5;
  opacity:0;
  transform: translateY(-6px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events:none;

  border: 1px solid rgba(255,255,255,.16);
  background: rgba(7,10,27,.45);
  color: rgba(238,240,255,.92);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 10px 14px;
  cursor:pointer;
  font-weight: 650;
}

.hero__replay.is-visible{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

.hero__replay:hover{
  border-color: rgba(255,204,10,.40);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 750;
  letter-spacing:.01em;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
  user-select:none;
}

.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(135deg, rgba(255,204,10,1) 0%, rgba(165,74,151,1) 110%);
  color: #0b0f2a;
  box-shadow: 0 14px 34px rgba(255,204,10,.16);
}

.btn--primary:hover{ opacity:.95; }

.btn--ghost{
  background: #ffffff;
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover{
  border-color: rgba(15,18,38,.28);
  background: #ffffff;
}
.hero__overlay .btn--ghost{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  color: #ffffff;
}
.hero__overlay .btn--ghost:hover{
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.12);
}

/* Sections */
.section{
  padding: clamp(42px, 5vw, 72px) 0;
}

.section--tight{
  padding: clamp(34px, 4.6vw, 60px) 0;
}

.section--alt{
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--gallery{
  position: relative;
  background: url("/assets/img/humo.jpeg") center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}
.section--gallery::before{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(10,12,26,.62);
}
.section--gallery .container{
  position: relative;
  z-index: 1;
}
.section--gallery .section__lead{
  color: rgba(255,255,255,.82);
}
.section--gallery .ph{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
}

.section__header{
  margin-bottom: 22px;
}

.section__title{
  margin:0 0 10px;
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
}

.section__lead{
  margin:0;
  color: var(--muted);
  line-height:1.6;
  max-width: 72ch;
}

/* Layout */
.grid{
  display:grid;
  gap: 18px;
}

.grid--2{
  grid-template-columns: repeat(2, minmax(0,1fr));
}

@media (max-width: 920px){
  .hero__media{ min-height: 480px; height: 72vh; }
  .grid--2{ grid-template-columns: 1fr; }
}

/* Card */
.card{
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(15,18,38,.10);
  padding: 18px 18px 16px;
}

.card__title{
  margin:0 0 10px;
  font-size: 1.15rem;
}

.card__text{
  margin:0;
  color: var(--muted);
  line-height:1.7;
}

/* Lists */
.list{
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--text);
  line-height: 1.7;
}
.list li{ margin: 6px 0; }

/* Mini stats */
.miniGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 520px){
  .miniGrid{ grid-template-columns: 1fr; }
}

.miniStat{
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 12px 10px;
}
.miniStat__k{
  margin:0 0 6px;
  font-size: .86rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgb(11, 5, 46);
}
.miniStat__v{
  margin:0;
  color: var(--text);
  line-height:1.4;
}

/* Colors row */
.colorRow{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  align-items:center;
}

.colorChip{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
}

.dot{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(15,18,38,.08);
}
.dot--blue{ background:#3b6cff; }
.dot--burgundy{ background:#6a0f2b; }
.dot--green{ background:#2ecc71; }
.dot--lightgreen{ background:#9cff57; }
.dot--pink{ background:#ff4db8; }
.dot--purple{ background: var(--purple); }
.dot--yellow{ background: var(--yellow); }
.dot--red{ background:#ff3a2e; }

.notice{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  line-height:1.65;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.gallery__item{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  box-shadow: 0 16px 36px rgba(7,10,27,.35);
}

.gallery__frame{
  width:100%;
  aspect-ratio: 4 / 3;
}

.gallery__image{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.ph{
  min-height: 220px;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  background: var(--surface);
  display:grid;
  place-items:center;
  color: var(--muted);
  text-align:center;
  padding: 18px;
}

/* FAQ */
.faq{
  display:grid;
  gap: 12px;
}

.faq__item{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 10px 12px;
}

.faq__item summary{
  cursor:pointer;
  font-weight: 750;
  outline:none;
  list-style:none;
}

.faq__item summary::-webkit-details-marker{ display:none; }

.faq__content{
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.ctaCard{
  margin-top: 18px;
  display:flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(20,25,71,.18);
  background: linear-gradient(135deg, rgba(20,25,71,.08), #ffffff 65%);
  padding: 18px;
}

.ctaCard__text{
  max-width: 70ch;
}

.ctaCard__text h3{
  margin:0 0 8px;
  font-size: 1.2rem;
  color: var(--blue);
}

.ctaCard__text p{
  margin:0;
  color: var(--muted);
  line-height:1.65;
}

.ctaCard__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ctaCard .btn--primary{
  background: linear-gradient(135deg, var(--blue), #1f2a6a);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(20,25,71,.18);
}
.ctaCard .btn--primary:hover{
  opacity: .96;
}
.ctaCard .btn--ghost{
  background: rgba(255,255,255,.92);
  border-color: rgba(20,25,71,.22);
  color: var(--blue);
}
.ctaCard .btn--ghost:hover{
  border-color: rgba(20,25,71,.35);
  background: #ffffff;
}

/* Reveal animations */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-in{
  opacity:1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal, .reveal.is-in, .hero__overlay, .hero__overlay.is-visible, .hero__replay{
    transition:none !important;
    transform:none !important;
  }
}
