body {
    margin: 0;
    padding: 0;
    color: black;

    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.content {
    padding: 1rem 0rem;
    text-align: left;
    width: 100%;

    /* background-color: #202020; */
    /* color: white; */
}

.section-container {
    display: flex;
    align-items: center;
    flex-direction: column;  
    margin: auto;  

    padding: 2rem 2rem;
    max-width: 1024px
}

.section-container .text-content {
  text-align: left;
}

.section-container h2 {
  position: relative;
  text-align: center;
  margin-bottom: 3.5rem;
  z-index: 1;
  font-size: 3rem;
}

.section-container h2::before {
  font-family: 'GlassFont', sans-serif;
  content: '>';
  display: inline-block;
  color: yellowgreen;
  text-shadow: 0 0 5px rgba(127, 255, 0, 0.8);
  margin-right: .2rem;
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  top: .2rem;
}


.premios {
  background-image: url('../images/premios-bg.png');
  color: white;
}

.premios .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.premios .col {
  text-align: center;
}

.premios .detail img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.premios .detail img:hover {
  transform: scale(1.05);
}

.premios .detail h4 {
  font-size: 1.25rem;
  margin-top: 20px;
  margin-bottom: 8px;
  font-family: monospace;
  color: white;
}

.premios .detail p {
  font-size: 1rem;
  color: #ccc;
  font-family: sans-serif;
}



/* Responsive */
@media (max-width: 992px) {
  .premios .row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .premios .row {
    grid-template-columns: 1fr;
  }
}
