.hero--mundial {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  margin: var(--header-h) auto 0;
  margin-bottom: 10%;
  z-index: 2;
  width: min(1200px, 92vw);
  text-align: center;
  color: #fff;
  padding: 3.5rem 0 2.5rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: .5px;
  margin: 0;
  text-shadow: 0 10px 25px rgba(0,0,0,.45);
}

.hero-subtitle {
  margin: .75rem 0 2rem;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  opacity: .95;
  text-shadow: 0 10px 25px rgba(0,0,0,.45);
}

.hero-panel {
  margin: 0 auto;
  width: 100%;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.2vw, 2rem);
  text-align: left;
  position: relative;
  backdrop-filter: blur(6px);
}

.hero-panel h3 {
  margin: 0 0 .75rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-panel p {
  margin: 0;
  line-height: 1.55;
  opacity: .95;
}

.hero-panel ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.hero-panel li {
  margin: .45rem 0;
}

.hero-btn {
  display: inline-block;
  background: #8c1d2d;
  color: #fff;
  padding: .75rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.15);
}

.hero-btn:hover {
  filter: brightness(1.08);
}

.hero-badge {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-130%);
  display: flex;
  align-items: center;
  gap: .5rem;
  opacity: .9;
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: .2px;
}

.hero-badge .ball {
  font-size: 2.1rem;
}

/* Responsive */
/* Celular */
@media screen and (min-width: 300px) and (max-width: 840px) {
.hero-panel {
grid-template-columns: 1fr;
text-align: left;
}
.hero-badge {
position: static;
transform: none;
justify-content: center;
margin-top: 1rem;
}

.hero--mundial{
height: auto;
min-height: auto;
place-items: start center;
overflow: visible;
padding-bottom: 2.5rem;
}

.hero-inner{
padding-top: calc(var(--header-h, 40px));
padding-bottom: 1.5rem;
}
}

/*Tablet*/
@media screen and (min-width: 841px) and (max-width: 1024px) {
.hero--mundial{
height: auto;
place-items: start center;
overflow: visible;
}

.hero-inner{
  padding-top: calc(var(--header-h, 40px));
  padding-bottom: 1.5rem;
  margin-bottom: 40%;
}

.hero-panel {
margin: 0 auto;
width: 100%;
height: auto;
padding: clamp(1.25rem, 2.2vw, 2rem);
position: relative;

}
}
