:root {
  /* Colores sólidos */
  --naranja-fuerte: #ed6227;
  --verde-medio-oscuro: #2d7c4d;
  --naranja-claro: #ef733f;
  --verde-oscuro: #03632e;
  --verde-normal: #0f7e2e;
  --verde-lima: #bfcd00;
  --verde-oliva: #4b8239;
  --verde-bosque: #335e31;
  --naranja-tostado: #e28539;
  --white: white;

  /* Colores con opacidad al 30% */
  --verde-lima-30: rgba(191, 205, 0, 0.3);
  --naranja-fuerte-30: rgba(237, 98, 39, 0.3);
  --naranja-tostado-30: rgba(226, 133, 57, 0.3);
}

/* ====================================================================== */
/* =========================== Default Screen =========================== */
/* ====================================================================== */
.social-fixed {
  position: fixed;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.social-btn {
  width: 48px;
  height: 48px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s all ease-in-out;
}

.social-btn:hover {
  transform: scale(1.1);
}
.social-btn.youtube {
  background-image: url("../assets/SVG/Alernix_youtube.svg");
}
.social-btn.correo {
  background-image: url("../assets/SVG/Alernix_Correos.svg");
}

html {
  height: 100%;
  overflow-y: scroll;
  cursor: default;
  font-size: 10px;
}

body {
  height: 100%;
  -webkit-font-smoothing: antialiased !important;
  -webkit-text-size-adjust: none !important;
  font-smoothing: antialiased !important;
  color: black;
  line-height: 0;
  padding: 0;
  margin: 0;
}

.setWrapper {
  max-width: 1080px;
  width: -webkit-calc(100% - 128px);
  width: -moz-calc(100% - 128px);
  width: -o-calc(100% - 128px);
  width: calc(100% - 128px);
  background: rgba(255, 0, 0, 0);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.setWide {
  max-width: 1280px;
}

.setGRID {
  width: 100%;
  height: 100vh;
  background: url(../assets/@0x/IMG_GRD.png) repeat-y top center / 1800px 100px;
  display: none;
}

/* ---------------------------------------- */
/* ----- >>> Structure -------------------- */
/* ---------------------------------------- */

header {
  width: 100%;
  background: #ffffff;
  position: fixed;
  color: #2d7c4d;
  z-index: 9990;
  top: 000%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.88);
}

section {
  width: 100%;
  position: relative;
  padding: 5% 0;
}

footer {
  width: 100%;
  background: #4d4d4d;
  position: relative;
  padding: 48px 0;
  color: #ffffff;
}

/* ---------------------------------------- */
/* ----- >>> Styles ----------------------- */
/* ---------------------------------------- */

h1 {
  font: 800 42px/1em "Raleway", sans-serif;
  margin: 08px auto 16px auto;
  letter-spacing: 0em;
  text-transform: uppercase;
}
h2 {
  font: 500 24px/1em "Raleway", sans-serif;
  margin: 08px auto 16px auto;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
h3 {
  font: 300 24px/1.25em "Raleway", sans-serif;
  margin: 48px auto 16px auto;
  letter-spacing: 0em;
}
h4 {
  font: 700 24px/1em "Raleway", sans-serif;
  margin: 08px auto 16px auto;
  letter-spacing: 0em;
}
p {
  font: 400 18px/1.5em "Raleway", sans-serif;
  margin: 08px auto 16px auto;
  letter-spacing: 0em;
}
small {
  font: 400 14px/1.75em "Raleway", sans-serif;
  margin: 08px auto 16px auto;
  letter-spacing: 0.05em;
}
a {
  text-decoration: none;
}

.setTDU,
.setTDU-2 {
  padding-bottom: 24px;
  position: relative;
}

.setTDU:before,
.setTDU-2:before,
.setTDU-3:before,
.setTDU-4:before {
  width: 48px;
  height: 16px;
  content: "";
  background: url(../assets/SVG/IMG_MSC.svg) no-repeat 0 0 / 400% 100%;
  position: absolute;
  bottom: 00%;
  left: 0%;
}

.setTDU-2:before {
  width: 48px;
  height: 16px;
  content: "";
  background: url(../assets/SVG/IMG_MSC-2.svg) no-repeat 0 0 / 400% 100%;
  position: absolute;
  bottom: 00%;
  left: 0%;
}

.setTDU-3:before {
  width: 48px;
  height: 16px;
  content: "";
  background: url(../assets/SVG/IMG_MSC-3.svg) no-repeat 0 0 / 400% 100%;
  position: absolute;
  bottom: 00%;
  left: 0%;
}

.setTDU-4:before {
  width: 48px;
  height: 16px;
  content: "";
  background: url(../assets/SVG/IMG_MSC-4.svg) no-repeat 0 0 / 400% 100%;
  position: absolute;
  bottom: 00%;
  left: 0%;
}

.setTAC .setTDU:before {
  margin-left: -24px;
  bottom: 00%;
  left: 50%;
}

/* ---------------------------------------- */
/* ----- >>> Navegation ------------------- */
/* ---------------------------------------- */

nav {
  overflow: hidden;
  margin: 0;
}

nav ul {
  text-align: center;
}

nav li {
  display: inline-block;
  margin: 0 -2px;
}

nav li:hover a,
nav li.isCurrent a {
  background-color: #e7f2e9;
  color: #004519;
}

nav li a {
  font: 500 18px/16px "Raleway", sans-serif;
  text-transform: uppercase;
  display: inline-block;
  padding: 40px 16px;
  color: #2d7c4d;
}

header .setBND a,
footer .setBND a {
  width: 100%;
  height: 100%;
  display: block;
}

footer .setBND {
  width: 128px;
  height: 64px;
}

footer nav {
  width: 100%;
  margin: 48px 0;
}

footer nav li {
  border-right: 1px solid #ffffff;
  margin: 0;
}

footer nav li a {
  background: transparent !important;
  color: #ffffff !important;
  padding: 0 16px;
}

footer nav li:last-child {
  border: none;
}

footer small {
  max-width: 880px;
  line-height: 1.5em;
  margin: 16px auto;
  font-size: 12px;
  display: block;
}

footer p > a,
footer small > a {
  text-decoration: underline;
}

header .setBND a,
footer .setBND a {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------------------------------------- */

.setLinks {
  position: fixed;
  z-index: 9999;
  right: 00%;
  top: 20vh;
}

.setLinks > li {
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  border-radius: 8px 0 0 8px;
  background: #8db69e;
  margin: 16px 0;
}

.setLinks > li:hover {
  background: #2d7c4d;
}

.setLinks > li > a > i {
  width: 32px;
  height: 32px;
  background: url(../assets/SVG/IMG_ICN.svg) no-repeat 0 0 / 200% 100%;
  margin: 8px 6px 8px 8px;
  display: inline-block;
}

.setLinks > li:nth-child(1) > a > i {
  background-position: 000% 000%;
}
.setLinks > li:nth-child(2) > a > i {
  background-position: 100% 000%;
}

/* ---------------------------------------- */
/* ----- >>> Section: Home ---------------- */
/* ---------------------------------------- */

.setCover {
  width: 100%;
  margin-top: 96px;
  overflow: hidden;
}

.setCover .setItem {
  width: 100%;
  padding-bottom: 40%;
}
.setCover .setItem.setSLD00 {
  background-image: url(../assets/@0x/banner-00.jpg);
}
.setCover .setItem.setSLD01 {
  background-image: url(../assets/@0x/IMG_CVR01.jpg);
}
.setCover .setItem.setSLD02 {
  background-image: url(../assets/@0x/IMG_CVR02.jpg);
}
.setCover .setItem.setSLD03 {
  background-image: url(../assets/@0x/IMG_CVR05.jpg);
}
.setCover .setItem.setSLD04 {
  background-image: url(../assets/@0x/IMG_CVR04.jpg);
}

/* ---------------------------------------- */
/* ----- >>> Section: Home SLIDER ---------------- */
/* ---------------------------------------- */
.setCover .setItem.setSLD00 {
  background-image: url(../assets/@0x/IMG_SLIDER00.jpg);
}
.new-slider .setCover .setItem.setSLD01 {
  background-image: url(../assets/@0x/IMG_SLIDER01.jpg);
}
.new-slider .setCover .setItem.setSLD02 {
  background-image: url(../assets/@0x/IMG_SLIDER02.jpg);
}
.new-slider .setCover .setItem.setSLD03 {
  background-image: url(../assets/@0x/IMG_SLIDER03.jpg);
}

.setCover .setItem > div {
  width: 100%;
  max-width: 440px;
  position: absolute;
  color: #ffffff;
  z-index: 9999;
  bottom: 05%;
  left: 10%;
}

.setCover .setItem > div > h1 {
  max-width: 640px;
  text-transform: none;
  white-space: nowrap;
  font-size: 54px;
}

.setCover.setSmall > div {
  justify-content: center;
  overflow: hidden;
  display: flex;
  height: 540px;
}

.setCover.setSmall .setContent {
  max-width: 1080px;
  width: -webkit-calc(100% - 128px);
  width: -moz-calc(100% - 128px);
  width: -o-calc(100% - 128px);
  width: calc(100% - 128px);
  margin-top: 80px;
  z-index: 999;
  color: #ffffff;
}

.setCover.setSmall .setContent h1 {
  width: 540px;
  position: relative;
  text-transform: none;
  line-height: 1em;
  font-weight: 700;
  font-size: 72px;
  float: left;
}

.setCover.setSmall.Faq-font .setContent h1,
.setCover.setSmall.adv-font .setContent h1 {
  width: 860px;
}

.setCover.setSmall .setContent h1 sup {
  display: inline-block;
  position: relative;
  font-size: 24px;
  top: -32px;
}

.setCover.setSmall .setContent h1 em {
  width: 100%;
  display: inline-block;
  position: absolute;
  line-height: 0.9em;
  font-weight: 300;
  font-size: 36px;
  top: 80px;
  left: 0;
}

.setCover.setSmall .setContent h1 em > span {
  width: 100%;
  display: inline-block;
  position: relative;
  line-height: 1em;
  font-size: 21px;
  top: -15%;
}

.setCover .getComercial {
  font: 700 21px/1em "Raleway", sans-serif;
  text-transform: uppercase;
  -webkit-transform: translate(00%, -50%);
  -moz-transform: translate(00%, -50%);
  -ms-transform: translate(00%, -50%);
  -o-transform: translate(00%, -50%);
  transform: translate(00%, -50%);
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  background: #ffffff;
  position: absolute;
  padding: 20px 48px;
  color: #004519;
  z-index: 9999;
  right: 10%;
  top: 75%;
}

.setCover .setItem.setSLD03 .getComercial {
  top: 50%;
}

.setCover .setItem.setSLD03 > div {
  position: absolute;
  bottom: -0%;
  left: unset;
  right: -1%;
}

/* ---------------------------------------- */
/* ----- >>> Section: Páginas ------------- */
/* ---------------------------------------- */

article {
  position: relative;
  z-index: 200;
}

article.setMWM {
  max-width: 900px;
}
article.setMWS {
  max-width: 800px;
}

article h1 {
  font: 500 42px/1em "Raleway", sans-serif;
  margin: 00px auto 16px auto;
  letter-spacing: 0em;
  text-transform: none;
}
article h2 {
  font: 400 24px/1.5em "Raleway", sans-serif;
  margin: 00px auto 16px auto;
  letter-spacing: 0em;
  text-transform: none;
}
article h3 {
  font: 400 18px/1.5em "Raleway", sans-serif;
  margin: 00px auto 16px auto;
  letter-spacing: 0em;
  text-transform: none;
}
article p {
  font: 400 19px/1.75em "Raleway", sans-serif;
  margin: 00px auto 16px auto;
  letter-spacing: 0em;
  text-transform: none;
}
article em {
  font-weight: 700;
}
article strong {
  font-weight: 700;
}

article .setM32 {
  margin-bottom: 32px;
}
article .setM64 {
  margin-bottom: 64px;
}

.setTable {
  width: 100%;
  max-width: 720px;
  float: left;
}

.setTable > li {
  width: 100%;
  font: 18px/1.75em "Raleway", sans-serif;
  border-bottom: 1px solid #2d7c4d;
  padding: 8px 0;
  display: flex;
}

.setTable > li:first-child strong {
  text-transform: uppercase;
  font-weight: 700 !important;
}

.setTable > li:first-child,
.setTable > li:last-child {
  border: none;
}

.setTable > li > div {
  width: 50%;
}

/* ---------------------------------------- */
/* ----- >>> Section: Productos ----------- */
/* ---------------------------------------- */

.setTMB {
  width: 480px;
  height: 480px;
  position: absolute;
  margin-left: -580px;
  z-index: 100;
  bottom: 0;
  left: 50%;
}

.setPRD {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.setPRD > li {
  width: -webkit-calc(33.33% - 12px);
  width: -moz-calc(33.33% - 12px);
  width: -o-calc(33.33% - 12px);
  width: calc(33.33% - 12px);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: #e7f2e9;
  margin-right: 16px;
  overflow: hidden;
  float: left;
}

.setPRD > li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.setPRD > li > a > div {
  width: 100%;
  padding-bottom: 60%;
  position: relative;
  z-index: 99;
}

.setPRD > li > a > div:before {
  width: 44px;
  height: 44px;
  content: "";
  background: url(../assets/SVG/IMG_PLS.svg) no-repeat center center / cover
    #2d7c4d;
  -webkit-border-radius: 100% 0 0 0;
  -moz-border-radius: 100% 0 0 0;
  border-radius: 100% 0 0 0;
  display: inline-block;
  position: absolute;
  z-index: 100;
  bottom: 0;
  right: 0;
}

.setPRD > li > a > div > p {
  max-width: 240px;
  -webkit-transform: translate(00%, -50%);
  -moz-transform: translate(00%, -50%);
  -ms-transform: translate(00%, -50%);
  -o-transform: translate(00%, -50%);
  transform: translate(00%, -50%);
  position: absolute;
  line-height: 1.25em;
  margin-left: 24px;
  font-size: 16px;
  top: 45%;
}

.setPRD > li > a > div > p > strong {
  width: 100%;
  text-transform: uppercase;
  display: inline-block;
}

.setPRD > li.isCurrent {
  background-color: #bad2c4;
}

.setBox {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto auto;
  display: inline-block;
  margin-bottom: 16px;
  margin-top: 8px;
  padding: 32px;
}

.setBox > ul {
  width: -webkit-calc(100% - 32px);
  width: -moz-calc(100% - 32px);
  width: -o-calc(100% - 32px);
  width: calc(100% - 32px);
  margin-bottom: 24px;
  margin-left: 32px;
}

.setBox > ul > li {
  font: 700 18px/1.75em "Raleway", sans-serif;
  list-style-position: inside;
  list-style: disc;
}

.setBG01 .setBox {
  background-image: url(../assets/SVG/IMG_BG2.svg);
  color: #ec8300;
}

.setBG03 .setBox {
  background-image: url(../assets/SVG/IMG_BG3.svg);
  color: #2d7c4d;
}

.setBox.adv {
  background-image: url(../assets/SVG/IMG_SABG1.svg);
  color: white;
  background-size: contain;
}

.setM01:after,
.setM02:after {
  width: 30%;
  padding-bottom: 30%;
  content: "";
  background: #f00;
  position: absolute;
  z-index: 100;
  bottom: -6%;
  right: 0;
}

.setM01:after {
  background: url(../assets/@0x/IMG_MSC01.png) no-repeat center center / cover;
  width: 25%;
}
.setM02:after {
  background: url(../assets/@0x/IMG_MSC02.png) no-repeat center center / cover;
}

/* ---------------------------------------- */

.setModal {
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.75);
  justify-content: center;
  align-items: center;
  text-align: center;
  position: fixed;
  display: flex;
  top: 0;
}

.setModal .setContent {
  width: -webkit-calc(100% - 192px);
  width: -moz-calc(100% - 192px);
  width: -o-calc(100% - 192px);
  width: calc(100% - 192px);
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  background: #e7f2e9;
  padding: 48px 64px;
  max-width: 640px;
}

.setModal .setContent h1 {
  margin-bottom: 32px;
  font-size: 32px;
  color: #ec8300;
}

.setModal .setContent p {
  text-align: justify;
  font-size: 16px;
}

.setModal .setContent small {
  width: 100%;
  font: 700 16px/1.75em "Raleway", sans-serif;
  display: inline-block;
}

.setModal .setContent small > span {
  display: inline-block;
  margin-right: 12px;
}

.setModal .setContent .setButton {
  font: 700 16px/1em "Raleway", sans-serif;
  background: #ec8300;
  padding: 16px 32px;
  margin-top: 16px;
}

/* ---------------------------------------- */
/* ----- >>> Section: Sintomas ------------ */
/* ---------------------------------------- */

.setSNT {
  width: 100%;
  margin-bottom: 32px;
  flex-wrap: wrap;
  display: flex;
}

.setSNT > li {
  width: 20%;
  margin-bottom: 32px;
}

.setSNT > li > p {
  text-transform: uppercase;
  line-height: 1em;
  color: #ec8300;
}

.setSNT > li > i {
  width: 128px;
  height: 128px;
  background-position: 000% 000%;
  background-repeat: no-repeat;
  background-size: 700% 100%;
  display: inline-block;
  margin-bottom: 16px;
}

.setSNT.setICO > li > p {
  color: #e24011;
}
.setSNT.setICG > li > p {
  color: #2d7c4d;
}

.setSNT > li.setI01 > i {
  background-position: 00% 000%;
}
.setSNT > li.setI02 > i {
  background-position: 16.6% 000%;
}
.setSNT > li.setI03 > i {
  background-position: 33.2% 000%;
}
.setSNT > li.setI04 > i {
  background-position: 49.8% 000%;
}
.setSNT > li.setI05 > i {
  background-position: 66.4% 000%;
}
.setSNT > li.setI06 > i {
  background-position: 83% 000%;
}
.setSNT > li.setI07 > i {
  background-position: 100% 000%;
}

.setSNT.setICL > li > i {
  background-image: url(../assets/SVG/IMG_IC1.svg);
}
.setSNT.setICO > li > i {
  background-image: url(../assets/SVG/IMG_IC2.svg);
}
.setSNT.setICG > li > i {
  background-image: url(../assets/SVG/IMG_IC3.svg);
}

.setSNT.setICG02 > li > i,
.nc-07 .setSNT.sprayadv.setICO > li > i {
  background-image: url(../assets/SVG/IMG_IC7.svg);
}
.setSNT.setICP > li > i {
  background-image: url(../assets/SVG/IMG_IC4.png);
}

/* ---------------------------------------- */
/* ----- >>> Section: Consejos ------------ */
/* ---------------------------------------- */

.setCNS {
  width: 100%;
  margin-bottom: 32px;
  overflow: hidden;
}

.setCNS > li {
  width: 100%;
  display: flex;
}

.setCNS > li > div > h1 {
  font-weight: 500;
  margin-top: 36px;
  font-size: 48px;
}

.setCNS > li > div > p {
  margin-bottom: 16px;
  line-height: 1.5em;
  font-size: 18px;
}

.setCNS > li > div > i {
  width: 128px;
  height: 128px;
  background: url(../assets/SVG/IMG_CNS.svg) no-repeat 0 0 / 500% 100%;
  display: inline-block;
  margin-bottom: 16px;
  margin-right: 24px;
}

.setCNS > li.setI01 > div > i {
  background-position: 00% 000%;
}
.setCNS > li.setI02 > div > i {
  background-position: 25% 000%;
}
.setCNS > li.setI03 > div > i {
  background-position: 50% 000%;
}
.setCNS > li.setI04 > div > i {
  background-position: 75% 000%;
}
.setCNS > li.setI05 > div > i {
  background-position: 100% 000%;
}

/* ---------------------------------------- */
/* ----- >>> General ---------------------- */
/* ---------------------------------------- */

.setBND {
  width: 160px;
  height: 80px;
  background: url(../assets/@0x/Alernix_main_logo.png) no-repeat center center /
    cover;
  display: inline-block;
}

.setMNF {
  width: 90px !important;
  height: 36px !important;
  background: url(../assets/IMG/logo-elea-white-transp-v2@3x.png) no-repeat
    center center / cover;
  display: inline-block;
  margin: 32px 0;
}

/*.setMNF {
	width: 90px;
	height: 32px;
	background: url(../assets/SVG/IMG_MNF.svg) no-repeat center center / cover;
	display: inline-block;
	margin: 32px 0;
}*/

img {
  width: 100%;
  height: auto !important;
  display: block;
}

.setCenter {
  width: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.setRound {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.setBKG {
  background-position: center center;
  background-repeat: no-repeat;
  background-color: none;
  background-size: cover;
}

.setFlex {
  display: flex;
}

.setPDG {
  padding: 48px 0;
}
.setNDP {
  padding: 0 !important;
}

.setFlex {
  display: flex;
}

.setFLL {
  float: left;
}
.setFLR {
  float: right;
}

.setTAL {
  text-align: left;
}
.setTAC {
  text-align: center;
}
.setTAR {
  text-align: right;
}

.setLine {
  width: 128px;
  height: 1px;
  background: #ffffff;
  margin: 0 auto;
  display: block;
}

.setMobile {
  display: none;
}

.setMobile p {
  margin-bottom: 0;
}

.swiper-notification {
  display: none !important;
  height: 0px !important;
}

/* ---------------------------------------- */

.setSlider {
  width: 100%;
  margin-top: 48px;
  overflow: hidden;
}

.setSlider .setItem {
  position: relative;
}

.setList .setItem a > div,
.setSlider .setItem a > div {
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  z-index: 99;
}

.setSlider.setBRD .setItem a > div {
  width: -webkit-calc(100% - 3px);
  width: -moz-calc(100% - 3px);
  width: -o-calc(100% - 3px);
  width: calc(100% - 3px);
  border-style: solid;
  border-width: 1.5px;
  position: relative;
}

.setSlider.setBRD .setItem a > div > div {
  width: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.setSlider.setBRD .setItem a > div > div > p {
  height: 36px;
  text-transform: uppercase;
  line-height: 1em;
  font-size: 18px;
  margin: 0;
}

.setSlider.setBRD .setItem a > div > div > i {
  width: 50%;
  margin: 6px 0;
  display: inline-block;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 2;
  fill: none;
}

.setList .setItem a > div:before,
.setSlider .setItem a > div:before {
  width: 44px;
  height: 44px;
  content: "";
  background: url(../assets/SVG/IMG_PLS.svg) no-repeat center center / cover
    #ec8300;
  -webkit-border-radius: 100% 0 0 0;
  -moz-border-radius: 100% 0 0 0;
  border-radius: 100% 0 0 0;
  display: inline-block;
  position: absolute;
  z-index: 100;
  bottom: -1px;
  right: -1px;
}

.setList .setItem a > p,
.setSlider .setItem a > p {
  line-height: 1.25em;
  margin-top: 16px;
  text-align: left;
  font-size: 21px;
}

.setList .setItem a > p > strong,
.setSlider .setItem a > p > strong {
  width: 100%;
  text-transform: uppercase;
  display: inline-block;
}

.setZigZag .setItem:nth-child(2n) {
  margin-top: 5%;
}

.setPrev,
.setNext {
  width: 32px;
  height: 64px;
  background: url(../assets/SVG/IMG_ARW.svg) no-repeat 0 0 / 200% 100%;
  position: absolute;
  margin-top: -32px;
  cursor: pointer;
  z-index: 99;
  top: 50%;
}

.setPrev {
  left: 32px;
  background-position: 000% 000%;
}
.setNext {
  right: 32px;
  background-position: 100% 000%;
}

/* ---------------------------------------- */

.setColumns {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.setColumns > div {
  width: -webkit-calc(50% - 48px);
  width: -moz-calc(50% - 48px);
  width: -o-calc(50% - 48px);
  width: calc(50% - 48px);
}

.setColumns > div:nth-child(1) {
  margin-right: 96px;
}

.setColumns.setC31 > div {
  padding: 64px 0 192px 0;
  overflow: hidden;
}

.setColumns.setC31 > div:nth-child(1) {
  width: -webkit-calc(100% - 520px);
  width: -moz-calc(100% - 520px);
  width: -o-calc(100% - 520px);
  width: calc(100% - 520px);
}

.setColumns.setC31 > div:nth-child(2) {
  width: 33%;
  background: #ffffff;
  max-width: 520px;
}

.setColumns.setC31 > div > article {
  width: -webkit-calc(100% - 64px);
  width: -moz-calc(100% - 64px);
  width: -o-calc(100% - 64px);
  width: calc(100% - 64px);
  max-width: 740px;
  float: right;
}

/* ---------------------------------------- */

.setList {
  width: 100%;
  max-width: 200px;
  margin-left: 64px;
  float: left;
}

.setList .setItem {
  margin-bottom: 32px;
}

.setList .setItem > a > p {
  margin-top: 16px;
  font-size: 18px;
}

/* ---------------------------------------- */

.setButton {
  font: 700 16px/1em "Raleway", sans-serif;
  text-transform: uppercase;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 20px 48px;
  color: #ffffff;
}

.setButton.setBGO {
  background: #e24011;
}
.setButton.setBGG {
  background: #2d7c4d;
}
.setButton.setBGD {
  background: #004519;
}
.setButton.setBGADV {
  background: #4e883b;
}
.setButton.setBGSPRAY {
  background: #ec8401;
}

/* ---------------------------------------- */
/* ----- >>> Color Scheme ----------------- */
/* ---------------------------------------- */

.setH11 h1 {
  color: #e24011;
}
.setH21 h2 {
  color: #e24011;
}
.setH31 h3 {
  color: #e24011;
}

.setH12 h1 {
  color: #ec8300;
}
.setH22 h2 {
  color: #ec8300;
}
.setH32 h3 {
  color: #ec8300;
}

.setH13 h1 {
  color: #004519;
}
.setH23 h2 {
  color: #004519;
}
.setH33 h3 {
  color: #004519;
}

.setH14 h1 {
  color: #2d7c4d;
}
.setH24 h2 {
  color: #2d7c4d;
}
.setH34 h3 {
  color: #2d7c4d;
}

.setHspray h1 {
  color: #ec8401;
}
.setHspray h2 {
  color: #ec8401;
}
.setHspray h3 {
  color: #ec8401;
}

.setHadv h1 {
  color: #4e893a;
}
.setHadv h2 {
  color: #4e893a;
}
.setHadv h3 {
  color: #4e893a;
}

.setHCO em,
.setHCO strong {
  color: #e24011;
}

.setHCL strong {
  color: #ec8300;
}

.setHCG em,
.setHCG strong {
  color: #2d7c4d;
}

.setHCD em,
.setHCD strong {
  color: #004519;
}

.setBG01 {
  background-color: #fdf9f3;
}
.setBG02 {
  background-color: #f9ead7;
}
.setBG03 {
  background-color: #f2f8f3;
}
.setBG04 {
  background-color: #e7f2e9;
}
.setBG05 {
  background-color: #629d7a;
  padding-top: 0;
}
.setBG06 {
  background-color: #a4c5b2;
}
.setBG07 {
  background-color: #fce4c8;
}
.setBG08 {
  background-color: #f7c890;
}
.setBG09 {
  background-color: #bdd4b7;
}
.setBG10 {
  background-color: #d1e2d8;
}

.setBG00 h1:before {
  background-position: 000% 0%;
}
.setBG01 h1:before {
  background-position: 033.3% 0%;
}
.setBG02 h1:before {
  background-position: 033.3% 0%;
}
.setBG03 h1:before {
  background-position: 066.4% 0%;
}
.setBG04 h1:before {
  background-position: 100% 0%;
}

.setBG03 .setItem a > div {
  background-color: #e7f2e9;
}
.setBG03 .setItem:hover a > div {
  background-color: #8db69e;
}

div:not(.isS03) .setBFO .setItem a > div:before {
  background-color: #ec8300;
}
.setBFG .setItem a > div:before {
  background-color: #2d7c4d;
}

.setBFO .setItem a:hover > div:before {
  background-color: #e24011;
}
.setBFG .setItem a:hover > div:before {
  background-color: #2d7c4d;
}

.setBRO .setItem a > div {
  border-color: #ec8300;
  color: #ec8300;
  stroke: #ec8300;
}
.setBRG .setItem a > div {
  border-color: #2d7c4d;
  color: #2d7c4d;
  stroke: #2d7c4d;
}

.setBRO .setItem a:hover > div {
  background-color: #ec8300;
  color: #ffffff;
  stroke: #ffffff;
}
.setBRG .setItem a:hover > div {
  background-color: #2d7c4d;
  color: #ffffff;
  stroke: #ffffff;
}

.setN01 {
  fill: url(#SVGID_1_);
  stroke: none;
}
.setN02 {
  fill: url(#SVGID_2_);
  stroke: none;
}
.setFill {
  fill: #ec8300;
  stroke: none;
}

.setMask {
  mask: url(../assets/SVG/IMG_MSK.svg) no-repeat bottom center / cover;
}

/* ---------------------------------------- */
/* ----- >>> General ---------------------- */
/* ---------------------------------------- */

.setSNP {
  padding: 0 !important;
}

.setSHP {
  padding-bottom: 12.5%;
  padding-top: 2.5%;
}

.setSHP:before {
  width: 100%;
  content: "";
  position: absolute;
  padding-bottom: 10%;
  background-color: rgba(255, 0, 0, 0);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -1px;
  z-index: 0;
  left: 0;
}

.setSI0:before {
  background-image: url(../assets/SVG/IMG_SI0.svg);
}
.setSI1:before {
  background-image: url(../assets/SVG/IMG_SI1.svg);
}
.setSI2:before {
  background-image: url(../assets/SVG/IMG_SI2.svg);
}
.setSI3:before {
  background-image: url(../assets/SVG/IMG_SI3.svg);
}
.setSI4:before {
  background-image: url(../assets/SVG/IMG_SI4.svg);
}
.setSI5:before {
  background-image: url(../assets/SVG/IMG_SI5.svg);
}
.setSI6:before {
  background-image: url(../assets/SVG/IMG_SI6.svg);
}
.setSI7:before {
  background-image: url(../assets/SVG/IMG_SI7.svg);
}

.setSI8:before {
  background-image: url(../assets/SVG/IMG_SI8.svg);
}

.setSH1:before {
  background-image: url(../assets/SVG/IMG_SH1.svg);
}
.setSH2:before {
  background-image: url(../assets/SVG/IMG_SH2.svg);
}
.setSH3:before {
  background-image: url(../assets/SVG/IMG_SH3.svg);
}
.setSH4:before {
  background-image: url(../assets/SVG/IMG_SH4.svg);
}
.setSH5:before {
  background-image: url(../assets/SVG/IMG_SH5.svg);
}
.setSH6:before {
  background-image: url(../assets/SVG/IMG_SH6.svg);
}
.setSH7:before {
  background-image: url(../assets/SVG/IMG_SH7.svg);
}

.setSH8:before {
  background-image: url(../assets/SVG/IMG_SH8.svg);
}

.setSH9:before {
  background-image: url(../assets/SVG/IMG_SP9.svg);
}

.setSA1:before {
  background-image: url(../assets/SVG/IMG_SA1.svg);
}
.setSA2:before {
  background-image: url(../assets/SVG/IMG_SA2.svg);
}

.setSA3:before {
  background-image: url(../assets/SVG/IMG_SA3.svg);
}

.setSA4:before {
  background-image: url(../assets/SVG/IMG_SA4.svg);
}

.setSP1:before {
  background-image: url(../assets/SVG/IMG_SP1.svg);
}
.setSP2:before {
  background-image: url(../assets/SVG/IMG_SP2.svg);
}
.setSP3:before {
  background-image: url(../assets/SVG/IMG_SP3.svg);
}
.setSP4:before {
  background-image: url(../assets/SVG/IMG_SP4.svg);
}
.setSP5:before {
  background-image: url(../assets/SVG/IMG_SP5.svg);
}

.setSP6:before {
  background-image: url(../assets/SVG/IMG_SP6.svg);
}

.setSP7:before {
  background-image: url(../assets/SVG/IMG_SP7.svg);
}

/* ---------------------------------------- */
/* ----- >>> Menu Animation --------------- */
/* ---------------------------------------- */

.setMenu {
  width: 32px;
  height: 32px;
  position: absolute;
  overflow: hidden;
  z-index: 9999;
  right: 12px;
  top: 14px;
}

.setMenu .setIcon {
  width: 20px;
  height: 24px;
  position: relative;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  margin: 4px auto;
  cursor: pointer;
}

.setMenu .setIcon span {
  width: 100%;
  height: 1.5px;
  display: block;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  background: #2d7c4d;
  position: absolute;
  margin-top: 2px;
  opacity: 1;
  left: 0;
}

.setMenu .setIcon span:nth-child(1) {
  top: 20%;
}
.setMenu .setIcon span:nth-child(2),
.setMenu .setIcon span:nth-child(3) {
  top: 40%;
}
.setMenu .setIcon span:nth-child(4) {
  top: 60%;
}

.isOpen .setMenu .setIcon span:nth-child(1) {
  width: 0%;
  left: 50%;
  top: 8px;
}

.isOpen .setMenu .setIcon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.isOpen .setMenu .setIcon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.isOpen .setMenu .setIcon span:nth-child(4) {
  width: 0%;
  left: 50%;
  top: 8px;
}
/* ---------------------------------------- */
/* ----- >>> New Home ------------------- */
/* ---------------------------------------- */

.setBFG .setItem.spray-adv a > div:before {
  background-color: #ed6228;
}

.setBG03 .setItem.spray-adv a > div {
  background-color: #f9ead7;
}

.setBG03 .setItem.spray-adv:hover a > div {
  background-color: #f3a781;
}

.setBG01 .setItem:hover a > div:before {
  background-color: #e24011 !important;
}

.setSLD00:after {
  content: "";
  background: url(../assets/SVG/Alivia24-home.svg);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 25%;
  height: 200px;
  position: absolute;
  bottom: 10%;
  right: 5%;
}
/* ---------------------------------------- */
/* ----- >>> SPRAY ADVANCE ------------------- */
/* ---------------------------------------- */

.setPRD > li.setBKG.isCurrent.adv {
  background-color: #efb699;
}

.setPRD > li.setBKG.adv {
  background-color: #f9ead7;
}

.setPRD > li.setBKG.adv > a > div:before {
  background-color: #ed6227;
}

section.setBG00.setSHP.setSP4.setHadv.adv24 {
  background: white;
}

section#isS06 {
  background: white;
}

section.adv24:after {
  content: "";
  background-image: url(https://alernix.com.ar/assets/SVG/Alivia24.svg);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  width: 200px;
  height: 250px;
  position: absolute;
  top: -11%;
  right: 5%;
}

.setSNT.sprayadv.setICO > li > i {
  background-image: url(../assets/SVG/IMG_Sadv.svg);
}

.setSNT.sprayadv.setICO > li > p {
  color: #4c893b;
}

.setHadv.setHCL .setColumns,
.setHadv.setHCL .setColumns > div:nth-child(1) {
  margin: 0;
}
.setHadv.setHCL .setColumns img {
  width: 42px;
  margin: auto;
}

.setHadv.setHCL .setColumns p {
  font-size: 16px;
}

.setHadv.setHCL .setColumns > div {
  max-width: 150px;
}

/* ---------------------------------------- */
/* ----- >>> Rapida accion ------------------- */
/* ---------------------------------------- */
section.rapidaac:after {
  content: "";
  background-image: url(https://alernix.com.ar/assets/SVG/Rapidaaccion.svg);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  width: 200px;
  height: 250px;
  position: absolute;
  top: -15%;
  right: 5%;
}

.setBox.rapidaac {
  background-image: url(../assets/SVG/IMG_BG2401.svg);
  color: white;
  background-size: contain;
}

.setBG03.setBG10 h1:before {
  background-position: 100% 0%;
}
/* ---------------------------------------- */
/* ----- >>> Spray ------------------- */
/* ---------------------------------------- */
.setBox.spray {
  color: white;
  background-image: url(../assets/SVG/IMG_BGS01.svg);
  background-size: contain;
}

section.actua2:after {
  content: "";
  background-image: url(https://alernix.com.ar/assets/SVG/Actua2.svg);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  width: 200px;
  height: 250px;
  position: absolute;
  top: -15%;
  right: 5%;
}

.setSNT.setICO.setSPRAY > li > i {
  background-image: url(../assets/SVG/IMG_Sspray.svg);
}

.setSNT.setICO.setSPRAY > li.setI04 > i {
  background-position: 102% 000%;
}

.setSNT.setICO.setSPRAY > li.setI03 > i {
  background-position: 65% 000%;
}
.setSNT.setICO.setSPRAY > li.setI02 > i {
  background-position: 30.5% 000%;
}

.setSNT.setICO.setSPRAY > li.setI01 > i {
  background-position: -2% 000%;
}

.setSNT.setICO.setSPRAY > li > p {
  color: #ea8302;
}
/* ---------------------------------------- */
/* ----- >>> Preguntas frecuentes ------------------- */
/* ---------------------------------------- */

.faq-wrapper {
  margin: 0 auto;
  color: white;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.faq-question {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  text-align: left;
  width: 100%;
  line-height: 1.3;
  padding: 2rem 0;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-icon {
  font-size: 16px;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0;
  font-size: 16px;
  line-height: 1.5;
}
.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 0 1rem 0;
}

.faq-item.active .faq-question {
  padding-bottom: 1rem;
}

/* ---------------------------------------- */
/* ----- >>> Animations ------------------- */
/* ---------------------------------------- */

a,
.setLinks > li,
.setItem a > div,
.setItem a > div:before {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@media (max-width: 1024px) {
  .t-banner {
    white-space: normal;
  }
}

/* ---------------------------------------- */
/* ----- >>> Comerciales botones ------------------- */
/* ---------------------------------------- */

a.setButton.setBGG.setcomercial {
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  position: absolute;
  color: #004519;
}

@media screen and (min-width: 980px) {
  a.setButton.setBGG.video-trigger.setcomercial.com-advance {
    left: 27%;
    right: auto;
    transform: translatey(-64%);
  }
  .nc-11 .setH14 h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 980px) {
  a.setButton.setBGG.setcomercial {
    right: 2%;
    width: 120px;
    top: 30%;
    padding: 16px 24px;
    transform: scale(0.9);
  }

  .adv-font a.setButton.setBGG.video-trigger.setcomercial,
  section.setCover.setSmall.setSHP.setSI6.setNDP
    a.setButton.setBGG.video-trigger.setcomercial,
  .mobile-center a.setButton.setBGG.video-trigger.setcomercial,
  section.setCover.setSmall.setSHP.setSI6.setNDP
    a.setButton.setBGG.video-trigger.setcomercial {
    right: 50%;
    top: 35%;
    transform: translatex(50%);
  }
}

/* ---------------------------------------- */
/* ----- >>> Animaciones CSS -------------- */
/* ---------------------------------------- */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(1deg);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Clases de animación */
.animate-fade-in-up {
  animation: fadeInUp 0.4s ease-out forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.4s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.4s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.4s ease-out forwards;
}

.animate-fade-in-scale {
  animation: fadeInScale 0.4s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-float-slow {
  animation: floatSlow 3.5s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Delays para animaciones escalonadas */
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.delay-600 {
  animation-delay: 0.6s;
}
.delay-700 {
  animation-delay: 0.7s;
}
.delay-800 {
  animation-delay: 0.8s;
}

/* Estados iniciales - ocultos */
.animate-fade-in-up,
.animate-fade-in-down,
.animate-fade-in-left,
.animate-fade-in-right,
.animate-fade-in-scale {
  opacity: 0;
}

/* ---------------------------------------- */
/* ----- >>> Estilos originales ----------- */
/* ---------------------------------------- */

.setProductosResumen {
  padding: 95px 0 0;
}

.setProductosResumen .setWrapper {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

@media (min-width: 1181px) {
  .setColsProductos {
    display: grid;
    grid-template-columns: 1fr minmax(426px, 0fr) 1fr;
    width: 100%;
  }

  .setProductoBox.producto24 {
    justify-content: flex-end;
  }

  .setProductoBox.productoSpray {
    justify-content: flex-start;
    padding: 32px 64px;
  }
}

@media (max-width: 1180px) {
  .setColsProductos {
    display: grid;
    grid-template-columns: 0.5fr minmax(316px, 0fr) 0.5fr;
    width: 100%;
  }
}

.setProductoBox {
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Mejorar la transición para efectos hover */
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /* Añadir cursor pointer para indicar interactividad */
  cursor: pointer;
}

/* Efectos hover mejorados */
.setProductoBox:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.setProductoImg {
  transition: all 0.3s ease-in-out;
}

/* Versión desktop */
.setProductoBox.producto24 {
  background: linear-gradient(
    180deg,
    #0c7e2e 1%,
    #11802c 13%,
    #228728 28%,
    #3d9321 45%,
    #63a417 64%,
    #92b90b 84%,
    #bfcd00 100%
  );
}
.setProductoBox.productoAdvance {
  background: linear-gradient(
    180deg,
    #4b8239 0%,
    #4f853b 24%,
    #5b8f41 49%,
    #70a14c 74%,
    #8db95c 100%
  );
}
.setProductoBox.productoSpray {
  background: linear-gradient(
    0deg,
    #87b626 0%,
    #72a028 14%,
    #56832c 36%,
    #426e2e 58%,
    #366230 79%,
    #335e31 100%
  );
}

.setProductoInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.setProductoTitulo {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffd431;
  text-transform: none;
  margin-bottom: 16px;
  letter-spacing: 0;
}

.setProductoTitulo span {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0px;
  text-transform: none;
  color: #ffd431;
}

.setProductoSub {
  font-style: italic;
  font-weight: 400;
  color: white;
  margin-bottom: 0;
  font-size: 16px;
}

.setProductoImg {
  width: 100%;
  transition: transform 0.3s ease-in-out;
  margin: 16px 0;
  height: 320px !important;
  object-fit: contain;
}

.setProductoDesc {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  margin: 0 0 24px;
  line-height: 1.3;
}

.setProductoDesc.first {
  max-width: 250px;
}

.setProductoDesc.third {
  max-width: 200px;
}

.setProductoFooter img {
  width: 100%;
  max-width: 180px;
}

.setProductoDesc.second {
  max-width: 350px;
}

@media screen and (max-width: 980px) {
  .setProductoBox.producto24 {
    background: linear-gradient(
      to right,
      #0c7e2e 1%,
      #11802c 13%,
      #228728 28%,
      #3d9321 45%,
      #63a417 64%,
      #92b90b 84%,
      #bfcd00 100%
    );
  }
  .setProductoBox.productoAdvance {
    background: linear-gradient(
      to right,
      #4b8239 0%,
      #4f853b 24%,
      #5b8f41 49%,
      #70a14c 74%,
      #8db95c 100%
    );
  }
  .setProductoBox.productoSpray {
    background: linear-gradient(
      to left,
      #87b626 0%,
      #72a028 14%,
      #56832c 36%,
      #426e2e 58%,
      #366230 79%,
      #335e31 100%
    );
  }
  .setProductoBox:hover .setProductoImg,
  a.setProductoBox:hover .setProductoImg.grow {
    transform: translateY(-50%) !important;
  }
  .setProductosResumen {
    padding: 64px 0 0;
  }
  .setColsProductos {
    grid-template-columns: 1fr;
  }

  a.setProductoBox {
    padding: 5%;
    text-align: left;
    justify-content: flex-start;
    min-height: 155px;
  }
  .setProductoInner {
    align-items: flex-start;
  }

  h2.setProductoTitulo {
    margin-left: 0;
    font-size: 24px;
  }

  .setProductoTitulo span {
    font-size: 20px;
  }

  .setProductoSub {
    text-align: left;
    font-size: 14px;
    margin-bottom: 16px;
  }

  .setProductoDesc {
    font-size: 14px;
    margin: 0;
  }

  .setProductoDesc.first {
    max-width: 150px !important;
  }

  .setProductoDesc.second {
    max-width: 190px;
  }

  .setProductoDesc.third {
    max-width: 120px;
  }

  .setProductoFooter img {
    display: none;
  }

  img.setProductoImg {
    position: absolute;
    right: 0;
    height: auto !important;
    top: 50%;
    margin: 0;
    max-width: 60%;
    transform: translateY(-50%);
    max-height: 90% !important;
    object-position: right;
  }

  a.setProductoBox.productoSpray img.setProductoImg,
  .setProductoBox.productoAdvance img.setProductoImg {
    right: 5%;
  }
}

/* Estilos adicionales para la animación */
body {
  font-family: "Raleway", sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

/* Efectos de brillo en hover */
.setProductoBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.setProductoBox:hover::before {
  left: 100%;
}

.grow {
  transition: 0.3s all ease-in-out;
}

a.setProductoBox:hover .setProductoImg.grow {
  transform: scale(1.1);
}

/* ---------------------------------------- */
/* ----- >>> NUEVO MENU RESPONSIVO -------- */
/* ---------------------------------------- */

/* ===== MENÚ DESKTOP (≥1024px) ===== */
.setMenuSplit {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 32px;
}

.setMenuSplit ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.setMenuSplit .logo-center {
  width: 160px;
  height: 80px;
  background: url("../assets/@0x/Alernix_main_logo.png") no-repeat center center /
    contain;
  transform: scale(1.3) translatey(-6%);
}

.setMenuSplit .logo-link {
  display: block;
  width: 100%;
  height: 100%;
}

.setMenuSplit li a {
  font: 500 18px/16px "Raleway", sans-serif;
  text-transform: uppercase;
  color: #2d7c4d;
  padding: 40px 20px;
  display: block;
  transition: all 0.25s ease-in-out;
}

.setMenuSplit li:hover a,
.setMenuSplit li.isCurrent a,
body#isS07 .menu-right li a[href="/preguntas-frecuentes"],
body#isS04 .setMenuSplit .menu-left li a[href="/#product-banner"] {
  background-color: #e7f2e9;
  color: #004519;
}

/* ===== LOGO MOBILE (solo visible en mobile) ===== */
.logo-mobile {
  display: none;
}

/* ===== MENÚ HAMBURGUESA Y MOBILE (<1024px) ===== */
@media screen and (max-width: 1023px) {
  .setMenuSplit {
    display: none;
  }

  .logo-mobile {
    display: block;
    width: 120px;
    height: 64px;
    background: url("../assets/@0x/Alernix_main_logo.png") no-repeat center
      center / contain;
    position: absolute;
    top: 50%;
    transform: translatey(-53%);
  }

  .setMenu {
    display: block;
    position: absolute;
    top: 14px;
    right: 12px;
    z-index: 9999;
  }

  .setMenuMobile {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: white;
    z-index: 9998;
  }

  body.isOpen .setMenuMobile {
    display: block;
  }

  .setMenuMobile ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    top: 35% !important;
  }

  .setMenuMobile li a {
    display: block;
    padding: 24px 16px;
    font: 500 18px "Raleway", sans-serif;
    color: #2d7c4d;
    border-bottom: 1px solid #e0e0e0;
    text-transform: uppercase;
  }

  .setMenuMobile li a:hover {
    background: #e7f2e9;
    color: #004519;
  }

  /* Ajustes generales para mobile */
  header {
    background: #ffffff;
  }

  header,
  header .setWrapper.setWide {
    height: 64px;
  }

  header nav > ul > li {
    margin: 0 !important;
    transform: translateX(-12px);
  }

  ul.menu-left,
  ul.menu-right,
  .setMenuSplit .logo-center {
    display: none;
  }
}

/* ===== VISTA DESKTOP RESTAURADA ===== */
@media screen and (min-width: 1024px) {
  .setMenuSplit {
    display: flex;
  }

  .logo-mobile {
    display: none !important;
  }

  .setMenu {
    display: none;
  }

  .setMenuMobile {
    display: none !important;
  }

  header {
    background: #ffffff;
  }

  header,
  header .setWrapper.setWide {
    height: 96px;
    width: 100%;
    max-width: 100%;
  }

  header nav > ul > li {
    margin: 0 !important;
  }

  header nav > ul {
    top: 40% !important;
  }
  .menu-left li:nth-last-child(-n + 2) a {
    padding: 40px 34px;
  }
}

.social-fixed {
  position: fixed;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.social-btn {
  width: 48px;
  height: 48px;
  background: #ed6228;
  border-radius: 8px 0 0 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s all ease-in-out;
}

@media screen and (max-width: 1023px) {
  .social-fixed {
    display: none; /* Ocultar en mobile por defecto */
  }

  .social-fixed.mobile-only {
    flex-direction: row;
    justify-content: center;
    margin: 16px 0;
    gap: 24px;
    display: flex;
    position: absolute;
    top: auto;
    bottom: 20vh;
    left: 50%;
    right: auto;
    transform: translatex(-50%);
  }

  .social-btn {
    border-radius: 8px;
  }
}

.social-btn:hover {
  transform: scale(1.1);
}
.social-btn.youtube {
  background-image: url("../assets/SVG/Alernix_youtube.svg");
}
.social-btn.correo {
  background-image: url("../assets/SVG/Alernix_Correos.svg");
}

/* ---------------------------------------- */
/* ----- >>> NUEVOS COLORES -------- */
/* ---------------------------------------- */

.nc-01,
.nc-02,
.nc-03,
.nc-04 {
  padding-top: 5%;
}

.no-pt {
  padding-top: 0;
}
.nc-bg-w {
  background-color: var(--white);
}

.nc-col .setColumns.setC31 > div:nth-child(2) {
  background: #fdf9f3;
}
/* ------------HOME--------------- */
.nc-01 h1,
.nc-01 h2,
.nc-03 h1,
.nc-03 h2 {
  color: var(--white);
}

.nc-col .setList .setItem a > div:before,
.nc-col .setSlider .setItem a > div:before {
  background-color: var(--naranja-fuerte) !important;
}

/* Sintomas */

.nc-01 {
  background: var(--naranja-fuerte);
}

.nc-01 .setBRO .setItem a > div {
  background: var(--white);
  stroke: var(--naranja-claro);
  color: var(--naranja-claro);
  border-color: var(--naranja-claro);
}

.nc-01 .setBRO .setItem a:hover > div {
  color: var(--white);
  stroke: var(--white);
}

.nc-01 .setBRO .setItem a:hover > div {
  background-color: var(--naranja-claro);
  border-color: var(--naranja-claro);
}

.nc01 .setList .setItem a > div:before,
.nc-01 .setSlider .setItem a > div:before,
.nc-02 div:not(.isS03) .setBFO .setItem a > div:before {
  background: url(../assets/SVG/IMG_PLS.svg) no-repeat center center / cover
    var(--naranja-claro) !important;
}

.nc-02 div:not(.isS03) .setBFO .setItem a:hover > div:before {
  background-color: var(--naranja-fuerte) !important;
}

/* alergias */
.nc-02 h1,
.nc-02 h2 {
  color: var(--naranja-fuerte);
}

/* consejos */

.nc-03 {
  background: var(--verde-oscuro);
}

.setBFG .setItem a > div:before {
  background-color: var(--verde-medio-oscuro);
}

.nc-03 .setBRG .setItem a > div {
  background: var(--white);
  border-color: var(--verde-medio-oscuro);
  stroke: var(--verde-medio-oscuro);
  color: var(--verde-medio-oscuro);
}

.nc-03 .setBRG .setItem a:hover > div {
  background: var(--verde-medio-oscuro);
  color: var(--white);
  stroke: var(--white);
}

/* Contacto */

.nc-04 h1,
.nc-04 h2 {
  color: var(--verde-oscuro);
}

/* ------------24 HORAS--------------- */
.nc-05 h1 {
  color: var(--verde-normal);
}

.nc-05 .rapidaac {
  background-image: url(../assets/SVG/IMG_BG2402.svg);
}

.nc-06 {
  background-color: var(--verde-normal);
}

.nc-06 h1 {
  color: var(--white);
}

.nc-06 .setButton {
  background: var(--white);
  color: var(--verde-normal);
}

.nc-06 .setSNT.setICG > li > p {
  color: var(--white);
}

/* ------------SPRAY Advance--------------- */

.nc-07 .setHadv h1 {
  color: var(--verde-oliva);
}

.nc-07 .nc-vo h1 {
  color: var(--white);
}
.nc-vo h1,
.nc-07 article.setMWM,
.nc-07 ul.setSNT.sprayadv.setICO.setTAC p {
  color: var(--white);
}

.nc-07 .nc-vo {
  background-color: var(--verde-oliva);
}

.nc-07 a.setButton.setBGADV {
  background: var(--naranja-fuerte);
  background: var(--naranja-fuerte);
}

/* ------------SPRAY NORMAL--------------- */
.nc-08 .actua2 h1 {
  color: var(--verde-bosque);
}

.nc-08 .setBox.spray {
  background-image: url(../assets/SVG/IMG_BGS02.svg);
}
.nc-bg-vb {
  background-color: var(--verde-bosque);
}

.nc-bg-vb,
.nc-bg-vb h1,
.nc-bg-vb .setSNT.setICO.setSPRAY > li > p {
  color: var(--white);
}

.setSNT.setICO.setSPRAY.nc-w > li > i {
  background-image: url(../assets/SVG/IMG_Sspray02.svg);
}

.nc-08 a.setButton {
  background: var(--naranja-tostado);
}

/* ------------SINTOMAS--------------- */

.nc-09 .setH12 h1,
.nc-09 .setHCL strong,
.nc-09 .setSNT > li > p {
  color: var(--naranja-fuerte);
}

/* ------------PREGUNTAS FRECUENTES--------------- */
.nc-10 .faq-question {
  color: var(--verde-oscuro);
  font-weight: 500;
}

.nc-10 .faq-item {
  border-color: var(--verde-oscuro);
}
.nc-10 .faq-answer {
  color: var(--naranja-fuerte);
}

/* ------------CONSEJOS--------------- */
.nc-11 .setH14 h1 {
  color: var(--verde-oscuro);
}

.nc-11 section.setBG01.setH11 h1 {
  color: var(--white);
}

.nc-11 section.setBG01.setH11 {
  background: var(--verde-oscuro);
  color: var(--white);
}

.nc-11 .setCNS > li > div > i {
  background: url(../assets/SVG/IMG_CNS2.svg) no-repeat 0 0 / 500% 100%;
}

.nc-11 .setCNS > li.setI02 > div > i {
  background-position: 25% 000%;
}

.nc-11 .setCNS > li.setI03 > div > i {
  background-position: 50% 000%;
}

.nc-11 .setCNS > li.setI02 > div > i {
  background-position: 25% 000%;
}

.nc-11 .setCNS > li.setI04 > div > i {
  background-position: 75% 000%;
}

.nc-11 .setCNS > li.setI05 > div > i {
  background-position: 100% 000%;
}

/* ------------ ALERGIAS --------------- */
.nc-nf-t h2,
.nc-nf-t h3,
.nc-nf-t h1,
.nc-nf-t em,
.nc-nf-t strong {
  color: var(--naranja-fuerte);
}

.nc-nf {
  background-color: var(--naranja-fuerte);
}

.nc-nf h1,
.nc-nf p,
.nc-nf li,
.nc-nf strong {
  color: var(--white);
}

.nc-nf .setTable > li {
  border-bottom: 1px solid;
}

/* ------------ BOTOM PRODUCTS --------------- */

.setPRD > li.nc {
  background-color: var(--white);
  border: 1px solid;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.setPRD > li.isCurrent.prd-01 {
  background-color: var(--verde-lima-30);
}

.setPRD > li.isCurrent.prd-02 {
  background-color: var(--naranja-fuerte-30);
}

.setPRD > li.isCurrent.prd-03 {
  background-color: var(--naranja-tostado-30);
}

.setPRD > li.nc.prd-01 {
  border-color: var(--verde-lima);
}

.setPRD > li.nc.prd-01 {
  background-size: 120%;
  background-position: right;
}

.setPRD > li.nc.prd-02 {
  border-color: var(--naranja-fuerte);
}

.setPRD > li.nc.prd-03 {
  border-color: var(--naranja-tostado);
}

.setPRD > li.prd-01 > a > div:before,
.setPRD > li.prd-02 > a > div:before,
.setPRD > li.prd-03 > a > div:before {
  transition: transform 0.3s ease;
}

/* Colores del indicador */
.setPRD > li.prd-01 > a > div:before {
  background-color: var(--verde-lima);
}

.setPRD > li.prd-02 > a > div:before {
  background-color: var(--naranja-fuerte);
}

.setPRD > li.prd-03 > a > div:before {
  background-color: var(--naranja-tostado);
}

/* Hover: fondo + sombra + crecimiento del indicador */
.setPRD > li.nc.prd-01:hover {
  background-color: var(--verde-lima-30);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.setPRD > li.nc.prd-01:hover > a > div:before {
  transform: scale(1.2);
}

.setPRD > li.nc.prd-02:hover {
  background-color: var(--naranja-fuerte-30);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.setPRD > li.nc.prd-02:hover > a > div:before {
  transform: scale(1.2);
}

.setPRD > li.nc.prd-03:hover {
  background-color: var(--naranja-tostado-30);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.setPRD > li.nc.prd-03:hover > a > div:before,
.nc-02 div:not(.isS03) .setBFO .setItem a:hover > div:before,
.setBFG .setItem a:hover > div:before,
.nc-col .setList .setItem a:hover > div:before,
.nc-col .setSlider .setItem a:hover > div:before,
.nc01 .setList .setItem a:hover > div:before,
.nc-01 .setSlider .setItem a:hover > div:before,
.nc-02 div:not(.isS03) .setBFO .setItem a:hover > div:before {
  transform: scale(1.2);
}

.nc-col .setList .setItem a:hover > div:before,
.nc-col .setSlider .setItem a:hover > div:before {
  background-color: var(--naranja-claro) !important;
}
