/* Fondo general con imagen */
body {
  margin: 0;
  padding: 0;
  background-image: url('img/fondo.png'); /* reemplazá por tu imagen de fondo */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

/* Contenedor con margen de 100px */
.container {
  padding: 15px 100px 60px 100px; /* top, right, bottom, left */
  box-sizing: border-box;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Título centrado en 2 columnas */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

/*.titulo-placeholder {
  width: 50%;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px dashed #333;
} */

.titulo-img {
  width: 25%;
  max-width: 1200px;
  height: auto;
  margin-bottom: 10px;
}


/* Grilla de 4 columnas */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
}

.columna {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* .imagen-placeholder {
  width: 100%;
  height: 75px;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px dashed #333;
  margin-bottom: 20px;
} */

.imagen-contenido {
  width: 100%;
  max-height: 100px; /* Ajustalo según cómo querés que se vea */
  object-fit: contain;
  margin-bottom: 10px;
}


.texto-columna h2 {
  font-size: 24px; /* más grande que el texto normal */
  margin: 1px 0;
  color: white;
  text-shadow: 1px 1px 3px black;
  
}

.texto-columna p {
  font-size: 18px;
  margin: 2px 0;
  color: white;
  text-shadow: 2px 2px 2px black; /* offset-x | offset-y | blur-radius | color */
}

 .h2-puntos-starter {
  background-image: url('img/BOTON_Base.png'); /* reemplazá con tu imagen */
  background-size: cover;
  background-position: center;
  padding: 10px 45px;
   /* border-radius: 10px;
  color: white;
  /* text-shadow: 1px 1px 2px black; */
}

.h2-puntos-prep {
  background-image: url('img/BOTON_Base.png'); /* reemplazá con tu imagen */
  background-size: cover;
  background-position: center;
  padding: 10px 45px;
   /* border-radius: 10px;
  color: white;
  /* text-shadow: 1px 1px 2px black; */
}

.h2-puntos-tween {
  background-image: url('img/BOTON_Base.png'); /* reemplazá con tu imagen */
  background-size: cover;
  background-position: center;
  padding: 10px 45px;
   /* border-radius: 10px;
  color: white;
  /* text-shadow: 1px 1px 2px black; */
}

.h2-puntos-youngster {
  background-image: url('img/BOTON_Base.png'); /* reemplazá con tu imagen */
  background-size: cover;
  background-position: center;
  padding: 10px 45px;
   /* border-radius: 10px;
  color: white;
  /* text-shadow: 1px 1px 2px black; */
}


.icono-moneda {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin: 0 4px;
}


/* Responsivo: se adapta si la pantalla es más chica */
@media (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .titulo-placeholder {
    width: 100%;
  }

  .container {
    padding: 40px;
  }
}
