
    .section.programacao{
      background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
      padding: 40px 16px;
      border-radius: 18px;
    }

    .container{
      max-width: var(--maxwidth);
      margin: 0 auto;
    }

    .programacao-header{
      display:flex;
      gap:24px;
      align-items:flex-start;
      margin-bottom:18px;
    }

    .programacao-header .title{
      font-family: "Playfair Display", serif;
      font-weight:700;
      color: var(--blue-deep);
      font-size: clamp(1.6rem, 2.6vw, 2.4rem);
      margin:0;
      line-height:1;
      padding-right:8px;
    }

    .programacao-header .atracaotitle{
      font-family: "Playfair Display", serif;
      font-weight:700;
      color: var(--accent-2);
      font-size: clamp(1.6rem, 2.6vw, 2.4rem);
      margin:0;
      line-height:1;
      padding-right:8px;
    }

    .programacao-desc{
      color: var(--muted);
      font-size: clamp(0.95rem, 1.4vw, 1rem);
      max-width: 760px;
      margin-top:6px;
    }

    /* Grid */
    .program-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 28px;
      align-items: start;
    }

    /* Make the first 5 cards have same height using align-items + min-height */
    .prog {
      background: var(--accent-2);
      border: 1px solid var(--card-border);
      box-shadow: var(--shadow-sm);
      border-radius: var(--radius);
      padding: 22px;
      transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s;
      height: 200px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }

    .prog:focus-within,
    .prog:hover{
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      outline: none;
    }

    .prog-top {
      display:flex;
      gap:12px;
      align-items:flex-start;
    }

    .prog-emoji {
      font-size: 1.45rem;
      line-height:1;
      padding-top:2px;
    }

    .prog h3 {
      font-family: "Playfair Display", serif;
      font-size: 1.05rem;
      color: #3b2b1b;
      margin:0;
      display:flex;
      align-items:center;
      gap:10px;
    }

    .prog p {
      color: #525252;
      font-size: 0.96rem;
      margin: 12px 0 0 0;
      line-height:1.55;
      flex: 1 1 auto;
    }

    .prog-footer{
      margin-top:14px;
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
    }

    .tag {
      display: inline-block;
      padding: 8px 12px;
      background: var(--brown);
      color: var(--beige);
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 600;
      box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
    }

    .prog .morelink {
      background: var(--brown);
      border: 1px solid rgba(107,78,46,0.06);
      padding: 8px 12px;
      border-radius: 10px;
      font-size: 0.86rem;
      color: var(--beige);
      cursor:pointer;
      transition: background .18s, transform .12s;
    }

    .prog .morelink:hover{
      transform: translateY(-2px);
      background: rgba(107,78,46,0.04);
      outline: none;
    }

    /* CTA */
    .program-cta {
      margin-top: 36px;
      text-align:center;
    }

    /* Small device adjustments */
    @media (max-width: 980px){
      .program-grid{ grid-template-columns: repeat(2, 1fr); }
      .programacao-header{ gap:12px; flex-direction:column; }
      .programacao-desc{ max-width: 100%; }
    }

    @media (max-width: 640px){
      body{ padding:20px 14px; }
      .program-grid{ grid-template-columns: 1fr; gap:16px; }
      .prog{ padding:18px; min-height: auto; }
      .prog p{ font-size: 0.95rem; }
      .prog h3{ font-size: 1rem; }
      .programacao-header{ align-items:flex-start; }
      .program-cta{ margin-top:28px; }
    }

    /* Accessibility: keyboard focus visible */
    .prog:focus-within { box-shadow: 0 0 0 3px rgba(107,78,46,0.08); }
    .btn-primary:focus { box-shadow: 0 0 0 4px rgba(107,78,46,0.12); }

    /* small decorative underline for heading */
    .title-underline{
      height:6px;
      width:56px;
      background: linear-gradient(90deg, #d0e4ff, #2b6cb0);
      border-radius: 999px;
      margin-top:10px;
    }