/* AGRONEGOCIOS PRODUCTORES =============================================================== */
:root {
  --sizeS: clamp(0.2rem, 4vw, 1.2rem);
  --sizeM: clamp(1.2rem, 5vw, 2.4rem);
  --textL: clamp(1.8rem, 5.8vw, 2.8rem);
  --textM: clamp(0.8rem, 5vw, 1.3rem);
}

@media screen and (max-width: 1100px) {
  .pageWidth {
    padding: 0 10px;
  }
}

/* INTRO =============================================================== */
#intro {
  min-height: 680px;
  display: flex;
  justify-content: flex-end;
  margin-top: 89px;
  position: relative;
  background: rgb(154, 119, 255);
  background: -moz-linear-gradient(
    90deg,
    rgba(154, 119, 255, 1) 0%,
    rgba(2, 199, 255, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(154, 119, 255, 1) 0%,
    rgba(2, 199, 255, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(154, 119, 255, 1) 0%,
    rgba(2, 199, 255, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9a77ff", endColorstr="#02c7ff", GradientType=1);
  background: rgb(59, 232, 176);
  background: -moz-linear-gradient(
    -90deg,
    rgba(59, 232, 176, 1) 0%,
    rgba(26, 175, 208, 1) 100%
  );
  background: -webkit-linear-gradient(
    -90deg,
    rgba(59, 232, 176, 1) 0%,
    rgba(26, 175, 208, 1) 100%
  );
  background: linear-gradient(
    -90deg,
    rgba(59, 232, 176, 1) 0%,
    rgba(26, 175, 208, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3be8b0", endColorstr="#1aafd0", GradientType=1);
  min-height: clamp(500px, 50.4vw, 680px);
}

#intro .solution {
  padding: 50px 0 50px 60px;
  box-sizing: border-box;
  display: flex;
  width: 60%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#intro .solution h1 {
  font-weight: 700;
  font-size: clamp(2.2rem, 5.8vw, 3.3rem);
  color: #000;
  margin: 0 0 clamp(10px, 2.2vw, 15px) 0;
}

#intro .solution h2 {
  font-weight: 700;
  line-height: 1.3em;
  font-size: clamp(1.4rem, 3.8vw, 1.7rem);
  color: #fff;
  margin: 0 0 clamp(20px, 2.2vw, 30px) 0;
}

#intro a {
  font-weight: 700;
  font-size: clamp(0.5rem, 5.4vw, 1.1rem);
  line-height: 1.3em;
  /* margin-bottom: 30px; */
  color: #fff;
  transition: all 0.2s;
  border: 2px solid #fff;
  padding: 7px 15px;
  display: inline-block;
  border-radius: 8px;
  transition: all 0.2s;
}

#intro a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

#intro .pageWidth {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

#intro .photo {
  width: 44%;
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 0;
  z-index: 1;
}

#intro .photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 100% 100%;
}

#intro .misc {
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("field.png");
  background-repeat: no-repeat;
  background-position: right 0;
  background-size: cover;
  opacity: 0.4;
}

@media screen and (max-width: 1100px) {
  #intro .solution h1 {
    display: flex;
    flex-direction: column;
  }

  #intro .misc {
    top: 80%;
  }
}

@media screen and (max-width: 800px) {
  #intro {
    margin-top: 0px;
    flex-direction: column-reverse;
    min-height: auto;
  }

  #intro .misc {
    top: 75%;
    background-size: contain;
  }

  #intro .solution h1 {
    display: flex;
    flex-direction: row;
  }

  #intro .solution h1 span {
    margin-left: 10px;
  }

  #intro .photo {
    height: clamp(300px, 100vw, 400px);
    width: 100%;
    position: relative;
    top: 0;
  }

  #intro .photo img {
    object-position: 50% 100%;
  }

  #intro .solution {
    display: block;
    width: 100%;
    padding: 60px 30px 0 30px;
  }
}

