@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Cardo:ital,wght@0,400;0,700;1,400&family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
   --verde-principal: #2E6069;
   --verde-principal-op: #2e6069d0;
   --verde-secundario: #79D799;
   --verde-uru: #00A555;
   --celeste-cuadros: #86C1C4;
   --arena: #ECE2C6;
   --azul-uru: #006BA0;
}

* {
   margin: 0;
   padding: 0;
   list-style: none;
   text-decoration: none;
   box-sizing: border-box;
   font-family: "Questrial", sans-serif;
   line-height: normal;
   /* DIBUJA UN BORDE ROJO ALREDEDOR DE CADA ELEMENTO */
   /* outline: 1px solid red; */
}

body {
   width: 100%;
   position: absolute;
   background-color: var(--verde-principal);

   & header {

      & .fondo {
         position: relative;
         width: 100%;
         max-height: 100vh;
         overflow: hidden;

         & video {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
         }

         & .texto-sobre-img {
            position: absolute;
            top: 31.2vh;
            left: 400px;
            width: fit-content;
            height: fit-content;
            display: flex;
            flex-direction: column;
            text-align: center;
            align-items: end;

            & h1 {
               font-size: 9.5vw;
               color: transparent;
               -webkit-text-stroke-width: 3px;
               -webkit-text-stroke-color: #fff;
               font-family: "Open Sans", sans-serif;
               font-weight: bold;
            }

            & h2 {
               width: fit-content;
               height: fit-content;
               padding: 10px 20px;
               /* background-color: rgba(255, 255, 255, 0.886); */
               background-color: var(--celeste-cuadros-op);
               font-size: 2.5vw;
               color: #fff;
               font-weight: 500;
               border-radius: 35px;
               font-family: "Caveat", cursive;
               margin-top: -20px;
            }
         }
      }
   }

   & .main {
      width: 100%;
      height: 200vh;
      height: fit-content;
      background-color: var(--verde-principal);
      display: flex;
      flex-direction: column;
      align-items: center;

      /* SUMATE */
      & .bloque-uno {
         width: 100%;
         height: calc(100vh - 100px);
         position: relative;
         background-color: var(--verde-principal);
         overflow: hidden;

         & .bloque-uno-arr {
            width: 100%;
            height: 30vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;

            & .titulos {
               width: 80%;
               display: flex;
               flex-direction: column;
               align-items: center;
               color: #fff;
               font-size: 40px;
            }

            & .texto {
               width: 70%;

               & .content {
                  color: #fff;
                  display: flex;
                  justify-content: center;
                  font-size: 30px;
                  padding-top: 20px;
                  text-align: center;
               }
            }
         }

         & .bloque-uno-aba {
            width: 100%;
            height: 45vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--verde-principal);

            & .botones {
               width: 80%;
               height: 80%;
               display: flex;
               align-items: center;
               justify-content: space-around;

               & .boton {
                  width: 350px;
                  height: 350px;
                  border-radius: 25px;
                  background-color: var(--celeste-cuadros);
                  display: flex;
                  flex-direction: column;
                  justify-content: space-between;
                  align-items: center;
                  padding: 20px 0;
                  position: relative;

                  & .circulo {
                     position: absolute;
                     top: -100px;
                     width: 200px;
                     height: 200px;
                     background-color: orange;
                     border-radius: 50%;
                     overflow: hidden;

                     & img {
                        position: relative;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                     }
                  }

                  & .signo-mas {
                     position: absolute;
                     top: 35%;
                     display: flex;
                     justify-content: center;
                     align-items: center;

                     & .signo-verde {
                        width: 70%;
                     }

                     & .signo-blanco {
                        display: none;
                     }
                  }

                  & .texto {
                     position: absolute;
                     top: 70%;
                     text-align: center;
                     font-size: 35px;
                     /* font-weight: 600; */
                     color: var(--verde-principal);
                     line-height: normal;
                  }
               }
            }
         }

         & .boton-coordinemos {
            width: 100%;
            height: 15vh;
            display: none;
            justify-content: center;
            align-items: center;

            & a {
               width: fit-content;
               height: fit-content;
               background-color: var(--verde-uru);
               border-radius: 50px;
               padding: 20px 50px;
               color: #fff;
               font-size: 35px;
            }
         }

         & .imagen-profe {
            position: absolute;
            width: 100%;
            height: 50%;
            bottom: 0;
            display: flex;
            align-items: end;

            & img {
               height: 90%;
            }
         }
      }

      /* CHARLAS Y TALLERES */
      & .bloque-dos {
         width: 100%;
         height: fit-content;
         background-color: var(--celeste-cuadros);
         padding: 75px 50px;
         display: flex;
         flex-direction: column;

         & .bloque-dos-arr {
            width: 100%;
            height: 10vh;
            color: #fff;
            font-size: 45px;
            padding: 20px 0 0 20px;

            & .titulo {
               padding-top: 20px;
            }
         }

         & .bloque-dos-cen {
            width: 100%;
            height: 50vh;
            display: flex;

            & .circulos {
               width: 65%;
               height: 100%;
               display: flex;
               align-items: center;
               gap: 50px;

               & .circulo {
                  width: clamp(150px, 20vw, 350px);
                  aspect-ratio: 1 / 1;
                  background-color: var(--verde-principal);
                  border-radius: 50%;
                  overflow: hidden;

                  & img {
                     width: 100%;
                     height: 100%;
                     object-fit: cover;
                  }
               }
            }

            & .texto {
               width: 35%;
               height: 100%;
               display: flex;
               align-items: center;
               margin-left: 100px;

               & p {
                  width: 72%;
                  font-size: 28px;
                  color: #fff;
                  text-align: justify;
               }
            }
         }

         & .bloque-dos-aba {
            width: 100%;
            height: 10vh;
            display: flex;
            justify-content: end;

            & a {
               color: #fff;
               font-size: 35px;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 20px 30px;
               background-color: var(--verde-secundario);
               border-radius: 50px;
               margin-right: 150px;
            }
         }
      }

      /* ACCIONES */
      & .bloque-tres {
         width: 100%;
         height: fit-content;
         background-color: var(--verde-principal);
         padding: 75px 50px 75px 75px;
         display: flex;
         flex-direction: column;

         & .bloque-tres-arr {
            width: 100%;
            height: 10vh;
            color: #fff;
            font-size: 45px;
            padding: 20px 0 0 20px;
            display: flex;
            justify-content: end;

            & .titulo {
               padding: 20px 150px 0 0;
            }
         }

         & .bloque-tres-cen {
            width: 100%;
            height: 50vh;
            display: flex;


            & .circulos {
               width: 75%;
               height: 100%;
               display: flex;
               align-items: center;
               gap: 50px;
               order: 2;
               padding-right: 150px;

               & .circulo {
                  width: clamp(150px, 20vw, 350px);
                  aspect-ratio: 1 / 1;
                  background-color: var(--verde-principal);
                  border-radius: 50%;
                  overflow: hidden;

                  & img {
                     width: 100%;
                     height: 100%;
                     object-fit: cover;
                  }
               }
            }

            & .texto {
               width: 30%;
               height: 100%;
               display: flex;
               align-items: center;

               & p {
                  width: 80%;
                  font-size: 28px;
                  color: #fff;
                  text-align: justify;
               }
            }
         }

         & .bloque-tres-aba {
            width: 100%;
            height: 10vh;
            display: flex;
            margin-top: 50px;

            & a {
               color: #fff;
               font-size: 35px;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 20px 30px;
               background-color: var(--verde-secundario);
               border-radius: 50px;
               margin-right: 150px;
            }
         }
      }

      /* PROYECTO */
      & .bloque-cuatro {
         width: 100%;
         height: fit-content;
         background-color: var(--celeste-cuadros);
         padding: 75px 50px;
         display: flex;
         flex-direction: column;

         & .bloque-cuatro-arr {
            width: 100%;
            height: 10vh;
            color: #fff;
            font-size: 45px;
            padding: 20px 0 0 20px;

            & .titulo {
               padding-top: 20px;
            }
         }

         & .bloque-cuatro-cen {
            width: 100%;
            height: 50vh;
            display: flex;

            & .circulos {
               width: 65%;
               height: 100%;
               display: flex;
               align-items: center;
               gap: 50px;

               & .circulo {
                  width: clamp(150px, 20vw, 350px);
                  aspect-ratio: 1 / 1;
                  background-color: var(--verde-principal);
                  border-radius: 50%;
                  overflow: hidden;

                  & img {
                     width: 100%;
                     height: 100%;
                     object-fit: cover;
                  }
               }
            }

            & .texto {
               width: 30%;
               height: 100%;
               margin-left: 100px;
               display: flex;
               align-items: center;

               & p {
                  width: 70%;
                  font-size: 28px;
                  color: #fff;
                  text-align: justify;
               }
            }
         }

         & .bloque-cuatro-aba {
            width: 100%;
            height: 10vh;
            display: flex;
            justify-content: end;

            & a {
               color: #fff;
               font-size: 35px;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 20px 30px;
               background-color: var(--verde-secundario);
               border-radius: 50px;
               margin-right: 150px;
            }
         }
      }
   }
}

