.mundial-hero {
  position: relative;
  background-color: transparent;
  /* Fondo transparente para Parallax */
  padding: 60px 20px 140px;
  color: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
  font-family: var(--font-primary, 'Hyundai Sans', 'Segoe UI', sans-serif);
}

.mundial-hero-bg {
  display: none;
  /* Hide background curves in favor of parallax */
}

.mundial-hero-container {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding-top: 20px;
}

.mundial-hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  width: 100%;
  opacity: 0;
  animation: fadeInDownMundial 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.mundial-hero-logo img {
  max-width: min(400px, 85vw);
  height: auto;
}

.mundial-hero-content-row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 80px);
  /* GAP FLUIDO */
}

.mundial-hero-left {
  flex: 1;
  max-width: 650px;
  /* VOLVIENDO A UN ANCHO COLAPSABLE MEJORADO */
  padding-left: 20px;
}

.mundial-hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  width: 100%;
}

.mundial-hero-hyundai {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mundial-hero-hyundai img {
  height: 40px;
  object-fit: contain;
}

.mundial-hero-hyundai span {
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0px;
}

.mundial-hero-logos .separator {
  width: 1.5px;
  height: 80px;
  background-color: rgba(255, 255, 255, 1);
}

.mundial-hero-fifa img {
  height: 110px;
  object-fit: contain;
}

.mundial-hero-title {
  font: normal normal normal clamp(28px, 3.5vw, 54px)/clamp(34px, 4.5vw, 64px) "Hyundai Sans Head KR Medium", sans-serif;
  margin-bottom: 40px;
  letter-spacing: -2px;
  word-spacing: 4px;
  opacity: 0;
  animation: fadeInLeftMundial 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s;
  color: #fff;
}

.mundial-hero-btn {
  display: inline-block;
  background-color: #00e365;
  color: #06122d;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font: normal normal normal 20px/25px "Hyundai Sans Head KR Medium", sans-serif;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: none;
  cursor: pointer;
  letter-spacing: -0.3px;
  opacity: 0;
  animation:
    fadeInLeftMundial 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
    buttonPulseNeon 2s infinite;
  animation-delay: 0.4s, 1.2s;
}

@keyframes buttonPulseNeon {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 227, 101, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(0, 227, 101, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 227, 101, 0);
  }
}

.mundial-hero-btn:hover {
  background-color: #00f06a;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 227, 101, 0.5);
  animation-play-state: paused;
}

.mundial-hero-right {
  display: grid;
  grid-template-columns: repeat(2, clamp(150px, 22vw, 310px));
  /* FOTOS QUE ESCALAN */
  grid-template-rows: repeat(2, clamp(120px, 17vw, 240px));
  gap: clamp(10px, 1.5vw, 20px);
  flex-shrink: 0;
}

.mundial-img-tall {
  grid-row: span 2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: zoomInSwing 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, floatContinuous 4s ease-in-out infinite alternate;
  animation-delay: 0.2s, 1s;
}

.mundial-img-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}

.mundial-img-short {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: zoomInSwing 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, floatContinuous 4s ease-in-out infinite alternate;
}

.mundial-img-short:nth-child(2) {
  animation-delay: 0.4s, 1.2s;
}

.mundial-img-short:nth-child(3) {
  animation-delay: 0.6s, 1.4s;
}

.mundial-img-tall:hover,
.mundial-img-short:hover {
  transform: translateY(-12px) scale(1.03) rotate(-1deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
  animation-play-state: paused;
}

.mundial-img-short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes zoomInSwing {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(5deg) translateX(100px);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0) translateX(0);
  }
}