@media screen and (max-width: 600px) {
  #intro .solution {
    padding: 50px 20px 0 20px;
  }

  #intro .solution p {
    font-size: 26px;
  }

  #intro .pageWidth {
    display: block;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 450px) {
  #intro .solution h1 {
    flex-direction: column;
  }

  #intro .solution h1 span {
    margin-left: 0;
  }

  #intro .solution {
    padding: 40px 0 0 0;
  }

  #intro .solution .actions a {
    font-size: 18px;
    padding: 11px 18px;
  }
}

@media screen and (max-width: 380px) {
  #intro .pageWidth {
    display: block;
    margin-bottom: 20px;
  }
}

/* DIGITALIZACIÓN =============================================================== */
#digitalization {
  padding: var(--paddingMedium) 0;
}

#digitalization h2 {
  margin: 0 auto 1em auto;
  color: var(--purpura-2);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  text-align: center;
  max-width: 900px;
}

#digitalization p.intro {
  font-weight: 600;
  font-size: var(--textM);
  line-height: 1.4em;
  color: var(--gris-8);
  margin: 0 auto 3em auto;
  max-width: 860px;
  text-align: center;
  text-transform: uppercase;
}

#digitalization ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 80px;
  row-gap: 60px;
  margin-bottom: 20px;
}

#digitalization ul li {
  box-sizing: border-box;
  font-weight: 300;
}

#digitalization ul li h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  margin: 0 0 10px 0;
  color: #1b2432;
  /*     color: #FFF; */
}

#digitalization ul li p {
  font-size: 17px;
  line-height: 1.5em;
  color: #49505b;
  font-weight: 500;
}

#digitalization ul li span {
  margin-left: -5px;
  display: flex;
}

#digitalization ul li span.noGap {
  height: 66px !important;
  display: inline-block;
  position: relative;
}

#digitalization ul li span i {
  font-size: 70px;
  color: var(--purpura-2);
}

#digitalization ul li span img {
  width: 70px;
  height: 70px;
}

/* Responsive - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1100px) {
  #digitalization ul li {
    /*         min-height: 80px; */
  }
}

@media screen and (max-width: 800px) {
  #digitalization ul {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 16px;
  }
}

@media screen and (max-width: 500px) {
  #digitalization ul {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 11px;
  }

  #digitalization ul li {
    min-height: 70px;
    /*         padding: 12px; */
  }
}

/* ALTERNATIVAS ======================================*/
#alternatives {
  padding: var(--paddingMedium) 0;
}

#alternatives h2 {
  margin: 0 auto 1em auto;
  color: var(--purpura-1);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  line-height: 1.4em;
  text-align: center;
}

#alternatives ul {
  margin: 0 auto 40px auto;
  max-width: 720px;
}

#alternatives ul li {
  font-weight: 600;
  font-size: clamp(1rem, 4.6vw, 1.3rem);
  line-height: 1.4em;
  margin-bottom: 1.4em;
  color: var(--gris-7);
  display: flex;
  align-items: flex-start;
}

#alternatives ul li i {
  margin-right: 6px;
  padding: 4px;
  color: var(--purpura-1);
  /* color: #FFF; */
  font-size: 16px;
  margin-top: 3px;
  background-color: var(--azul-3);
  background-color: var(--dorado-3);
  border-radius: 50%;
}

/* HERRAMIENTAS ======================================*/
#tools {
  background: rgb(255, 255, 255);
  background: -moz-radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(215, 215, 215, 1) 100%
  );
  background: -webkit-radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(215, 215, 215, 1) 100%
  );
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(215, 215, 215, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#d7d7d7", GradientType=1);
  padding: var(--paddingMedium) 0;
}

#tools h2 {
  font-weight: 700;
  font-size: var(--textL);
  color: var(--negro);
  margin: 0 0 40px 0px;
  text-align: center;
  margin: 0 auto 1.8em auto;
  max-width: 860px;
}

#tools .pageWidth ul {
  /*     display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px; */
  font-size: clamp(0.8rem, 4.1vw, 1.1rem);
  line-height: 1.4em;
}

#tools .pageWidth > ul > li {
  position: relative;
  transition: all 0.3s;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 40px var(--paddingMedium);
  margin-bottom: 40px;
}