@media screen and (max-width: 425px) {

   /* Basic Styling */
   body {
      width: 100%;
      height: fit-content;
      background-color: var(--verde-principal);

      & header {
         /*VIDEO FONDO*/
         & .videoFondo {
            padding-top: 70px;
            max-height: none;

            & video {
               width: 100%;
               height: auto;
               object-fit: contain;
            }

            & .texto-sobre-img {
               position: absolute;
               top: 70px;
               left: 0;
               width: 100%;
               height: 200px;
               display: flex;
               flex-direction: column;
               text-align: center;
               align-items: center;

               & h1 {
                  /* font-size: 35px; */
                  font-weight: 100;
                  color: var(--verde-principal);
                  margin-top: 18%;
                  letter-spacing: 4px;
               }

               & h2 {
                  width: fit-content;
                  height: fit-content;
                  padding: 5px 10px;
                  background-color: rgba(255, 255, 255, 0.486);
                  /* font-size: 17px; */
                  color: #fff;
                  font-weight: 100;
                  border-radius: 35px;
                  margin-top: -5px;

                  & strong {
                     font-size: 22px;
                  }
               }
            }
         }
      }

      /* MAIN */
      & .main {
         width: 100%;
         height: fit-content;
         display: flex;
         flex-direction: column;

         /* SUMATE */
         & .bloque-uno {
            width: 100%;
            height: fit-content;
            position: relative;
            background-color: var(--verde-principal);
            overflow: hidden;

            & .bloque-uno-arr {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               align-items: center;
               padding: 20px;

               & .titulos {
                  width: 90%;
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  color: #fff;
                  font-size: 23px;
               }

               & .texto {
                  width: 90%;

                  & .content {
                     color: #fff;
                     display: flex;
                     justify-content: center;
                     font-size: 18px;
                     padding-top: 30px;
                  }
               }
            }

            & .bloque-uno-aba {
               width: 100%;
               height: fit-content;
               display: flex;
               align-items: center;
               justify-content: center;
               background-color: var(--verde-principal);
               padding-top: 20px;

               & .botones {
                  width: 80%;
                  height: 80%;
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  justify-content: center;
                  gap: 0px;

                  & .boton {
                     width: 250px;
                     height: 250px;
                     border-radius: 25px;
                     background-color: transparent;
                     display: flex;
                     flex-direction: column;
                     justify-content: space-between;
                     align-items: center;
                     padding: 0;
                     position: relative;

                     & .circulo {
                        display: flex;
                        top: 5%;
                        width: 90%;
                        max-width: 250px;
                        height: 90%;
                        max-height: 250px;
                        background-color: var(--verde-secundario);
                        border-radius: 50%;
                     }

                     & .signo-mas {
                        position: absolute;
                        top: 30%;

                        & .signo-verde {
                           display: none;
                        }

                        & .signo-blanco {
                           display: block;
                           width: 50%;
                        }
                     }

                     & .texto {
                        position: absolute;
                        top: 65%;
                        text-align: center;
                        font-size: 18px;
                        font-weight: 0;
                        color: #fff;
                        line-height: normal;
                     }
                  }
               }
            }

            & .imagen-profe {
               width: 100%;
               display: none;
               justify-content: end;

               & img {
                  width: 60%;
                  transform: translateY(-100px);
                  margin-bottom: -250px;
               }
            }
         }

         /* CHARLAS Y TALLERES */
         & .bloque-dos {
            width: 100%;
            height: fit-content;
            background-color: var(--celeste-cuadros);
            padding: 0;

            & .bloque-dos-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
            }

            & .bloque-dos-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  padding-top: 20px;

                  & .circulo {
                     width: clamp(100px, 20vw, 140px);
                  aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  padding-top: 20px;
                  margin: 0;

                  & p {
                     width: 80%;
                     font-size: 18px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-dos-aba {
               width: 100%;
               height: 8vh;
               display: flex;
               justify-content: center;
               align-items: center;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }

         /* ACCIONES */
         & .bloque-tres {
            width: 100%;
            height: fit-content;
            background-color: var(--verde-principal);
            padding: 0;

            & .bloque-tres-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 0;

               & .titulo {
                  padding: 20px 0 0;
               }
            }

            & .bloque-tres-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               padding-top: 20px;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  order: 1;
                  padding: 20px 0;

                  & .circulo {
                     width: clamp(100px, 20vw, 140px);
                  aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  order: 2;

                  & p {
                     width: 80%;
                     font-size: 18px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-tres-aba {
               width: 100%;
               height: 8vh;
               display: flex;
               justify-content: center;
               align-items: center;
               margin: 0;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }

         /* PROYECTO */
         & .bloque-cuatro {
            width: 100%;
            height: fit-content;
            background-color: var(--celeste-cuadros);
            padding: 0;

            & .bloque-cuatro-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 0;

               & .titulo {
                  padding: 20px 0 0;
               }
            }

            & .bloque-cuatro-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               padding-top: 20px;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  order: 1;
                  padding: 20px 0;

                  & .circulo {
                     width: clamp(100px, 20vw, 140px);
                  aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  order: 2;
                  margin: 0;

                  & p {
                     width: 80%;
                     font-size: 18px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-cuatro-aba {
               width: 100%;
               height: 12vh;
               display: flex;
               justify-content: center;
               align-items: center;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }
      }
   }

}

@media screen and (min-width: 426px) and (max-width: 576px) {

   /* Basic Styling */
   body {
      width: 100%;
      height: fit-content;
      background-color: var(--verde-principal);

      & header {
         /*VIDEO FONDO*/
         & .videoFondo {
            max-height: none;

            & video {
               width: 100%;
               height: auto;
               object-fit: contain;
            }

            & .texto-sobre-img {
               position: absolute;
               top: 70px;
               left: 0;
               width: 100%;
               height: 200px;
               display: flex;
               flex-direction: column;
               text-align: center;
               align-items: center;

               & h1 {
                  /* font-size: 35px; */
                  font-weight: 100;
                  color: var(--verde-principal);
                  margin-top: 18%;
                  letter-spacing: 4px;
               }

               & h2 {
                  width: fit-content;
                  height: fit-content;
                  padding: 5px 10px;
                  background-color: rgba(255, 255, 255, 0.486);
                  /* font-size: 17px; */
                  color: #fff;
                  font-weight: 100;
                  border-radius: 35px;
                  margin-top: -5px;

                  & strong {
                     font-size: 22px;
                  }
               }
            }
         }
      }

      /* MAIN */
      & .main {
         width: 100%;
         height: fit-content;
         display: flex;
         flex-direction: column;

         /* SUMATE */
         & .bloque-uno {
            width: 100%;
            height: fit-content;
            position: relative;
            background-color: var(--verde-principal);
            overflow: hidden;

            & .bloque-uno-arr {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               align-items: center;
               padding: 20px;

               & .titulos {
                  width: 90%;
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  color: #fff;
                  font-size: 23px;
               }

               & .texto {
                  width: 90%;

                  & .content {
                     color: #fff;
                     display: flex;
                     justify-content: center;
                     font-size: 18px;
                     padding-top: 30px;
                  }
               }
            }

            & .bloque-uno-aba {
               width: 100%;
               height: fit-content;
               display: flex;
               align-items: center;
               justify-content: center;
               background-color: var(--verde-principal);
               padding-top: 20px;

               & .botones {
                  width: 80%;
                  height: 80%;
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  justify-content: center;
                  gap: 0px;

                  & .boton {
                     width: 250px;
                     height: 250px;
                     border-radius: 25px;
                     background-color: transparent;
                     display: flex;
                     flex-direction: column;
                     justify-content: space-between;
                     align-items: center;
                     padding: 0;
                     position: relative;

                     & .circulo {
                        display: flex;
                        top: 5%;
                        width: 90%;
                        max-width: 250px;
                        height: 90%;
                        max-height: 250px;
                        background-color: var(--verde-secundario);
                        border-radius: 50%;
                     }

                     & .signo-mas {
                        position: absolute;
                        top: 30%;

                        & .signo-verde {
                           display: none;
                        }

                        & .signo-blanco {
                           display: block;
                           width: 50%;
                        }
                     }

                     & .texto {
                        position: absolute;
                        top: 65%;
                        text-align: center;
                        font-size: 18px;
                        font-weight: 0;
                        color: #fff;
                        line-height: normal;
                     }
                  }
               }
            }

            & .imagen-profe {
               width: 100%;
               display: none;
               justify-content: end;

               & img {
                  width: 60%;
                  transform: translateY(-100px);
                  margin-bottom: -250px;
               }
            }
         }

         /* CHARLAS Y TALLERES */
         & .bloque-dos {
            width: 100%;
            height: fit-content;
            background-color: var(--celeste-cuadros);
            padding: 0;

            & .bloque-dos-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
            }

            & .bloque-dos-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  padding-top: 20px;

                  & .circulo {
                     width: clamp(100px, 25vw, 150px);
                     aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  padding-top: 20px;
                  margin: 0;

                  & p {
                     width: 80%;
                     font-size: 18px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-dos-aba {
               width: 100%;
               height: 8vh;
               display: flex;
               justify-content: center;
               align-items: center;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }

         /* ACCIONES */
         & .bloque-tres {
            width: 100%;
            height: fit-content;
            background-color: var(--verde-principal);
            padding: 0;

            & .bloque-tres-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 0;

               & .titulo {
                  padding: 20px 0 0;
               }
            }

            & .bloque-tres-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               padding-top: 20px;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  order: 1;
                  padding: 20px 0;

                  & .circulo {
                     width: clamp(100px, 25vw, 150px);
                     aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  order: 2;

                  & p {
                     width: 80%;
                     font-size: 18px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-tres-aba {
               width: 100%;
               height: 8vh;
               display: flex;
               justify-content: center;
               align-items: center;
               margin: 0;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }

         /* PROYECTO */
         & .bloque-cuatro {
            width: 100%;
            height: fit-content;
            background-color: var(--celeste-cuadros);
            padding: 0;

            & .bloque-cuatro-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 0;

               & .titulo {
                  padding: 20px 0 0;
               }
            }

            & .bloque-cuatro-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               padding-top: 20px;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  order: 1;
                  padding: 20px 0;

                  & .circulo {
                     width: clamp(100px, 25vw, 150px);
                     aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  order: 2;
                  margin: 0;

                  & p {
                     width: 80%;
                     font-size: 18px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-cuatro-aba {
               width: 100%;
               height: 12vh;
               display: flex;
               justify-content: center;
               align-items: center;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }
      }
   }

}

@media screen and (min-width: 577px) and (max-width: 768px) {

   /* Basic Styling */
   body {
      width: 100%;
      height: fit-content;
      background-color: var(--verde-principal);

      & header {
         /*VIDEO FONDO*/
         & .videoFondo {
            max-height: none;

            & video {
               width: 100%;
               height: auto;
               object-fit: contain;
            }

            & .texto-sobre-img {
               position: absolute;
               top: 70px;
               left: 0;
               width: 100%;
               height: 200px;
               display: flex;
               flex-direction: column;
               text-align: center;
               align-items: center;

               & h1 {
                  /* font-size: 35px; */
                  font-weight: 100;
                  color: var(--verde-principal);
                  margin-top: 18%;
                  letter-spacing: 4px;
               }

               & h2 {
                  width: fit-content;
                  height: fit-content;
                  padding: 5px 10px;
                  background-color: rgba(255, 255, 255, 0.486);
                  /* font-size: 17px; */
                  color: #fff;
                  font-weight: 100;
                  border-radius: 35px;
                  margin-top: -5px;

                  & strong {
                     font-size: 22px;
                  }
               }
            }
         }
      }

      /* MAIN */
      & .main {
         width: 100%;
         height: fit-content;
         display: flex;
         flex-direction: column;

         /* SUMATE */
         & .bloque-uno {
            width: 100%;
            height: fit-content;
            position: relative;
            background-color: var(--verde-principal);
            overflow: hidden;

            & .bloque-uno-arr {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               align-items: center;
               padding: 20px;

               & .titulos {
                  width: 90%;
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  color: #fff;
                  font-size: 23px;
               }

               & .texto {
                  width: 90%;

                  & .content {
                     color: #fff;
                     display: flex;
                     justify-content: center;
                     font-size: 18px;
                     padding-top: 30px;
                  }
               }
            }

            & .bloque-uno-aba {
               width: 100%;
               height: fit-content;
               display: flex;
               align-items: center;
               justify-content: center;
               background-color: var(--verde-principal);
               padding-top: 20px;

               & .botones {
                  width: 80%;
                  height: 80%;
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  justify-content: center;
                  gap: 0px;

                  & .boton {
                     width: 250px;
                     height: 250px;
                     border-radius: 25px;
                     background-color: transparent;
                     display: flex;
                     flex-direction: column;
                     justify-content: space-between;
                     align-items: center;
                     padding: 0;
                     position: relative;

                     & .circulo {
                        display: flex;
                        top: 5%;
                        width: 90%;
                        max-width: 250px;
                        height: 90%;
                        max-height: 250px;
                        background-color: var(--verde-secundario);
                        border-radius: 50%;
                     }

                     & .signo-mas {
                        position: absolute;
                        top: 30%;

                        & .signo-verde {
                           display: none;
                        }

                        & .signo-blanco {
                           display: block;
                           width: 50%;
                        }
                     }

                     & .texto {
                        position: absolute;
                        top: 65%;
                        text-align: center;
                        font-size: 18px;
                        font-weight: 0;
                        color: #fff;
                        line-height: normal;
                     }
                  }
               }
            }

            & .imagen-profe {
               width: 100%;
               display: none;
               justify-content: end;

               & img {
                  width: 60%;
                  transform: translateY(-100px);
                  margin-bottom: -250px;
               }
            }
         }

         /* CHARLAS Y TALLERES */
         & .bloque-dos {
            width: 100%;
            height: fit-content;
            background-color: var(--celeste-cuadros);
            padding: 0;

            & .bloque-dos-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
            }

            & .bloque-dos-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  padding-top: 20px;

                  & .circulo {
                     width: clamp(150px, 25vw, 200px);
                     aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  padding-top: 20px;
                  margin: 0;

                  & p {
                     width: 80%;
                     font-size: 18px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-dos-aba {
               width: 100%;
               height: 8vh;
               display: flex;
               justify-content: center;
               align-items: center;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }

         /* ACCIONES */
         & .bloque-tres {
            width: 100%;
            height: fit-content;
            background-color: var(--verde-principal);
            padding: 0;

            & .bloque-tres-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 0;

               & .titulo {
                  padding: 20px 0 0;
               }
            }

            & .bloque-tres-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               padding-top: 20px;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  order: 1;
                  padding: 20px 0;

                  & .circulo {
                     width: clamp(150px, 25vw, 200px);
                     aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  order: 2;

                  & p {
                     width: 80%;
                     font-size: 18px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-tres-aba {
               width: 100%;
               height: 8vh;
               display: flex;
               justify-content: center;
               align-items: center;
               margin: 0;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }

         /* PROYECTO */
         & .bloque-cuatro {
            width: 100%;
            height: fit-content;
            background-color: var(--celeste-cuadros);
            padding: 0;

            & .bloque-cuatro-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 0;

               & .titulo {
                  padding: 20px 0 0;
               }
            }

            & .bloque-cuatro-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               padding-top: 20px;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  order: 1;
                  padding: 20px 0;

                  & .circulo {
                     width: clamp(150px, 25vw, 200px);
                     aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  order: 2;
                  margin: 0;

                  & p {
                     width: 80%;
                     font-size: 18px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-cuatro-aba {
               width: 100%;
               height: 12vh;
               display: flex;
               justify-content: center;
               align-items: center;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }
      }
   }

}

@media screen and (min-width: 769px) and (max-width: 1024px) {

   /* Basic Styling */
   body {
      width: 100%;
      height: fit-content;
      background-color: var(--verde-principal);

      & header {
         /*VIDEO FONDO*/
         & .videoFondo {
            max-height: none;

            & video {
               width: 100%;
               height: auto;
               object-fit: contain;
            }

            & .texto-sobre-img {
               position: absolute;
               top: 70px;
               left: 0;
               width: 100%;
               height: 200px;
               display: flex;
               flex-direction: column;
               text-align: center;
               align-items: center;

               & h1 {
                  /* font-size: 35px; */
                  font-weight: 100;
                  color: var(--verde-principal);
                  margin-top: 18%;
                  letter-spacing: 4px;
               }

               & h2 {
                  width: fit-content;
                  height: fit-content;
                  padding: 5px 10px;
                  background-color: rgba(255, 255, 255, 0.486);
                  /* font-size: 17px; */
                  color: #fff;
                  font-weight: 100;
                  border-radius: 35px;
                  margin-top: -5px;

                  & strong {
                     font-size: 22px;
                  }
               }
            }
         }
      }

      /* MAIN */
      & .main {
         width: 100%;
         height: fit-content;
         display: flex;
         flex-direction: column;

         /* SUMATE */
         & .bloque-uno {
            width: 100%;
            height: fit-content;
            position: relative;
            background-color: var(--verde-principal);
            overflow: hidden;

            & .bloque-uno-arr {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               align-items: center;
               padding: 20px;

               & .titulos {
                  width: 90%;
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  color: #fff;
                  font-size: 23px;
               }

               & .texto {
                  width: 90%;

                  & .content {
                     color: #fff;
                     display: flex;
                     justify-content: center;
                     font-size: 15px;
                     padding-top: 30px;
                  }
               }
            }

            & .bloque-uno-aba {
               width: 100%;
               height: fit-content;
               display: flex;
               align-items: center;
               justify-content: center;
               background-color: var(--verde-principal);
               padding-top: 20px;

               & .botones {
                  width: 90%;
                  height: 80%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 0px;

                  & .boton {
                     width: 250px;
                     height: 250px;
                     border-radius: 25px;
                     background-color: transparent;
                     display: flex;
                     flex-direction: column;
                     justify-content: space-between;
                     align-items: center;
                     padding: 0;
                     position: relative;

                     & .circulo {
                        display: flex;
                        top: 5%;
                        width: 200px;
                        height: 200px;
                        background-color: var(--verde-secundario);
                        border-radius: 50%;
                     }

                     & .signo-mas {
                        position: absolute;
                        top: 30%;

                        & .signo-verde {
                           display: none;
                        }

                        & .signo-blanco {
                           display: block;
                           width: 50%;
                        }
                     }

                     & .texto {
                        position: absolute;
                        top: 65%;
                        text-align: center;
                        font-size: 18px;
                        font-weight: 0;
                        color: #fff;
                        line-height: normal;
                     }
                  }
               }
            }

            & .imagen-profe {
               width: 100%;
               display: none;
               justify-content: end;

               & img {
                  width: 60%;
                  transform: translateY(-100px);
                  margin-bottom: -250px;
               }
            }
         }

         /* CHARLAS Y TALLERES */
         & .bloque-dos {
            width: 100%;
            height: fit-content;
            background-color: var(--celeste-cuadros);
            padding: 0;

            & .bloque-dos-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
            }

            & .bloque-dos-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  padding-top: 20px;

                  & .circulo {
                     width: clamp(200px, 27vw, 300px);
                     aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  padding-top: 20px;
                  margin: 0;

                  & p {
                     width: 80%;
                     font-size: 18px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-dos-aba {
               width: 100%;
               height: 8vh;
               display: flex;
               justify-content: center;
               align-items: center;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }

         /* ACCIONES */
         & .bloque-tres {
            width: 100%;
            height: fit-content;
            background-color: var(--verde-principal);
            padding: 0;

            & .bloque-tres-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 0;

               & .titulo {
                  padding: 20px 0 0;
               }
            }

            & .bloque-tres-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               padding-top: 20px;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  order: 1;
                  padding: 20px 0;

                  & .circulo {
                     width: clamp(200px, 27vw, 300px);
                     aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  order: 2;

                  & p {
                     width: 80%;
                     font-size: 18px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-tres-aba {
               width: 100%;
               height: 8vh;
               display: flex;
               justify-content: center;
               align-items: center;
               margin: 0;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }

         /* PROYECTO */
         & .bloque-cuatro {
            width: 100%;
            height: fit-content;
            background-color: var(--celeste-cuadros);
            padding: 0;

            & .bloque-cuatro-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 0;

               & .titulo {
                  padding: 20px 0 0;
               }
            }

            & .bloque-cuatro-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               padding-top: 20px;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  order: 1;
                  padding: 20px 0;

                  & .circulo {
                     width: clamp(200px, 27vw, 300px);
                     aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  order: 2;
                  margin: 0;

                  & p {
                     width: 80%;
                     font-size: 18px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-cuatro-aba {
               width: 100%;
               height: 12vh;
               display: flex;
               justify-content: center;
               align-items: center;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }
      }
   }

}

@media screen and (min-width: 1025px) and (max-width: 1366px) {

   /* Basic Styling */
   body {
      width: 100%;
      height: fit-content;
      background-color: var(--verde-principal);

      & header {
         /*VIDEO FONDO*/
         & .videoFondo {
            max-height: none;

            & video {
               width: 100%;
               height: auto;
               object-fit: contain;
            }

            & .texto-sobre-img {
               position: absolute;
               top: 70px;
               left: 0;
               width: 100%;
               height: 200px;
               display: flex;
               flex-direction: column;
               text-align: center;
               align-items: center;

               & h1 {
                  /* font-size: 35px; */
                  font-weight: 100;
                  color: var(--verde-principal);
                  margin-top: 18%;
                  letter-spacing: 4px;
               }

               & h2 {
                  width: fit-content;
                  height: fit-content;
                  padding: 5px 10px;
                  background-color: rgba(255, 255, 255, 0.486);
                  /* font-size: 17px; */
                  color: #fff;
                  font-weight: 100;
                  border-radius: 35px;
                  margin-top: -5px;

                  & strong {
                     font-size: 22px;
                  }
               }
            }
         }
      }

      /* MAIN */
      & .main {
         width: 100%;
         height: fit-content;
         display: flex;
         flex-direction: column;

         /* SUMATE */
         & .bloque-uno {
            width: 100%;
            height: fit-content;
            position: relative;
            background-color: var(--verde-principal);
            overflow: hidden;

            & .bloque-uno-arr {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               align-items: center;
               padding: 20px;

               & .titulos {
                  width: 90%;
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  color: #fff;
                  font-size: 23px;
               }

               & .texto {
                  width: 90%;

                  & .content {
                     color: #fff;
                     display: flex;
                     justify-content: center;
                     font-size: 15px;
                     padding-top: 30px;
                  }
               }
            }

            & .bloque-uno-aba {
               width: 100%;
               height: fit-content;
               display: flex;
               align-items: center;
               justify-content: center;
               background-color: var(--verde-principal);
               padding-top: 20px;

               & .botones {
                  width: 90%;
                  height: 80%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 0px;

                  & .boton {
                     width: 250px;
                     height: 250px;
                     border-radius: 25px;
                     background-color: transparent;
                     display: flex;
                     flex-direction: column;
                     justify-content: space-between;
                     align-items: center;
                     padding: 0;
                     position: relative;

                     & .circulo {
                        display: flex;
                        top: 5%;
                        width: 200px;
                        height: 200px;
                        background-color: var(--verde-secundario);
                        border-radius: 50%;
                     }

                     & .signo-mas {
                        position: absolute;
                        top: 30%;

                        & .signo-verde {
                           display: none;
                        }

                        & .signo-blanco {
                           display: block;
                           width: 50%;
                        }
                     }

                     & .texto {
                        position: absolute;
                        top: 65%;
                        text-align: center;
                        font-size: 18px;
                        font-weight: 0;
                        color: #fff;
                        line-height: normal;
                     }
                  }
               }
            }

            & .imagen-profe {
               width: 100%;
               display: none;
               justify-content: end;

               & img {
                  width: 60%;
                  transform: translateY(-100px);
                  margin-bottom: -250px;
               }
            }
         }

         /* CHARLAS Y TALLERES */
         & .bloque-dos {
            width: 100%;
            height: fit-content;
            background-color: var(--celeste-cuadros);
            padding: 0;

            & .bloque-dos-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
            }

            & .bloque-dos-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  padding-top: 20px;

                  & .circulo {
                     width: clamp(200px, 28vw, 300px);
                     aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  padding-top: 20px;
                  margin: 0;

                  & p {
                     width: 80%;
                     font-size: 20px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-dos-aba {
               width: 100%;
               height: 8vh;
               display: flex;
               justify-content: center;
               align-items: center;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }

         /* ACCIONES */
         & .bloque-tres {
            width: 100%;
            height: fit-content;
            background-color: var(--verde-principal);
            padding: 0;

            & .bloque-tres-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 0;

               & .titulo {
                  padding: 20px 0;
               }
            }

            & .bloque-tres-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               padding-top: 20px;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  order: 1;
                  padding: 20px 0;

                  & .circulo {
                     width: clamp(200px, 28vw, 300px);
                     aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  order: 2;

                  & p {
                     width: 80%;
                     font-size: 20px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-tres-aba {
               width: 100%;
               height: 8vh;
               display: flex;
               justify-content: center;
               align-items: center;
               margin: 0;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }

         /* PROYECTO */
         & .bloque-cuatro {
            width: 100%;
            height: fit-content;
            background-color: var(--celeste-cuadros);
            padding: 0;

            & .bloque-cuatro-arr {
               width: 100%;
               height: 8vh;
               color: #fff;
               font-size: 25px;
               padding: 0;
               display: flex;
               justify-content: center;
               align-items: center;
               padding: 0;

               & .titulo {
                  padding: 20px 0 0;
               }
            }

            & .bloque-cuatro-cen {
               width: 100%;
               height: fit-content;
               display: flex;
               flex-direction: column;
               padding-top: 20px;

               & .circulos {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  order: 1;
                  padding: 20px 0;

                  & .circulo {
                     width: clamp(200px, 28vw, 300px);
                     aspect-ratio: 1 / 1;
                     background-color: var(--verde-principal);
                     border-radius: 50%;
                  }
               }

               & .texto {
                  width: 100%;
                  height: 100%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  order: 2;
                  margin: 0;

                  & p {
                     width: 80%;
                     font-size: 20px;
                     color: #fff;
                     text-align: justify;
                     letter-spacing: 0.03em;
                  }
               }
            }

            & .bloque-cuatro-aba {
               width: 100%;
               height: 12vh;
               display: flex;
               justify-content: center;
               align-items: center;

               & a {
                  width: fit-content;
                  height: fit-content;
                  color: #fff;
                  font-size: 25px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  padding: 10px 20px;
                  background-color: var(--verde-secundario);
                  border-radius: 50px;
                  margin-right: 0;
               }
            }
         }
      }
   }

}


/*esta parte del código define el movimiento de las imágenes a la izquierda*/
@keyframes slidy {
   0% {
      left: 0%;
   }

   10% {
      left: -100%;
   }

   20% {
      left: -200%;
   }

   30% {
      left: -300%;
   }

   40% {
      left: -400%;
   }

   50% {
      left: -500%;
   }

   60% {
      left: -600%;
   }

   70% {
      left: -700%;
   }

   80% {
      left: -800%;
   }

   90% {
      left: -900%;
   }

   100% {
      left: 0%;
   }
}

/* CARRUSEL */
@keyframes scroll {
   0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
   }

   100% {
      -webkit-transform: translateX(calc(-200px * 4));
      transform: translateX(calc(-200px *4));
   }
}