/* pronto.css */

/* ═══════════════════════════════════════════════
   PUDE — Pronto · Hero + Info
   Add to: Appearance → Customize → Additional CSS
═══════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */

.pronto-hero {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  min-height: 420px;
  background:
    radial-gradient(ellipse 90% 60% at 75% 50%, rgba(58,170,140,.10) 0%, transparent 60%),
    #080c0b;
  border-top: 1px solid rgba(58,170,140,.18);
}

/* ── Background (unused, kept for compat) ──────── */
.pronto-hero__bg {
  display: none;
}

.pronto-hero__bg-img {
  display: none;
}

/* ── Image column ───────────────────────────────── */
.pronto-hero__img-col {
  position: relative;
  overflow: hidden;
  grid-column: 1;
  grid-row: 1;
  display: block;
  align-self: stretch;
}

.pronto-hero__img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  transparent 55%, rgba(8,12,11,.75) 82%, #080c0b 100%),
    linear-gradient(to bottom, rgba(8,12,11,.35) 0%, transparent 20%),
    linear-gradient(to top,    rgba(8,12,11,.35) 0%, transparent 20%);
  pointer-events: none;
  z-index: 1;
}

.pronto-hero__col-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  filter: brightness(0.70) saturate(1.05);
}

/* ── Overlays ────────────────────────────────── */
.pronto-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.pronto-hero__overlay--top,
.pronto-hero__overlay--bottom,
.pronto-hero__overlay--center {
  display: none;
}

/* ── Content (right column) ─────────────────────── */
.pronto-hero__content {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 64px 56px 64px 52px;
  gap: 0;
}

/* ── Brand ───────────────────────────────────── */
.pronto-hero__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pronto-hero__brand-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  overflow: hidden;
}

.pronto-hero__brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pronto-hero__brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #e8eceb;
}

/* ── Tag ─────────────────────────────────────── */
.pronto-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: rgba(58,170,140,.12);
  border: 1px solid rgba(58,170,140,.30);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #3aaa8c;
  margin-bottom: 14px;
}

.pronto-hero__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #3aaa8c;
  flex-shrink: 0;
  animation: pronto-blink 2s ease-in-out infinite;
}

@keyframes pronto-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* ── Title ───────────────────────────────────── */
.pronto-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}

.pronto-hero__title-accent {
  color: #3aaa8c;
  display: inline;
}

/* ── Sub ─────────────────────────────────────── */
.pronto-hero__sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  color: rgba(232,236,235,.72);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  line-height: 1.3;
}

/* ── Description ─────────────────────────────── */
.pronto-hero__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(232,236,235,.55);
  line-height: 1.65;
  max-width: 52ch;
  margin: 0 0 0;
}

/* ── Email form ──────────────────────────────── */
.pronto-hero__form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 10px;
}

.pronto-hero__form-input {
  flex: 1;
  padding: 13px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #e8eceb;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.pronto-hero__form-input::placeholder { color: #8aa39a; }

.pronto-hero__form-input:focus {
  border-color: rgba(58,170,140,.50);
  box-shadow: 0 0 0 4px rgba(58,170,140,.10);
}

.pronto-hero__form-btn {
  padding: 13px 24px;
  background: #3aaa8c;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: filter .18s ease, transform .18s ease;
}

.pronto-hero__form-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.pronto-hero__form-btn:active { transform: scale(.97); }

.pronto-hero__form-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(138,163,154,.60);
  margin-bottom: 32px;
}

/* ── Category pills (full-width bottom row) ─────── */

/* pill style kept for reuse in bridge section */

.pronto-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(232,236,235,.65);
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .18s ease,
              border-color .18s ease,
              color .18s ease;
}

.pronto-hero__cat:hover {
  background: rgba(58,170,140,.15);
  border-color: rgba(58,170,140,.35);
  color: #e8eceb;
}

/* ── Scroll indicator ────────────────────────── */
.pronto-hero__scroll,
.pronto-hero__scroll-line,
.pronto-hero__scroll-label { display: none; }

/* ════════════════════════════════════════════
   INFO SECTION
════════════════════════════════════════════ */

.pronto-info {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* ── What is PUDE ────────────────────────────── */
.pronto-info__what {
  text-align: center;
  max-width: 600px;
}

.pronto-info__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #3aaa8c;
  margin-bottom: 14px;
}

.pronto-info__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #e8eceb;
  letter-spacing: -0.4px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.pronto-info__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #8aa39a;
  line-height: 1.8;
}