#tools .pageWidth > ul > li.finnApp {
  padding: 40px var(--paddingMedium) 0 var(--paddingMedium);
}

#tools .pageWidth > ul > li img {
  max-width: 85px;
  height: auto;
  margin-bottom: var(--sizeS);
}

#tools .pageWidth > ul > li h3 {
  font-size: clamp(1.8rem, 5.8vw, 2rem);
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 0.4em;
}

#tools .pageWidth > ul > li p.intro {
  font-size: clamp(0.8rem, 4.1vw, 1.5rem);
  color: var(--gris-7);
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 1em;
}

#tools .pageWidth .accordionControl {
  display: flex;
  width: 100%;
}

#tools .pageWidth .finnApp .accordionControl {
  margin-bottom: 40px;
}

#tools .pageWidth .accordionControl a {
  display: flex;
  align-items: center;
  /* margin-bottom: 20px; */
  font-weight: 700;
  font-size: 20px;
  color: var(--purpura-2);
}

#tools .pageWidth .accordionControl span {
  background-color: var(--dorado-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 3px;
}

#tools .pageWidth .accordionControl i {
  font-size: 18px;
  color: #000;
  transition: all 0.4s;
}

#tools .pageWidth .expanded .accordionControl i {
  transform: rotate(90deg);
}

#tools .pageWidth .accordionContent {
  max-height: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  transition: all 0.4s;
  color: var(--gris-8);
}

#tools .pageWidth .expanded .accordionContent {
  max-height: 3000px;
  overflow: hidden;
}

#tools .dealsContent {
  margin-top: 20px;
}

#tools .dealsContent .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  font-size: 18px;
  line-height: 1.8em;
  margin-bottom: 2em;
}

#tools .dealsContent .wrapper h4 {
  color: var(--negro);
  font-size: clamp(0.8rem, 4.1vw, 1.1rem);
  line-height: 1.4em;
}

#tools .dealsContent .wrapper ul li {
  font-weight: 500;
  display: flex;
}

#tools .dealsContent .wrapper i {
  margin-right: 4px;
}
#tools .note {
  flex: 1;
}

#tools .note p {
  /* background-color: var(--purpura-5); */
  /* padding: 30px; */
  /*     text-align: center; */
  font-weight: 700;
  font-size: 23px;
  line-height: 1.3em;
  color: var(--purpura-2);
  color: var(--verde-1);
  color: var(--negro);
  /* border-radius: 10px; */
  margin-bottom: 10px;
}

#tools .note span {
  font-weight: 500;
  display: block;
  font-size: 12px;
  line-height: 1.4em;
  margin-bottom: 10px;
  color: var(--gris-8);
}

#tools .download {
  display: flex;
  padding: 10px;
  background-color: var(--gris-3);
  background-color: var(--purpura-5);
  background-color: var(--verde-5);
  margin-bottom: 40px;
  border-radius: 10px;
  /* justify-content: flex-start; */
  align-items: flex-start;
}

#tools .download a {
  font-size: clamp(1.2rem, 5.8vw, 1.3rem);
  font-weight: 700;
  line-height: 1.2em;
  flex: 1;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4em;
  color: var(--gris-8);

  margin: 0 auto 0.5em auto;
  max-width: 860px;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
}

#tools .download picture {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 5px;
  margin-right: 13px;
  /* height: 0; */
  /* padding-top: 100%; */
}

#tools .pageWidth > ul > li .download img {
  max-width: 150px;
  /* height: auto; */
  width: 100%;
  margin: 0;
}
#tools .finnappContent {
  /* margin-top: 20px; */
}

#tools .finnappContent .wrapper {
  display: flex;
  font-size: 18px;
  line-height: 1.8em;
}

#tools .finnappContent .wrapper > div {
  flex: 1;
  margin-right: 0px;
  /* padding-right: 20px; */
}

#tools .finnappContent .wrapper .phone {
  width: 350px;
  height: 410px;
  flex: initial;
  height: auto;
  background-image: url(app_in_phone.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}

