body { animation: pageIn .5s ease forwards; }
    @keyframes pageIn { from{opacity:0;} to{opacity:1;} }

    /* ── Tipos de eventos ───────────────────────────────── */
    .tipos-section {
      padding: clamp(5rem,10vh,9rem) clamp(1.5rem,5vw,4rem);
      background: #080808;
    }

    .tipos-grid {
      max-width: 1400px;
      margin: 3rem auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 480px;
      gap: 1.5px;
    }

    .tipo-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      min-height: 420px;
      display: flex;
      align-items: flex-end;
    }

    .tipo-card-bg {
      position: absolute;
      inset: 0;
    }

    .tipo-card-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.55);
      transition: transform 0.9s cubic-bezier(0.22,1,0.36,1), filter 0.9s;
    }

    .tipo-card:hover .tipo-card-bg img {
      transform: scale(1.06);
      filter: brightness(0.75);
    }

    .tipo-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.1) 60%);
    }

    .tipo-card-content {
      position: relative;
      z-index: 1;
      padding: 2rem;
    }

    .tipo-card-content .label { margin-bottom: .75rem; }

    .tipo-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 300;
      color: #fff;
      margin-bottom: .75rem;
      line-height: 1.15;
    }

    .tipo-card-desc {
      font-size: .78rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(245,242,238,.55);
    }

    a.tipo-card { text-decoration: none; display: flex; }

    .tipo-card-link {
      display: inline-block;
      margin-top: 1.25rem;
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .4s, transform .4s;
    }

    .tipo-card:hover .tipo-card-link {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Proposal section ───────────────────────────────── */
    .propuesta-section {
      padding: clamp(5rem,10vh,9rem) clamp(1.5rem,5vw,4rem);
      background: #f5f2ee;
    }

    .propuesta-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: clamp(3rem,6vw,7rem);
      align-items: center;
    }

    .propuesta-text .label { margin-bottom: 1.5rem; }
    .propuesta-text .display-md { color: #0a0908; margin-bottom: 1rem; }
    .propuesta-text .divider { background: #8a6d3f; margin: 1.5rem 0; }
    .propuesta-text .body-text { margin-bottom: 1.25rem; }

    .propuesta-list {
      display: flex;
      flex-direction: column;
      gap: .75rem;
      margin: 1.5rem 0 2rem;
    }

    .propuesta-list-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      font-size: .8rem;
      font-weight: 300;
      color: rgba(0,0,0,.65);
      line-height: 1.6;
    }

    .propuesta-list-item::before {
      content: '—';
      color: #8a6d3f;
      font-family: 'Cormorant Garamond', serif;
      flex-shrink: 0;
    }

    .propuesta-image {
      position: relative;
      overflow: hidden;
    }

    .propuesta-image img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      display: block;
    }

    .propuesta-image-accent {
      position: absolute;
      top: 1.5rem; right: -1.5rem;
      width: 100px; height: 100px;
      border: 1px solid rgba(138,109,63,.3);
      pointer-events: none;
    }

    /* ── Clientes / Sectores ────────────────────────────── */
    .sectores-section {
      padding: clamp(4rem,7vh,6rem) clamp(1.5rem,5vw,4rem);
      background: #111010;
    }

    .sectores-grid {
      max-width: 1400px;
      margin: 2.5rem auto 0;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0;
      border-top: 1px solid rgba(184,147,86,.1);
      border-left: 1px solid rgba(184,147,86,.1);
    }

    .sector-item {
      padding: 1.75rem 1.5rem;
      border-right: 1px solid rgba(184,147,86,.1);
      border-bottom: 1px solid rgba(184,147,86,.1);
      text-align: center;
      transition: background .3s;
    }

    .sector-item:hover { background: rgba(184,147,86,.05); }

    .sector-icon {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: rgba(184,147,86,.4);
      margin-bottom: .5rem;
    }

    .sector-name {
      font-size: .62rem;
      font-weight: 400;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(245,242,238,.4);
    }

    /* ── Cifras eventos ─────────────────────────────────── */
    .eventos-stats {
      padding: clamp(4rem,7vh,6rem) clamp(1.5rem,5vw,4rem);
      background: #0a0908;
    }

    @media (max-width: 900px) {
      .tipos-grid { grid-template-columns: 1fr 1fr; }
      .propuesta-inner { grid-template-columns: 1fr; }
      .sectores-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 600px) {
      .tipos-grid { grid-template-columns: 1fr; }
      .sectores-grid { grid-template-columns: repeat(2, 1fr); }
    }