/* ── Three cards ─────────────────────────────── */
.pronto-info__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.pronto-info__card {
  background: #141c19;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s ease, transform .2s ease;
}

.pronto-info__card:hover {
  border-color: rgba(58,170,140,.30);
  transform: translateY(-4px);
}

.pronto-info__card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(58,170,140,.12);
  border: 1px solid rgba(58,170,140,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.pronto-info__card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #e8eceb;
  letter-spacing: -0.2px;
}

.pronto-info__card-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #8aa39a;
  line-height: 1.7;
}

/* ── Categories strip ────────────────────────── */
.pronto-info__cats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.pronto-info__cats-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #8aa39a;
}

.pronto-info__cats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pronto-info__cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: #141c19;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #8aa39a;
  text-decoration: none;
  transition: background .18s ease,
              border-color .18s ease,
              color .18s ease;
}

.pronto-info__cat-pill:hover {
  background: rgba(58,170,140,.12);
  border-color: rgba(58,170,140,.28);
  color: #e8eceb;
}

/* ── Bottom CTA ──────────────────────────────── */
.pronto-info__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.pronto-info__cta-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  color: #e8eceb;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.pronto-info__cta-text span { color: #3aaa8c; }

.pronto-info__cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8aa39a;
  font-weight: 600;
}

/* ════════════════════════════════════════════
   CATEGORIES BRIDGE
════════════════════════════════════════════ */

.pronto-bridge {
  background: #080c0b;
  padding: 32px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(58,170,140,.15);
}

.pronto-bridge__cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pronto-bridge__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  background: transparent;
  border: 1px solid rgba(58,170,140,.38);
  border-radius: 999px;
  color: #3aaa8c;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease,
              transform .18s ease;
}

.pronto-bridge__btn:hover {
  background: rgba(58,170,140,.10);
  border-color: rgba(58,170,140,.60);
  color: #e8eceb;
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════
   EVENTS PREVIEW CAROUSEL
════════════════════════════════════════════ */

.pronto-above-fold {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 120px);
  min-height: 480px;
}

.pronto-carousel {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

/* ── Slides ──────────────────────────────── */
.pronto-carousel__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pronto-carousel__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  filter: brightness(0.52) saturate(1.1);
}

.pronto-carousel__slide.is-active { opacity: 1; }

/* ── Overlays ────────────────────────────── */
.pronto-carousel__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.pronto-carousel__overlay--top {
  background: linear-gradient(
    to bottom,
    rgba(8,12,11,.90) 0%,
    rgba(8,12,11,.25) 35%,
    transparent 60%
  );
}

.pronto-carousel__overlay--bottom {
  background: linear-gradient(
    to top,
    rgba(8,12,11,1)   0%,
    rgba(8,12,11,.85) 18%,
    rgba(8,12,11,.25) 48%,
    transparent       68%
  );
}

/* ── Header label ─────────────────────────── */
.pronto-carousel__header {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
}

.pronto-carousel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: rgba(58,170,140,.12);
  border: 1px solid rgba(58,170,140,.30);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #3aaa8c;
}

.pronto-carousel__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #3aaa8c;
  flex-shrink: 0;
  animation: pronto-blink 2s ease-in-out infinite;
}

/* ── Content area ────────────────────────── */
.pronto-carousel__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  padding: 0 24px 68px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pronto-carousel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pronto-carousel__cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(58,170,140,.18);
  border: 1px solid rgba(58,170,140,.35);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #3aaa8c;
}

.pronto-carousel__venue-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(232,236,235,.55);
}

.pronto-carousel__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 4.5vw, 52px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.03;
  letter-spacing: -1.2px;
  text-shadow: 0 4px 40px rgba(0,0,0,.55);
  margin: 0;
}

.pronto-carousel__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.pronto-carousel__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(232,236,235,.65);
}

.pronto-carousel__cost {
  display: inline-flex;
  padding: 3px 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #e8eceb;
}

.pronto-carousel__cost--free {
  background: rgba(58,170,140,.18);
  border-color: rgba(58,170,140,.38);
  color: #3aaa8c;
}

.pronto-carousel__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  background: #3aaa8c;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: filter .18s ease, transform .18s ease;
  margin-top: 4px;
  text-decoration: none;
}

.pronto-carousel__btn:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

.pronto-carousel__btn:active { transform: scale(.97); }