#tools .finnappContent .wrapper ul {
  margin-bottom: 2em;
}

#tools .finnappContent .wrapper h4 {
  color: var(--negro);
}

#tools .finnappContent .wrapper ul li {
  font-weight: 500;
  display: flex;
  align-items: flex-start;
}

#tools .finnappContent .wrapper i {
  margin-right: 4px;
  margin-top: 6px;
}

#tools .agrologyContent {
  width: 100%;
  font-size: 18px;
  line-height: 1.8em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

#tools .agrologyContent ul {
  width: 100%;
  margin-bottom: 1em;
}

#tools .agrologyContent ul li {
  font-weight: 500;
}

#tools .agrologyContent i {
  margin-right: 4px;
}

#tools .agrologyContent .more a {
  font-size: 20px;
  color: #ffffff;
  margin: 0 auto;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 6px;
  transition: all 0.2s;
  font-weight: 700;
  background: rgb(2, 199, 255);
  background: -moz-linear-gradient(
    90deg,
    rgba(2, 199, 255, 1) 0%,
    rgba(59, 240, 202, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(2, 199, 255, 1) 0%,
    rgba(59, 240, 202, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(2, 199, 255, 1) 0%,
    rgba(59, 240, 202, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#02c7ff",endColorstr="#3bf0ca",GradientType=1);
}

#tools .agrologyContent .more a:hover {
  background: rgb(0, 185, 230);
  background: -moz-linear-gradient(
    90deg,
    rgba(0, 185, 230, 1) 0%,
    rgba(26, 235, 192, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(0, 185, 230, 1) 0%,
    rgba(26, 235, 192, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 185, 230, 1) 0%,
    rgba(26, 235, 192, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00b9e6",endColorstr="#1aebc0",GradientType=1);
}

/* Responsive - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1000px) {
  #tools .pageWidth ul {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
    max-width: 600px;
    margin: 0 auto;
  }

  #tools .dealsContent .wrapper {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }

  #tools .finnappContent .wrapper {
    flex-direction: column;
  }

  #tools .finnappContent .wrapper .phone {
    margin: 30px auto 0;
    height: 410px;
  }

  #tools .pageWidth .agrologyContent ul {
    margin-bottom: 1.5em;
  }
}

@media screen and (max-width: 500px) {
  #tools .pageWidth > ul > li {
    padding: 40px 20px;
    margin-bottom: 30px;
  }

  #tools .pageWidth > ul > li.finnApp {
    padding: 40px 20px 0 20px;
    margin-bottom: 30px;
  }

  #tools .finnappContent .wrapper .phone {
    width: calc(100% - 20px);
    background-position: right bottom;
  }

  #tools .download {
    flex-direction: column;
  }
  #tools .download picture {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

/* SIMPLE =============================================================== */
#simple {
  padding: var(--paddingMedium) 0;
}

#simple h2 {
  margin: 0 auto 1em auto;
  color: var(--purpura-2);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  text-align: center;
  line-height: 1.4em;
}

#simple p.intro {
  font-weight: 600;
  font-size: var(--textM);
  line-height: 1.4em;
  color: var(--gris-8);
  margin: 0 auto 1em auto;
  max-width: 860px;
  text-align: center;
  text-transform: uppercase;
}

#simple p.description {
  font-size: clamp(0.8rem, 4.4vw, 1.7rem);
  color: var(--gris-9);
  font-weight: 600;
  line-height: 1.5em;
  max-width: 850px;
  text-align: center;
  margin: 0 auto 1em auto;
}

#simple .pageWidth .accordionControl {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#simple .pageWidth .accordionControl a {
  display: flex;
  align-items: center;
  /* margin-bottom: 20px; */
  font-weight: 700;
  font-size: 20px;
  color: var(--purpura-2);
}

#simple .pageWidth .accordionControl span {
  background-color: var(--dorado-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 3px;
}

#simple .pageWidth .accordionControl i {
  font-size: 18px;
  color: #000;
  transition: all 0.4s;
}

