.contenedor-general {
  background: #fff;
  display: flex;
  flex-direction: row;
  width: 90%;
  height: 100%;
  justify-content: center;

  .galeria {
    width: 50%;
  }

  .contenido-texto {
    background: #ffffff;
    width: 50%;
    box-shadow: 0px 30px 10px -20px #7d7b7b !important;
    border-radius: 20px;

    p {
      font-size: 1.3vw;
      padding: 20px;
      text-align: justify;
    }
  }

}

.contenedor-gastronomia {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 95%;
  margin: auto;
  margin-top: 10px;
  gap: 10px;

  .text-container {
    height: auto;
    display: flex;
    flex-direction: column;
    border: #00416b 2px solid;
    border-radius: 15px;


    .container-pequeno {
      background-color: #00416b;
      color: #fff;
      text-align: center;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;

      .bottom-title {
        font-size: 1.4vw;
        padding: 10px;
        color: #fff;
        text-align: center;
      }
    }

    article .img-item {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .description {
      display: flex;
      font-size: 1.3vw;
      padding: 10px;
      width: 100%;
      align-items: flex-start;
      /* Esto alinea el contenido en la parte superior */
    }
  }

}

.contenedor-festividades {
  background: #ffffff;
  display: flex;
  flex-direction: row;
  width: 90%;
  justify-content: space-around;
  align-items: center;
  gap: 10px;

  .festival-1 {
    width: 40%;

    img {
      width: 100% !important;
      margin: 60px;
      border-radius: 20px;
    }
  }

  .contenido-texto-1 {
    background: #ffffff;
    width: 50%;
    margin: 30px;
    padding-top: 20px;
    padding-bottom: 30px;
    box-shadow: 0px 30px 10px -20px #7d7b7b !important;
    border-radius: 20px;
    font-size: 16px;
  }

}

@media (max-width: 990px) {
  .contenedor-gastronomia {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contenedor-general {
    flex-direction: column;
    width: 100%;

    .galeria {
      width: 90%;
      margin: auto;
      order: -1;
    }

    .contenido-texto {
      background: #ffffff;
      width: 100%;
      margin: auto;
      p{
        font-size: 4vw;
        padding: 10px;
      }
    }
  }

  .contenedor-gastronomia {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;

    .text-container {
      width: 95%;
      margin: 0 auto;

      .container-pequeno {
        background-color: #00416b;
        color: #fff;
        text-align: center;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;

        .bottom-title {
          font-size: 1.4vw;
          padding: 10px;
          color: #fff;
          text-align: center;
        }
      }

      article .img-item {
        width: 100%;
        height: 300px;
        object-fit: cover;
      }

      .description {
        display: flex;
        font-size: 3vw;
        padding: 10px;
        width: 100%;
        align-items: flex-start;
      }
    }
  }

  .contenedor-festividades {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    width: 90%;
    justify-content: space-around;
    align-items: center;
    gap: 10px;

    .festival-1 {
      width: 90%;
      margin: auto;
      margin-bottom: 0px;

      img {
        width: 80% !important;
        border-radius: 20px;
        margin: 0;
      }
    }

    .contenido-texto-1 {
      background: #ffffff;
      width: 100%;
      margin: 30px;
      padding-top: 20px;
      padding-bottom: 30px;
      box-shadow: 0px 30px 10px -20px #7d7b7b !important;
      border-radius: 20px;
      font-size: 16px;
    }

  }

}