/* ── Controls (arrows + dots) ────────────── */
.pronto-carousel__controls {
  position: absolute;
  bottom: 26px;
  right: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pronto-carousel__arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  color: #e8eceb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .18s ease, border-color .18s ease;
}

.pronto-carousel__arrow:hover {
  background: rgba(58,170,140,.22);
  border-color: rgba(58,170,140,.42);
}

.pronto-carousel__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.pronto-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, width .25s ease;
}

.pronto-carousel__dot.is-active {
  background: #3aaa8c;
  width: 20px;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

@media (max-width: 1080px) {
  .pronto-hero__content {
    padding: 36px 36px 36px 36px;
  }

  .pronto-hero__brand {
    margin-bottom: 10px;
  }

  .pronto-hero__brand-icon {
    width: 48px;
    height: 48px;
  }

  .pronto-hero__brand-name {
    font-size: 20px;
  }

  .pronto-hero__tag {
    margin-bottom: 10px;
  }

  .pronto-hero__title {
    font-size: clamp(20px, 3vw, 34px);
    margin-bottom: 10px;
  }

  .pronto-hero__sub {
    font-size: clamp(13px, 1.4vw, 15px);
    margin-bottom: 10px;
  }
}

@media (max-width: 900px) {
  .pronto-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 1fr;
  }

  .pronto-hero__img-col {
    grid-column: 1;
    grid-row: 1;
  }

  .pronto-hero__img-col::after {
    background:
      linear-gradient(to bottom, transparent 50%, #080c0b 100%);
  }

  .pronto-hero__content {
    grid-column: 1;
    grid-row: 2;
    align-items: center;
    text-align: center;
    padding: 40px 24px 32px;
  }
}

@media (max-width: 720px) {
  .pronto-info__cards {
    grid-template-columns: 1fr;
  }

  .pronto-hero__form {
    flex-direction: column;
    gap: 10px;
  }

  .pronto-hero__form-btn {
    width: 100%;
  }

  .pronto-info {
    padding: 56px 16px 72px;
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .pronto-hero__title {
    letter-spacing: -1.5px;
  }

  .pronto-hero__content {
    padding: 32px 16px 24px;
  }
}

/* ════════════════════════════════════════════
   SPONSORS & COLABORADORES
════════════════════════════════════════════ */

.pronto-sponsors {
  background: #0a0e0d;
  border-top: 1px solid rgba(58,170,140,.15);
  padding: 52px 0 60px;
  overflow: hidden;
}

/* ── Header ─────────────────────────────── */
.pronto-sponsors__header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 24px;
}

.pronto-sponsors__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #8aa39a;
}

.pronto-sponsors__eyebrow::before,
.pronto-sponsors__eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(138,163,154,.35);
  flex-shrink: 0;
}

/* ── Scrolling track ────────────────────── */
.pronto-sponsors__track-wrap {
  position: relative;
  overflow: hidden;
}

.pronto-sponsors__track-wrap::before,
.pronto-sponsors__track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.pronto-sponsors__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #0a0e0d 0%, transparent 100%);
}

.pronto-sponsors__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #0a0e0d 0%, transparent 100%);
}

.pronto-sponsors__track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 8px 8px;
  animation: pronto-sponsors-scroll 55s linear infinite;
}

.pronto-sponsors__track:hover {
  animation-play-state: paused;
}

@keyframes pronto-sponsors-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Individual logo card ───────────────── */
.pronto-sponsors__item {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 14px;
  background: #111815;
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .28s ease, background .28s ease, transform .28s ease;
}

.pronto-sponsors__item:hover {
  border-color: rgba(58,170,140,.30);
  background: rgba(58,170,140,.07);
  transform: translateY(-3px);
}

/* ── Logo image ─────────────────────────── */
.pronto-sponsors__logo {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.5) brightness(1.1) opacity(0.75);
  transition: filter .28s ease;
  display: block;
}

.pronto-sponsors__item:hover .pronto-sponsors__logo {
  filter: grayscale(0) brightness(1.05) opacity(1);
}

/* ── Sponsor name ───────────────────────── */
.pronto-sponsors__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(138,163,154,.55);
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.3;
  transition: color .28s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.pronto-sponsors__item:hover .pronto-sponsors__name {
  color: #8aa39a;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 720px) {
  .pronto-sponsors {
    padding: 40px 0 48px;
  }

  .pronto-sponsors__item {
    width: 156px;
    padding: 16px 14px 12px;
    gap: 10px;
  }

  .pronto-sponsors__logo {
    max-height: 54px;
  }
}