#simple .pageWidth .expanded .accordionControl i {
  transform: rotate(90deg);
}

#simple .pageWidth .accordionContent {
  max-height: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  transition: all 0.4s;
  color: var(--gris-8);
}

#simple .pageWidth .expanded .accordionContent {
  max-height: 3000px;
  overflow: hidden;
}

#simple .pageWidth .simpleContent .wrapper {
  background-color: var(--gris-2);
  padding: 30px;
  font-size: 19px;
  line-height: 1.4em;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  margin-bottom: 30px;
  margin-top: 20px;
}

#simple .pageWidth .simpleContent .wrapper h4 {
  color: var(--azul-1);
  margin-bottom: 2px;
  font-size: clamp(0.8rem, 4.1vw, 1.1rem);
}

#simple .pageWidth .simpleContent .wrapper ul li {
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  font-size: clamp(0.8rem, 4.1vw, 1.1rem);
}

#simple .pageWidth .simpleContent .wrapper i {
  color: var(--azul-1);
  margin-right: 4px;
  margin-top: 2px;
}

#simple .pageWidth .simpleContent .more {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#simple .pageWidth .simpleContent .more a {
  font-size: 20px;
  color: #ffffff;
  margin: 0 auto;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 6px;
  transition: all 0.2s;
  font-weight: 700;
  transition: all 0.2s;
  background: rgb(255, 203, 0);
  background: -moz-linear-gradient(
    270deg,
    rgba(255, 203, 0, 1) 0%,
    rgba(246, 147, 0, 1) 50%,
    rgba(255, 109, 139, 1) 100%
  );
  background: -webkit-linear-gradient(
    270deg,
    rgba(255, 203, 0, 1) 0%,
    rgba(246, 147, 0, 1) 50%,
    rgba(255, 109, 139, 1) 100%
  );
  background: linear-gradient(
    270deg,
    rgba(255, 203, 0, 1) 0%,
    rgba(246, 147, 0, 1) 50%,
    rgba(255, 109, 139, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffcb00",endColorstr="#ff6d8b",GradientType=1);
}

#simple .pageWidth .simpleContent .more a:hover {
  background: rgb(228, 182, 0);
  background: -moz-linear-gradient(
    270deg,
    rgba(228, 182, 0, 1) 0%,
    rgba(232, 139, 0, 1) 50%,
    rgba(223, 96, 122, 1) 100%
  );
  background: -webkit-linear-gradient(
    270deg,
    rgba(228, 182, 0, 1) 0%,
    rgba(232, 139, 0, 1) 50%,
    rgba(223, 96, 122, 1) 100%
  );
  background: linear-gradient(
    270deg,
    rgba(228, 182, 0, 1) 0%,
    rgba(232, 139, 0, 1) 50%,
    rgba(223, 96, 122, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e4b600",endColorstr="#df607a",GradientType=1);
}

/* Responsive - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 900px) {
  #simple .pageWidth .simpleContent .wrapper {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
    max-width: 600px;
    margin: 20px auto 30px auto;
  }
}

/* POLITICA DE PRECIOS =============================================================== */
#prices {
  background: #e1e2e4;
  padding: 30px 0;
}

#prices .pageWidth {
  display: flex;
  justify-content: center;
}

#prices a {
  text-align: center;
  font-size: 20px;
  font-size: clamp(0.9rem, 2.3vw, 1.25rem);
  color: #ffffff;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 6px 20px;
  border-radius: 6px;
  transition: all 0.2s;
  font-weight: 700;
  transition: all 0.2s;
  background: rgb(255, 203, 0);
  background: -moz-linear-gradient(
    270deg,
    rgba(255, 203, 0, 1) 0%,
    rgba(246, 147, 0, 1) 50%,
    rgba(255, 109, 139, 1) 100%
  );
  background: -webkit-linear-gradient(
    270deg,
    rgba(255, 203, 0, 1) 0%,
    rgba(246, 147, 0, 1) 50%,
    rgba(255, 109, 139, 1) 100%
  );
  background: linear-gradient(
    270deg,
    rgba(255, 203, 0, 1) 0%,
    rgba(246, 147, 0, 1) 50%,
    rgba(255, 109, 139, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffcb00",endColorstr="#ff6d8b",GradientType=1);
}

#prices a i {
  font-size: 30px;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  /* 	margin-top: 2px; */
}