@keyframes floatContinuous {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* --- Animaciones Keyframes --- */
@keyframes fadeInDownMundial {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeftMundial {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRightMundial {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1150px) {
  .mundial-hero-right {
    grid-template-columns: 250px 250px;
    grid-template-rows: 200px 200px;
  }

  .mundial-hero-title {
    font: normal normal normal 46px/56px "Hyundai Sans Head KR Medium", sans-serif;
  }
}

@media (max-width: 992px) {
  .mundial-hero-content-row {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .mundial-hero-left {
    display: contents;
    /* allows children to join .mundial-hero-content-row flex flow */
  }

  .mundial-hero-title {
    order: 1;
    margin-bottom: 30px;
  }

  .mundial-hero-right {
    order: 2;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .mundial-hero-btn {
    order: 3;
    margin-top: 0;
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {

  .mundial-hero {
    padding: 40px 20px 40px;
  }

  .mundial-hero-logo {
    margin-bottom: 25px;
  }

  .mundial-hero-logo img {
    max-width: 200px;
  }

  .mundial-hero-title {
    font: normal normal normal clamp(24px, 6vw, 32px)/clamp(30px, 7vw, 40px) "Hyundai Sans Head KR Medium", sans-serif;
    text-align: left;
    margin-bottom: 20px;
  }

  .mundial-hero-title br {
    display: block;
  }

  .mundial-hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 45vw);
    gap: 12px;
    width: 100%;
    padding: 0 5px;
  }

  .mundial-img-tall {
    grid-row: span 2;
    height: 100%;
  }

  .mundial-img-short {
    height: 100%;
  }

  .mundial-hero-btn {
    font-size: 16px;
    padding: 16px 20px;
  }

  /* Ajustes agresivos para los Logos en Mobile */
  .mundial-hero-logos {
    gap: 15px;
    padding: 0 10px;
  }

  .mundial-hero-hyundai img {
    height: 30px;
    max-width: 130px;
  }

  .mundial-hero-hyundai span {
    font-size: 11px;
  }

  .mundial-hero-logos .separator {
    height: 50px;
  }

  .mundial-hero-fifa img {
    height: 65px;
    max-width: 100px;
  }
}
.video-mundial-section {
  position: relative;
  background-color: transparent; /* Fondo transparente para Parallax */
  padding: 40px 20px 80px;
  color: white;
  text-align: center;
  font-family: var(--font-primary, 'Hyundai Sans', 'Segoe UI', sans-serif);
  z-index: 0;
}

.video-mundial-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1200px;
}

.video-mundial-title {
  font: normal normal normal clamp(28px, 4.5vw, 68px)/clamp(34px, 5.5vw, 86px) "Hyundai Sans Head KR Medium", sans-serif;
  margin-bottom: 50px;
  max-width: 1000px;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeInUpMundial 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s;
  color: #fff;
}

@keyframes fadeInUpMundial {
  from {
    opacity: 0;
    transform: translateY(100px) rotateX(20deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

@keyframes pulseBorderGlow {
  0% { box-shadow: 0 25px 60px rgba(0,0,0,0.3), 0 0 0 0 rgba(0, 227, 101, 0.7); }
  70% { box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 0 35px rgba(0, 227, 101, 0); }
  100% { box-shadow: 0 25px 60px rgba(0,0,0,0.3), 0 0 0 0 rgba(0, 227, 101, 0); }
}

.video-mundial-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  /* Efecto Glassmorphism */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  opacity: 0;
  animation: 
    fadeInUpMundial 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
    pulseBorderGlow 2s infinite;
  animation-delay: 0.2s, 1s;
}

.video-mundial-wrapper:hover {
  transform: translateY(-20px) scale(1.05) rotateX(3deg);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 227, 101, 0.4);
  border: 1px solid rgba(0, 227, 101, 0.8);
  animation-play-state: paused;
}

.video-mundial-wrapper.video-horizontal {
  aspect-ratio: 16 / 9;
}

.video-mundial-wrapper.video-vertical {
  aspect-ratio: 9 / 16;
  max-width: 350px;
  margin: 0 auto;
}

.video-mundial-placeholder-text {
  font-size: 14vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -2px;
}

/* Cuando se inserte el video real, debe ocupar el 100% */
.video-mundial-wrapper iframe,
.video-mundial-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1100px) {
  .video-mundial-placeholder-text {
    font-size: 9rem;
  }
}

@media (max-width: 768px) {
  .video-mundial-section {
    padding: 30px 20px 60px;
  }
  .video-mundial-title {
    font: normal normal normal 32px/40px "Hyundai Sans Head KR Medium", sans-serif;
    margin-bottom: 30px;
  }
  .video-mundial-wrapper {
    border-radius: 16px;
  }
}

.como-participar-section {
  position: relative;
  background-color: transparent;
  /* Fondo transparente para Parallax */
  padding: 80px 20px 100px;
  color: white;
  text-align: center;
  font-family: var(--font-primary, 'Hyundai Sans', 'Segoe UI', sans-serif);
  z-index: 0;
}

.como-participar-bg {
  display: none;
  /* Hide background curves in favor of parallax */
}

.como-participar-container {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.como-participar-title {
  /* FUENTE FLUIDA: Escala entre 28px y 68px según el ancho de pantalla */
  font: normal normal normal clamp(28px, 4.5vw, 68px)/clamp(34px, 5.5vw, 86px) "Hyundai Sans Head KR Medium", sans-serif;
  margin-bottom: 10px;
  letter-spacing: -2px;
  opacity: 0;
  animation: fadeInUpComo 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  color: #fff;
}

.como-participar-subtitle {
  font: normal normal normal clamp(16px, 1.8vw, 22px)/clamp(22px, 2.2vw, 28px) "Hyundai Sans Head KR Medium", sans-serif;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUpComo 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s;
  color: #fff;
}

.como-participar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.como-participar-card {
  background-color: white;
  border-radius: 20px;
  padding: 50px 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  min-height: 380px;
  opacity: 0;
  animation:
    fadeInUpComo 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
    floatCard 4s ease-in-out infinite alternate;
}

/* Stagger de entrada y offset de levitación para que se muevan asíncronamente */
.como-participar-card:nth-child(1) {
  animation-delay: 0.3s, 1s;
}

.como-participar-card:nth-child(2) {
  animation-delay: 0.5s, 1.5s;
}

.como-participar-card:nth-child(3) {
  animation-delay: 0.7s, 2s;
}

.como-participar-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
  animation-play-state: paused;
}

.como-participar-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.como-participar-card:hover .como-participar-icon {
  transform: scale(1.15) rotate(10deg);
}

.como-participar-icon svg {
  width: 100%;
  height: 100%;
  stroke: #00e365;
  stroke-width: 1.5;
  fill: none;
}

.como-participar-card-text {
  color: #06112c;
  font: normal normal normal clamp(16px, 1.8vw, 22px)/clamp(22px, 2.2vw, 28px) "Hyundai Sans Head KR Medium", sans-serif;
  margin: auto 0;
}

@media (max-width: 900px) {
  .como-participar-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .como-participar-title {
    font: normal normal normal 32px/40px "Hyundai Sans Head KR Medium", sans-serif;
  }

  .como-participar-section {
    padding: 10px 20px 60px;
  }
}

/* --- Animaciones --- */
@keyframes fadeInUpComo {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

#como-participar {
  min-height: 600px;
  display: block;
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

.como-participar-section {
  min-height: 600px;
}

/* Placeholder mientras carga los datos */
.como-participar-placeholder {
  min-height: 600px;
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: pulse-skeleton 1.5s ease-in-out infinite;
  border-radius: 20px;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animación del skeleton */
@keyframes pulse-skeleton {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}
.terminos-mundial-section {
  position: relative;
  background-color: transparent; /* Fondo transparente para Parallax */
  padding: 100px 20px 140px;
  color: white;
  text-align: center;
  font-family: var(--font-primary, 'Hyundai Sans', 'Segoe UI', sans-serif);
  z-index: 0;
}

.terminos-mundial-bg {
  display: none; /* Hide background curves in favor of parallax */
}

.terminos-mundial-container {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.terminos-mundial-title {
  font: normal normal normal clamp(28px, 4.5vw, 68px)/clamp(34px, 5.5vw, 86px) "Hyundai Sans Head KR Medium", sans-serif;
  margin-bottom: 20px;
  letter-spacing: -2px;
  opacity: 0;
  animation: fadeInUpComo 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.terminos-mundial-subtitle {
  font: normal normal normal clamp(16px, 1.8vw, 22px)/clamp(22px, 2.2vw, 28px) "Hyundai Sans Head KR Medium", sans-serif;
  margin-bottom: 60px;
  max-width: 800px;
  opacity: 0;
  animation: fadeInUpComo 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

.terminos-mundial-card {
  background-color: white;
  border-radius: 24px;
  padding: 50px 70px;
  width: 100%;
  text-align: left;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  color: #333;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: 
    fadeInUpComo 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.4s;
  /* Optimización para renderizado 3D */
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
}



.terminos-mundial-text {
  font: normal normal normal 1.05rem/1.6 "Hyundai Sans Text Office", sans-serif;
  color: #555;
  margin-bottom: 30px;
}

.terminos-mundial-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin-bottom: 30px;
}

.terminos-mundial-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Estilos para el Acordeón de Bootstrap */
.terminos-mundial-list .accordion-button {
  font: normal normal normal 1.1rem "Hyundai Sans Head KR Medium", sans-serif !important;
  color: #06112c !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.terminos-mundial-list .accordion-button:not(.collapsed) {
  color: #002e6b !important;
  background-color: #f8f9fa !important;
}

.terminos-mundial-list .accordion-body {
  font: normal normal normal 1rem/1.5 "Hyundai Sans Text Office", sans-serif !important;
  color: #444 !important;
}

@keyframes float3DPremium {
  0% {
    transform: perspective(1200px) translateY(0px) rotateX(1.5deg) rotateY(-1.5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 227, 101, 0.05);
  }
  50% {
    transform: perspective(1200px) translateY(-18px) rotateX(-1.5deg) rotateY(1.5deg);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.25), 0 20px 80px rgba(0, 227, 101, 0.25);
  }
  100% {
    transform: perspective(1200px) translateY(0px) rotateX(1.5deg) rotateY(-1.5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 227, 101, 0.05);
  }
}

@media (max-width: 768px) {
  .terminos-mundial-section {
    padding: 70px 20px 100px;
  }
  .terminos-mundial-title {
    font-size: 2.5rem;
  }
  .terminos-mundial-card {
    padding: 40px 30px;
  }
}

.menu-mundial-component {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  border-bottom: solid 1px #ddd;
  width: 100%;
  min-height: 60px;
  height: auto;
  background-color: #F6F3F2;
  padding: 0px 7%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  z-index: 15;
  transition: all 0.5s ease-in-out;
  contain: layout;
}

.menu-mundial-container {
  display: flex;
  justify-content: center;
  min-height: 60px;
  width: auto;
  align-items: center;
  flex-wrap: nowrap !important;
}

.menu-mundial-btn {
  background-color: #00e365;
  color: #06122d;
  font: normal normal 500 16px/20px "Hyundai Sans Head KR Medium", sans-serif;
  width: auto;
  margin: 0px 10px;
  height: auto;
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  letter-spacing: -0.3px;
}

.menu-mundial-btn.active,
.menu-mundial-btn:hover {
  background-color: #00f06a;
  color: #06122d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 227, 101, 0.4);
}

@media (max-width: 1200px) {
  .menu-mundial-component {
    padding: 0px 3%;
  }
}

@media (max-width: 768px) {
  .menu-mundial-component {
    justify-content: center;
    padding: 0px 10px;
    min-height: 50px;
    height: auto;
  }

  .menu-mundial-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 50px;
    height: auto;
  }

  .menu-mundial-btn {
    font-size: 14px;
    margin: 5px 10px;
    height: auto;
    min-height: 40px;
    padding: 10px 15px;
  }
}

@media (max-width: 375px) {
  .menu-mundial-component {
    justify-content: center;
    padding: 0px 10px;
    min-height: 50px;
    height: auto;
  }

  .menu-mundial-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    min-height: 50px;
    height: auto;
  }

  .menu-mundial-btn {
    font-size: 13px;
    margin: 0px 2px;
    height: auto;
    min-height: 40px;
    padding: 8px 12px;
  }
}
/* Creamos un pseudo-elemento fijo detras de la pagina.
   Esto soluciona el bug de iOS/Safari y previene estiramientos indeseados. */
.mundial-page-parallax-bg {
  position: relative;
  /* El contenido debe ir encima */
}

/* Pseudo-elemento antes del contenedor que actua como fondo de pantalla */
.mundial-page-parallax-bg::before {
  content: "";
  display: block;
  position: fixed;
  /* Fijo a la pantalla, no al scroll */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  /* Lo enviamos atras */

  /* Carga de la imagen */
  background-image: url(/static/media/background-fijo.80e5aa9a83bc535f265e.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Optimizacion de renderizado */
  will-change: transform;
}

.sin-background {
  background: transparent !important;
  background-color: transparent !important;
}
/* --- OVERRIDE DEL MÓDULO COTIZADOR PARA LA LANDING MUNDIAL --- */

/* 1. Contenedor Maestro y Títulos */

.mundial-cotizador-header {
  text-align: center;
  color: white;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUpComo 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.mundial-cotizador-header h2 {
  font: normal normal normal clamp(28px, 4.5vw, 68px)/clamp(34px, 5.5vw, 86px) "Hyundai Sans Head KR Medium", sans-serif;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.mundial-cotizador-header p {
  font: normal normal normal clamp(16px, 1.8vw, 22px)/clamp(22px, 2.2vw, 28px) "Hyundai Sans Head KR Medium", sans-serif;
  opacity: 0.9;
}

/* 2. El Slider de Vehículos (VehiculosComponent) */
.multi-cotizacion-vehiculos-detail-component {
  width: 100%;
  max-width: 1280px;
  position: relative;
  display: flex;
  align-items: center;
}

/* Las Flechas */
.btn-carrousel-multi-cotizacion-component {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.btn-carrousel-multi-cotizacion-component:hover {
  background-color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contenedor de Tarjetas */
.info-multi-cotizacion-vehiculos-detail-component {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
  /* Ocultar barra de scroll original */
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.info-multi-cotizacion-vehiculos-detail-component::-webkit-scrollbar {
  display: none;
}

/* La Tarjeta de Vehículo Blanca */
.item-info-multi-cotizacion-vehiculos-detail-component {
  background-color: white;
  border-radius: 20px;
  min-width: 280px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  border: 2px solid transparent;
  box-shadow: none;
  scroll-snap-align: center;
}

.item-info-multi-cotizacion-vehiculos-detail-component:hover,
.item-info-multi-cotizacion-vehiculos-detail-component.active {
  border-color: #002E6B;
  box-shadow: none;
}

.title-info-multi-cotizacion-vehiculos-detail-component {
  color: #06122d;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.img-info-multi-cotizacion-vehiculos-detail-component {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}



.sello-info-multi-cotizacion-vehiculos-detail-component {
  width: 100%;
  max-width: 180px;
  margin-top: auto;
}

/* Indicadores de Scroll (Puntos en lugar de barra si es posible, u ocultar la barra default) */
.scroll-bar-container {
  display: none;
  /* Según diseño, no hay barra horizontal fea, se usan las flechas */
}

/* 3. Animación de Entrada para el Formulario de Cotización Blanco */
.container-cotizacion-multiple-component.visible {
  opacity: 0;
  animation:
    fadeInUpComo 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0s;
}

/* Animación Mágica: El Auto adentro del formulario "respira" (flota) suavecito */
.vehiculos-left-container-cotizacion-multiple-component img {
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
}

/*# sourceMappingURL=209.d9aa84f2.chunk.css.map*/