#prices a:hover {
  background: rgb(228, 182, 0);
  background: -moz-linear-gradient(
    270deg,
    rgba(228, 182, 0, 1) 0%,
    rgba(232, 139, 0, 1) 50%,
    rgba(223, 96, 122, 1) 100%
  );
  background: -webkit-linear-gradient(
    270deg,
    rgba(228, 182, 0, 1) 0%,
    rgba(232, 139, 0, 1) 50%,
    rgba(223, 96, 122, 1) 100%
  );
  background: linear-gradient(
    270deg,
    rgba(228, 182, 0, 1) 0%,
    rgba(232, 139, 0, 1) 50%,
    rgba(223, 96, 122, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e4b600",endColorstr="#df607a",GradientType=1);
}

@media screen and (max-width: 600px) {
  #prices a {
    display: flex;
    flex-direction: column;
    max-width: 360px;
  }
}

/* Comunidad WhatsApp */
#comunidadWs3 {
  background-color: var(--gris-2);
  padding: var(--paddingMedium) 0;
  font-size: 16px;
  color: var(--marino);
}

#comunidadWs3 .banner {
  background-color: #d5eed6;
  /* background-color: yellow; */
  border-radius: calc(var(--radiusV) * 0.5);
  padding: 1.5em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#comunidadWs3 .banner h4 {
  font-weight: 800;
  font-size: clamp(1.5rem, 3.1vw, 2.2rem);
  line-height: 1.1em;
  margin-bottom: 0.2em;
}

#comunidadWs3 .banner p {
  font-weight: 600;
  font-size: clamp(0.9rem, 1.8vw, 1.22rem);
  line-height: 1.3em;
  margin-bottom: 2.5em;
  max-width: 630px;
}

#comunidadWs3 .banner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 3em;
  width: 100%;
}

#comunidadWs3 .banner ul li {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.5em;
}

#comunidadWs3 .banner ul li h5 {
  font-weight: 700;
  font-size: clamp(1rem, 2.1vw, 1.3rem);
  line-height: 1.2em;
  margin: 0 0 0.2em 0;
}

#comunidadWs3 .banner ul li picture {
  margin-bottom: 0.6em;
  width: 110px;
}

#comunidadWs3 .banner ul li p {
  font-weight: 600;
  font-size: clamp(0.9rem, 1.8vw, 0.8rem);
  line-height: 1.3em;
  margin-bottom: 0.6em;
  flex: 1;
  width: 180px;
}

#comunidadWs3 .banner .data .cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6em;
}

#comunidadWs3 .banner ul li a {
  border-radius: 1em;
  padding: 0.3em 1em;
  font-weight: 700;
  font-size: clamp(0.9rem, 3.6vw, 0.8rem);
  background-color: #00c307;
  color: #fff;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.2em;
}

#comunidadWs3 .banner ul li a i {
  font-size: 1.3em;
}

#comunidadWs3 .banner ul li a:hover {
  background-color: #008f05;
}

#comunidadWs3 .banner picture {
  width: 150px;
  display: flex;
}

#comunidadWs3 .banner picture img {
  width: 100%;
}

@media screen and (max-width: 900px) {
  #comunidadWs3 .banner ul {
    max-width: 700px;
  }
  #comunidadWs3 .banner ul li {
    width: 50%;
  }

  #comunidadWs3 .banner ul li p {
    width: 250px;
  }
}

@media screen and (max-width: 600px) {
  #comunidadWs3 .banner ul li p {
    width: 220px;
  }
}

@media screen and (max-width: 500px) {
  #comunidadWs3 .banner ul li {
    width: 100%;
  }

  #comunidadWs3 .banner picture {
    display: none;
  }

  #comunidadWs3 .banner ul li p {
    width: 100%;
  }
}
