/* index.css — generado automaticamente: subconjunto de estilos.css usado por index.php + footer.php + menu.php */

:root {
  --colorBlue-900:#00475D;
  --colorBlue-500:#3f809C;
  --colorBlue-100:#AEC7CF;
  --colorGreen-900:#609839;
  --colorGreen-500:#89E462;
  --colorGreen-100:#F2FFE5;
  --colorYellow-900:#FFD406;
  --colorYellow-500:#FFEB01;
  --colorYellow-100:#FFFFFF;/*blanco-borde-amarillo*/
  --colorGray-900:#4E5258;
  --colorGray-500:#A6A6A6;
  --colorGray-100:#E6E6E6;
  --colorGray-10:#f9f9f9;
  --colorText-500:#A6A6A6;
  --colorText-Gray-900:#4E5258;
  --colorWhite:#FFFFFF;
  --fuenteArial: Arial, Helvetica, sans-serif;
  --fuenteTexto: Arial, Helvetica, sans-serif;
  
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {

    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
.navbar ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    /* display: block; */
}
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--colorBlue-900);
    color: #ffffff;
    z-index: 99;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 10px 0;
    transform: translateY(0);
    opacity: 1;

}
.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
.top-bar__container {
    max-width: 1515px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.top-bar__contact {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-size: 17px;
  border-radius: 6px;
  padding: 4px;
}
.top-bar__contact > div:first-of-type {
    background:var(--colorGreen-500);
}
.top-bar__contact > div:first-of-type:hover {
    background:var(--colorBlue-100);
}
.top-bar__item a {
    color: var(--colorBlue-900);
    transition: color 0.3s ease;
}
.top-bar__social {
    display: flex;
    gap: 15px;
    align-items: center;
}
.top-bar__social a {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    color: #ffffff;
    font-size: 20px;
}
.top-bar__social a:hover {
    transform: scale(1.2);
    color: #EE4B25;
}
.header {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    transition: top 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
    top: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.navbar {
    width: 100%;
}
.navbar__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; /* Altura inicial */
    transition: height 0.3s ease;
}
.header.scrolled .navbar__container {
    height: 50px;
}
.navbar__logo {
    font-size: 24px;
    font-weight: bold;
    color: #264B87;
    transition: font-size 0.3s ease, transform 0.3s ease;
    z-index: 1001;
}
.navbar__logo img {
    height: 60px; /* Altura inicial del logo */
    width: auto;
    transition: height 0.3s ease;
}
.header.scrolled .navbar__logo {
    font-size: 18px;
}
.header.scrolled .navbar__logo img {
    height: 40px; /* Reducción notoria del logo */
}
.navbar__menu {
    display: flex;
    align-items: center;
    gap: 5px;
}
.navbar__item {
    position: relative;
}
.navbar__link {
    display: block;
    padding: 10px 18px; /* Padding inicial */
    color: #264B87;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.header.scrolled .navbar__link {
    padding: 6px 14px; /* Padding reducido */
    font-size: 14px; /* Texto más pequeño */
}
.navbar__link:hover {
    background: #264B87;
    color: #ffffff;
}
.navbar__link--dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}
.navbar__arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}
.navbar__item--dropdown:hover .navbar__arrow {
    transform: rotate(180deg);
}
.navbar__btn {
    display: inline-block;
    padding: 10px 20px; /* Padding inicial */
    /* background: #EE4B25; */
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}
.header.scrolled .navbar__btn {
    padding: 6px 16px; /* Padding reducido */
    font-size: 13px; /* Texto más pequeño */
}
.navbar__btn:hover {
    /* background: #d43d19; */
    transform: translateY(-2px);
    /* box-shadow: 0 4px 12px rgba(238, 75, 37, 0.3); */
}
.navbar__megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
    transition: all 0.3s ease;
    min-width: 500px;
    z-index: 1000;
}
.navbar__megamenu2 {
  position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
    transition: all 0.3s ease;
     min-width: 300px;
    z-index: 1000; 
 

}
.navbar__item--dropdown:hover .navbar__megamenu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.navbar__item--dropdown:hover .navbar__megamenu2 {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.megamenu__content {
    display: flex;
    padding: 20px;
    gap: 40px;
}
.megamenu__column {
    flex: 1;
}
.megamenu__title {
    color: var(--colorGreen-900);
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}
.megamenu__list li {
    margin-bottom: 8px;
}
.megamenu__list a {
    display: block;
    padding: 8px 12px;
    color: #264B87;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.megamenu__list a:hover {
    background: #f5f5f5;
    color: var(--colorBlue-900);
    padding-left: 16px;
}
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.navbar__hamburger span {
    width: 100%;
    height: 3px;
    background: #264B87;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #EE4B25;
}
.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}
.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #EE4B25;
}
.navbar__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 98;
}
.navbar__overlay.active {
    opacity: 1;
    visibility: visible;
}
.main-content {
    padding-top: 130px;
    transition: padding-top 0.3s ease;
    /* min-height: 2000px; */
}
body.scrolled .main-content {
    padding-top: 70px;
}
.content-box h1 {
    color: #264B87;
    margin-bottom: 20px;
    font-size: 32px;
}
.content-box h2 {
    color: #264B87;
    margin: 30px 0 15px;
    font-size: 24px;
}
.content-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}
.demo-section ul {
    list-style: none;
    padding-left: 0;
}
.demo-section li {
    padding: 8px 0;
    font-size: 15px;
}
@media (max-width: 1100px) {
.navbar__link {
        padding: 10px 12px;
        font-size: 14px;
    }
.navbar__btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}
@media (max-width: 968px) {
.top-bar {
        display: none;
    }
.header {
        top: 0;
    }
.header.scrolled {
        top: 0;
    }
.navbar__container {
        height: 70px;
    }
.header.scrolled .navbar__container {
        height: 65px;
    }
.navbar__logo {
        font-size: 20px;
    }
.header.scrolled .navbar__logo {
        font-size: 18px;
    }
.navbar__hamburger {
        display: flex;
    }
.navbar__menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        overflow-y: auto;
        transition: right 0.4s ease;
        z-index: 998;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    }
.navbar__menu.active {
        right: 0;
    }
.header.scrolled .navbar__menu {
        top: 65px;
        height: calc(100vh - 65px);
    }
.navbar__item {
        border-bottom: 1px solid #e0e0e0;
        width: 100%;
    }
.navbar__link {
        padding: 15px 10px;
        font-size: 16px;
        width: 100%;
    }
.navbar__link:hover {
        background: #f5f5f5;
        color: #264B87;
    }
.navbar__megamenu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        transition: max-height 0.4s ease;
        background: #f8f8f8;
    }
.navbar__megamenu2 {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        transition: max-height 0.4s ease;
        background: #f8f8f8;
    }
.navbar__item--dropdown.active .navbar__megamenu {
        max-height: 600px;
        border-top: 2px solid var(--colorBlue-900);
    }
.navbar__item--dropdown.active .navbar__megamenu2 {
        max-height: 600px;
        border-top: 2px solid #EE4B25;
    }
.navbar__item--dropdown.active .navbar__arrow {
        transform: rotate(180deg);
    }
.megamenu__content {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
.megamenu__title {
        font-size: 15px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }
.megamenu__list a {
        padding: 10px 12px;
        font-size: 15px;
    }
.navbar__btn {
        margin-top: 15px;
        text-align: center;
        display: block;
    }
.main-content {
        padding-top: 70px;
    }
body.scrolled .main-content {
        padding-top: 65px;
    }
.content-box h1 {
        font-size: 26px;
    }
.content-box h2 {
        font-size: 20px;
    }
.header.scrolled .navbar__link {padding: 16px 14px;}
}
@media (max-width: 480px) {
.top-bar__contact {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
.navbar__menu {
        width: 100%;
        max-width: 100%;
    }
.navbar__logo {
        font-size: 18px;
    }
.navbar__logo img {
      width:100%;
      height: auto;
    }
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
.header.scrolled {
    margin-top: 0 !important;
    padding-top: 0;
}
.navbar {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 10px;
}
.header.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #EE4B25, #264B87, #EE4B25);
    animation: slideRight 2s linear infinite;
}
.example-fade {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1920 / 800;
}
.example-fade a {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  animation: bannerFade 25s infinite;
}
.example-fade a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.example-fade a[data-slide="0"] { animation-name: bannerFadeFirst; opacity: 1; }
.example-fade a[data-slide="1"] { animation-delay: 5s; }
.example-fade a[data-slide="2"] { animation-delay: 10s; }
.example-fade a[data-slide="3"] { animation-delay: 15s; }
.example-fade a[data-slide="4"] { animation-delay: 20s; }
.example-fade:hover a {
  animation-play-state: paused;
}
.example-fade.is-manual a {
  animation: none;
  opacity: 0;
}
.example-fade.is-manual a.active {
  opacity: 1;
}
.example-fade__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.example-fade__arrow:hover { background: rgba(0,0,0,0.55); }
.example-fade__arrow--prev { left: 12px; }
.example-fade__arrow--next { right: 12px; }
.example-fade__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.example-fade__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
}
.example-fade__dot.active {
  background: #fff;
}
@media (prefers-reduced-motion: reduce) {
.example-fade a { animation: none; opacity: 0; }
.example-fade a[data-slide="0"] { opacity: 1; }
}
* {margin: 0; padding: 0; box-sizing: border-box;}
:root {
 --colorPpalbtnAzul:#264B87;
 --colorPpalNaranja:#EE4B25;
 }
p {color: #303030; font-size: 16px; line-height: 1.7em; padding: 30px 0px; text-align: justify;}
.naranja {color:var(--colorBlue-500);}
.negro {font-size: 35px;}
header { top: 0; z-index: 1000;}
.franjaSupAzul img {margin: 7px;}
.banner img {width: 100%;}
.containerPpal {

    margin: auto;
    justify-self: center;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
                         "contLos3ServPrinc"
                         "alquilerDePlataformas"
                         "descripTipos"
                         "tiposDePlataformas"
                         "valorAgregado"
                         "queEs"
                         "PYHsocioIPAF"
                         "comoFuncionan"
                         "usoDePlataformas"
                         "ley"
                         "fotosPlataformas"
                         "footer";

  }
.banner {grid-area: banner; position: sticky;}
.fondoAncho100 { background: rgba(23, 63, 140, 0.2); margin: auto; justify-self: center; padding: 10px 0; width: 100%;}
.contLos3ServPrinc {display: grid; grid-template-columns: repeat(3,1fr); grid-gap: 30px; max-width: 1600px; margin: auto; padding: 0 30px; width:91%}
.contLos3ServPrinc__cadaServicioPrinc {background: #ffffff; border-radius: 8px; display: flex; box-shadow:0px 0px 17px 3px rgba(0, 0, 0, 0.2); height: 120px; padding: 12px;}
.contLos3ServPrinc__cadaServicioPrinc img {border-radius: 8px;}
.contLos3ServPrinc__cont-Ti-Tex-Btnser {border-radius: 8px; display: grid; grid-gap: 14px; width: 100%;}
.contLos3ServPrinc__text {font-size: 27px;}
.contLos3ServPrinc h1 {border-right: solid 4px #EE4B25; color: #303030; padding: 0 18px; align-self: center; font-size: 19px;}
.contLos3ServPrinc p {color: #303030; padding: 0 18px; align-self: center;}
.contLos3ServPrinc a {color: #264B87; font-weight: bold; justify-self: right; align-self: center; padding: 0 0px; }
.contLos3ServPrinc__cadaServicioPrinc--azul {background: #264B87;}
.contLos3ServPrinc__cadaServicioPrinc--azul h1 {color:#fff}
.contLos3ServPrinc__cadaServicioPrinc--azul p {color:#fff}
.contLos3ServPrinc__cadaServicioPrinc--azul a {color:#fff; font-weight: bold; justify-self: right; align-self: center; padding: 0 18px;}
.contLos3ServPrinc {display: grid; grid-template-columns: repeat(3,1fr); grid-gap: 30px; max-width: 1600px; margin: auto; padding: 0 60px;}
.contLos3ServPrinc__cadaServicioPrinc:hover {box-shadow:0px 0px 10px 10px rgba(23, 63, 140, 0.3);}
.contLos3ServPrinc a {text-decoration: none;}
.alquilerDePlataformas {grid-area:alquilerDePlataformas; display: grid; grid-template-columns: repeat(2,1fr); grid-gap: 100px; padding: 77px; margin: auto; justify-self: center; padding: 60px; max-width: 1600px; text-align: justify; width: 100%;}
.alquilerDePlataformas img {align-self: center;}
.contTitParr { text-align: justify;}
.tituloH2 h2 {color: #303030; font-size: 30px; text-align: left; width: 70%;}
.subTituloH2 h2 { font-size: 30px; width: 71%; padding-top: 7px; text-align: left;}
.valorAgregado {background: rgba(23, 63, 140, 0.2); display: grid; grid-area:valorAgregado; margin-top: 60px; width: 100%; }
.descripValorAgregado { margin: auto; max-width: 1600px; padding: 60px;}
.descripValorAgregado ul li {color:#303030; font-size: 15.7px; line-height: 1.7em; margin-left: 30px;}
.descripValorAgregado h2 {font-size: 30px;}
.queEs {grid-area:queEs; display: grid; grid-template-areas:"imgQueEs contTitParrQueEs";
   grid-gap: 100px; justify-self: center; max-width: 1600px; padding: 60px; width: 100%;}
.imgQueEs {display: grid; grid-area: imgQueEs; justify-content: center; align-items: center;}
.contTitParrQueEs {display: grid; grid-area: contTitParrQueEs; align-self:center;}
.contTitParrQueEs p {text-align: justify;}
.PYHsocioIPAF {
    grid-area: PYHsocioIPAF;
    background: rgba(23, 63, 140, 0.05);
    border-top: 1px solid rgba(23, 63, 140, 0.12);
    border-bottom: 1px solid rgba(23, 63, 140, 0.12);
    width: 100%;
    margin-bottom: 30px;
}
.PYHsocioIPAF__inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: stretch;
    margin: auto;
    max-width: 1200px;
    padding: 0 60px;
}
.PYHsocioIPAF__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding: 50px 40px 50px 0;
    border-right: 1px solid rgba(23, 63, 140, 0.15);
}
.PYHsocioIPAF__eyebrow {
    color: var(--colorBlue-500);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2.5px;
  
    line-height: 1.6;
}
.PYHsocioIPAF__titulo {
    font-size: 26px;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.PYHsocioIPAF__logoMarca {
    max-width: 145px;
    height: auto;
    display: block;
}
.PYHsocioIPAF__logo img {
    max-width: 175px;
    height: auto;
    /* filter: drop-shadow(0 4px 12px rgba(0,0,0,0.13)); */
    transition: transform 0.3s ease;
}
.PYHsocioIPAF__logo img:hover { transform: scale(1.04); }
.PYHsocioIPAF__beneficios {
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    justify-content: center;
}
.PYHsocioIPAF__item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 16px;
    align-items: start;
    padding: 26px 0;
    border-bottom: 1px solid rgba(23, 63, 140, 0.1);
}
.PYHsocioIPAF__item:last-child { border-bottom: none; }
.PYHsocioIPAF__num {
    font-size: 38px;
    font-weight: 900;
    color: rgba(23, 63, 140, 0.15);
    line-height: 1;
    padding-top: 2px;
    user-select: none;
}
.PYHsocioIPAF__texto h3 {
    font-size: 30px;
    color: #303030;
    margin: 4px 0 6px;
    font-weight: 700;
}
.PYHsocioIPAF__texto p {
    font-size: 16px;
    color: #555;
    line-height: 1.65;
    margin: 0;
    padding: 0;
}
.descripTipos {grid-area:descripTipos; margin: auto; justify-self: center; padding: 60px 60px; max-width: 1600px; width: 100%;}
.tiposManlift {display: flex; align-items: baseline; justify-content: center;}
.tiposManlift ul {padding: 30px; padding-top: 0; width:33%}
.tiposManlift ul li {color:#303030; line-height: 1.7em; margin-left: 24px;}
.tiposDePlataformas {grid-area:tiposDePlataformas; display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(2,1fr); grid-gap: 30px; margin: auto; margin-top: 60px; justify-self: center; padding: 0 30px; max-width: 1600px; width: 100%;}
.tiposDePlataformas a {color: #264B87; text-decoration: none;}
.tipoPlataformaIndex > img {margin: auto; width: 94%;}
.tipoPlataformaIndex h2 {color: #303030; font-size: 18px; margin-top: 14px; padding-bottom: 17px;}
.tipoPlataformaIndex {border: solid 1px #999999; border-radius: 8px; display: grid; border-bottom: solid #264B87 10px; justify-content: center; justify-items: center; padding: 30px; padding-top: 30px; margin: auto; text-align: center; width: 92%;}
.tipoPlataformaIndex a {color: #303030;}
.tipoPlataformaIndex:hover {box-shadow: 0px 0px 10px 10px rgba(23, 63, 140, 0.2);}
.contMarcasIndex {display: flex; padding: 10px 0;justify-content: center;}
.contMarcasIndex img {padding-right: 10px; height: 19px;}
.tipoPlataformaIndex a {background-color:#264B87; border-radius: 8px; color: #ffffff; text-decoration: none; margin-top: 20px; text-align: center; padding: 16px;}
.tipoPlataformaIndex a:hover {background-color:#b1caf3; color: #303030;}
.tipoPlataformaIndex p {padding: 4px 0;}
.comoFuncionan {grid-area:comoFuncionan; display: grid; grid-template-columns: repeat(1,1fr); grid-gap: 0px; padding: 77px; margin: auto; justify-self: center; padding: 60px; padding-top: 10px; max-width: 1600px; width: 100%;}
.comoFuncionan h2 {}
.comoFuncionan p {padding-top:12px; padding-bottom: 12px;}
.usoDePlataformas {background: rgba(23, 63, 140, 0.2);
                  display: grid;
                  grid-template-areas:"imgUsoDePlataformas contTitParrUsos";
                  grid-template-columns: 35% 50%;
                   margin: auto; justify-self: center; width: 100%;}
.imgUsoDePlataformas {grid-area:imgUsoDePlataformas;}
.imgUsoDePlataformas img {width:100%;}
.contTitParrUsos {grid-area:contTitParrUsos; align-self: center; justify-self: center; width: 88%;}
.contTitParrUsos ul {margin-left: 25px;}
.contTitParrUsos ul li {color: #303030; line-height: 1.7em;}
.resolu1 {}
.resolu2 {}
.resolu1 h3 {padding-left: 20px;
  padding-right: 20px;}
.resolu2 h3 {padding-left: 20px;
  padding-right: 20px;}
.ley {grid-area:ley; display: flex; margin: auto; justify-self: center;  max-width: 1600px; margin-top:2%; padding: 0 30px; width: 100%;}
.ley h3 {margin: auto; font-size: 38px; color:#264B87; text-align: center;}
.ley p {text-align: center; font-size: 22px; width: 70%; margin: auto;}
.fotosPlataformas {grid-area: fotosPlataformas; display: grid; grid-template-columns: repeat(4,1fr);  grid-gap: 30px; margin: auto; justify-self: center;  max-width: 1600px; padding: 0 60px; width: 100%;}
.fotosPlataformas img {width: 100%;}
.fondoAncho100--mod2 {padding: 40px;}
.footer {border-top: solid 5px var(--colorGreen-500); display: grid; grid-area:footer; background:#272E3C; padding: 50px; padding-top: 30px;}
.footer .navFooter {background:#272E3C; display:grid; grid-template-columns: repeat(5,1fr); grid-gap: 50px; justify-self: center; max-width: 1600px; margin: auto;}
.footer .navFooter .columnasSitemap {padding: 10px;}
.footer .navFooter .tituloColSitemap {color: #ffffff; font-weight: bold; margin-bottom: 26px;}
.footer .navFooter ul li a {color: #ffffff; line-height: 24px; list-style: none; padding-bottom: 20px; text-decoration: none; }
.footer .navFooter ul li {font-size: 13px; list-style: none; margin-bottom: 14px;}
.footer .navFooter ul li a:hover {color: var(--colorGreen-500);}
.footer p {color: #ffffff; padding: 18px 0; text-align: left; display: flex; align-items: center;}
.footer .datoContacFooter {align-items: center; color: #ffffff; display: flex; font-size: 20px;width: 92%; justify-content: flex-end;}
.datoContacFooter img {padding: 9px;}
.contNomYRedes {border-bottom: solid 1px var(--colorGreen-500); display: flex; justify-content: space-between; background: #ffffff; width: 83%; margin: auto;}
.contNomYRedes > p {color: #264B87; font-weight: bold; font-size: 18px; padding: 16px; }
.contRedes {display: grid; grid-template-columns: repeat(4,1fr); grid-gap: 17px; align-content: center;}
.desarrolladoPor {background: #ffffff; display: flex; justify-content: right; margin: auto; padding: 10px 0; width: 86%;}
.desarrolladoPor p {font-size: 14px; padding: 0px;}
.desarrolladoPor img {padding: 0px 10px;width:90%;}
.desarrolladoPor a {text-decoration: none;}
.desarrolladoPor a:hover {text-decoration: underline;}
section.containerPPAL1 h1 {color: #303030; font-size: 30px; margin: auto; margin-top: 40px; margin-bottom: 2%; text-align: center; width: 100%; width: 40%; }
.ImgIzYmarca img {background: #fff; border-radius: 10px; width: 100%;}
.contDesc h2 {font-size: 32px; margin-top: 18px; text-align: left; width: 83%;}
.contDescLighBox a {background:#264B87; border-radius: 10px; color: #ffffff; display: block; /*margin-top: 5%;*/ padding: 14px; text-decoration: none; width: 100%; text-align: center;}
.contDescLighBox a {text-decoration: none;}
.contDescLighBox a:hover {background:#b1caf3; color: #333; }
.hexagono p {display: flex;justify-content: center; align-self: center;}
.hexagono a {text-decoration: none;}
.hexagono p {align-items: baseline;display: flex;justify-content: center; align-self: center; position: absolute; z-index: 1;}
.contDesc p {margin-bottom: 55px;}
.contBtnM p {color:#264B87; font-weight: bold; padding: 10px; margin: 0; line-height: 0; z-index: 0;}
.contBtnM a {text-decoration: none; outline:none; width: 75%;}
.light-box p {
            width: 100%;
             color: #333333;
          }
.resumen-platafor p {display: flex; justify-content: space-between; text-align: left; padding: 0; margin: auto;}
.light-box > a {background:var(--colorGreen-500); /*width: 40px;*/ font-weight: bold; border-radius: 50%; /*height: 40px;*/ text-align: center; line-height: 40px; text-decoration: navajowhite; color: #fff; outline:none}
.light-box > a:hover {color: black;}
.light-box p:nth-child(odd) {background: rgba(50, 115, 216, 0.1);  }
.RefMaquina h2 {width: 90%; margin: auto; margin-top: 44px; margin-bottom: 21px;}
.TituloDes p {padding: 10px;}
.TituloDes h2 {color: #303030; margin-bottom: 4px; margin-bottom: 12px; margin-top: 30px;}
.TituloDes p {border-radius: 10px; margin: 10px 10px 10px 0px; margin-left: 53px; padding: 7px 11px; text-indent: -3px;}
.card p {color:#303030; padding: 5px; margin: 0; background: aliceblue; padding: 10px; border-radius: 10px; margin: auto; width: 100%; }
.card img {margin-top: 30px; padding: 22px; margin: auto; margin-top: 30px; width: 40%;}
.card p::before {content: url(../imagenes/check.webp); display: inline-flex; background: #b6d6ff; width: 17px; margin-right: 15px; height:17px; border-radius: 50%; padding: 10px;}
.card-PyH-LIFT p {color:#303030; padding: 5px; margin: 0; background: aliceblue; padding: 10px; border-radius: 10px; margin: auto; width: 100%; }
.card-PyH-LIFT img {margin-top: 30px; padding: 22px; margin: auto; margin-top: 30px; width: 40%;}
.card-PyH-LIFT p::before {content: url(../imagenes/check.webp); display: inline-flex; background: #ffffff; width: 17px; margin-right: 15px; height:17px; border-radius: 50%; padding: 10px;}
.BtnCard a {display: block; background:#264B87; border-radius: 10px; color: #ffffff; margin-top: 17px; padding: 17px; text-decoration: none; text-align: center; }
.BtnCard a:hover {background:#b1caf3; color: #333; }
.BtnCardPyH-LIFT a {display: block; background:var(--colorBlue-500); border-radius: 10px; color: #ffffff; margin-top: 17px; padding: 17px; text-decoration: none; text-align: center; }
.BtnCardPyH-LIFT a:hover {background:var(--colorBlue-100); color: #333; }
.TituRefPlaTCard p {background: var(--colorBlue-900); border-radius: 8px 8px 0px 0px; color: #ffffff; font-size: 21px; margin: 0;}
.TituRefPlaTCard p::before {content: url(../imagenes/check.webp); display: inline-flex; background: #ffffff; width: 17px; margin-right: 15px; height:17px; border-radius: 50%; padding: 10px;}
.TituRefPlaTCard-PyH-LIFT p {background:var(--colorBlue-900); border-radius: 8px 8px 0px 0px; color: #ffffff; font-size: 21px; margin: 0;}
.marcaJLG p {color: #303030;}
.marcaAlolift p {color: #303030;}
.marcagenie p {color: #303030;}
.marcaHaulotte p {color: #303030;}
.marcamarcaOilSteel p {color: #303030;}
.anchoPlataformaunipersonal p {color: #303030;}
.anchoPlataformagenie p {color: #303030;}
.anchobrazocamon p {color: #303030;}
.anchobrazoHaulotte p {color: #303030;}
.altoPlataformaunipersonal p {color: #303030;}
.alturaTrabPlatafunipersonal p {color: #303030;}
.alturaTrabBrazocamion p {color: #303030;}
.altoPlataformaBrazocamion p {color: #303030;}
.capaCanastaunipersonal p {color: #303030;}
.alcancehorizontalPlatafbrazocamion p {color: #303030;}
.pesoPlataformaBrazosobrecamion p {color: #303030;}
.marcaHaulotte p {color: #303030;}
.pesoPlataforma p {color: #303030;}
.anchoPlataforma p {color: #303030;}
.anchoPlataformaPyH-LIFT p {color: #303030;}
.capaCanasta p {color: #303030;}
.capaCanasta-PyH-LIFT p {color: #303030;}
.alturaPlataf p {color: #303030;}
.alturaPlataf-PyH-LIFT p {color: #303030;}
.alturaTrabPlataf p {color: #303030;}
.alturaTrabPlataf p {color: #303030;}
.anchoPlataformabrazo p {color: #303030;}
.alturaPlatafbrazo p {color: #303030;}
.alturaTrabPlatafbrazo p {color: #303030;}
.alcancehorizontalPlatafbrazo p {color: #303030;}
.masCaract p {width: 100%;font-size: 17px; padding-left: 11px;}
.fichaTec a {display: block; padding:0; text-decoration: none; width: auto; }
.fichaTec p {display:contents; padding: 0; padding: 0 25px; font-size: 24px; width: 100%;}
.fichaTec a:hover {text-decoration: underline; color: #264B87; }
.tipoPlataformaVideos > img {margin: auto; width: 62%;}
.tipoPlataformaVideos h2 {color: #3c3950; font-size: 18px; margin-top: 14px;}
.tipoPlataformaVideos a {background-color:#264B87; border-radius: 8px; color: #ffffff; text-decoration: none; margin-top: 20px; text-align: center; padding: 16px;}
.tipoPlataformaVideos a:hover {background-color:#b1caf3; color: #303030;}
.tipoPlataformaVideos p {color: #5f727f; padding: 4px 0;}
.tipoPlataformaVideos h2 {color: #5f727f; font-size: 18px; font-weight: bold;margin-top: 14px;}
.tipoPlataformaVideos > img {margin: auto; width: 100%;}
.soporteManliftRepo > img {margin: auto; width: 62%;}
.soporteManliftRepo h2 {color: #3c3950; font-size: 18px; margin-top: 14px;}
.soporteManliftRepo a {background-color:#264B87; border-radius: 8px; color: #ffffff; text-decoration: none; margin-top: 20px; text-align: left; padding: 16px;}
.soporteManliftRepo a:hover {background-color:#b1caf3; color: #303030;}
.soporteManliftRepo p {color: #5f727f; padding: 4px 0; text-align:left;}
.soporteManliftRepo h2 {color: #264B87; font-size: 18px; font-weight: bold;margin-top: 14px;}
.soporteManliftRepo > img {margin: auto; width: 60%; padding: 2em;}
.soporte a {text-decoration: none;}
.soporte a:hover {background-color:#fff;}
.tablaVentaPlataformasNuevasG img {width: 25%;}
.TablaTipoVentaPlataformasNuevas h2 {margin: auto; width: 90%;}
.tablaImgLightbox img {width: 100%;}
.masCaractVenUsados p {width: 100%;font-size: 17px; padding-left: 11px;}
.horometroPlataf p {color: #303030;}
.modelPlataf p {color: #303030;}
.motorPlataf p {color: #303030;}
.precioPlataf p {color: #303030;}
.anoPlataf p {color: #303030;}
.cardVentUsada img { border-radius: 10px; margin: auto; width: 100%;}
.btnMasInfoUsada p {color: #ffffff; padding: 0; text-align: center;}
.banner-content h1 {
            font-size: 56px;
            font-weight: 800;
            color: var(--colorBlue-900);
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
.banner-content h2 {
            font-size: 28px;
            font-weight: 600;
            color: var(--colorGreen-500);
            margin-bottom: 25px;
            line-height: 1.4;
        }
.banner-content p {
            font-size: 18px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 40px;
        }
.feature-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }
.banner-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
.banner-image img:hover {
            transform: scale(1.02);
        }
@media (max-width: 1024px) {
.banner-content h1 {
                font-size: 44px;
            }
.banner-content h2 {
                font-size: 24px;
            }
.banner-content p {
                font-size: 16px;
            }
}
@media (max-width: 768px) {
.banner-content h1 {
                font-size: 36px;
            }
.banner-content h2 {
                font-size: 20px;
            }
.banner-content p {
                font-size: 16px;
                margin-bottom: 30px;
            }
.banner-image img {
                border-radius: 16px;
            }
}
@media (max-width: 480px) {
.banner-content h1 {
                font-size: 28px;
            }
.banner-content h2 {
                font-size: 18px;
            }
.feature-icon svg {
                width: 20px;
                height: 20px;
            }
}
.texIzBannPYH h1 {}
.texIzBannPYH p {color: #ffffff; font-size: 18px;}
.Imag1Bann img {}
.Imag2Bann img {border-radius: 10px; border:solid 6px #ffffff;}
.Imag3Bann img {border-radius: 10px; border:solid 6px #ffffff;  width: 200px;}
.empresaPYH p {padding: 10px 0; color: var(--colorWhite);}
.recuGray-100 h2 {color:var(--colorGreen-500);}
.recuGray-100 p {color:var(--colorText-Gray-900); }
.recuAzul h2 {color: var(--colorWhite);}
.recuAzuldoscol h2 {color: var(--colorWhite);}
.maparecuadrogris img {width: 70%;}
.infoContacto h2 {color: #fff; margin-bottom: 40px;}
.infoContacto p {color: #fff; margin-left: 3%; padding: 17px 0;}
.formulario-contacto input[type='submit'] {color:#FFF; font-weight:bold; background:#2670A6;}
.formulario-contacto label {font-size:19px;margin-top: 1em;color:#264B87;}
.formulario-contacto input {border: 0; font-size: 20px; border-bottom: 2px solid #ddd; width: 100%; margin-bottom:1em; padding:0.8em;}
.formulario-contacto textarea {border: 0; font-size: 20px; border-bottom: 2px solid #ddd; width: 100%; margin-bottom:1em;}
.campos-input {width: 80%;}
.formulario-contacto input[type='submit'] {border-radius: 10px; color:var(--colorGray-900); background-color: var(--colorGreen-500); margin-top:1em; width:50%;}
.formulario-contacto input[type='submit']:hover {border-radius: 10px; color:var(--colorGray-900); background:#b1caf3; font-weight:bold; transition:all 200ms ease-in-out 0s;  }
.formulario-contacto input[type='text'] {height: 10px;}
.formulario-contacto input[type='email'] {height: 10px;}
.graciasPorContactarnos h1 {
  color: #264B87;
  text-align: center;
  font-size: 26px;
  margin: 0 0 12px;
  padding: 0;
}
.vesionParaPC a {cursor: auto;}
.telContacont a {background: var(--colorGreen-500);  border-radius: 10px; color:var(--colorGray-900); text-decoration: none; padding: 14px; cursor: pointer;}
.telContacont a:hover {background: #fff; color: #264B87;}
.terminosycondiciones ol li {margin-bottom: 7px;}
.terminosycondiciones h1 {color: #264B87; text-align: center; padding: 2%;}
.subPremiosWoow p {font-size: 18px; font-weight: bold; padding: 0;}
.contTarjetas a:hover {box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.2); border-radius: 10px;}
.tarjeta p {padding: 3px;}
.tarjeta img {border-radius: 10px; width: 100%;}
.premios p {padding: 0;}
.premio p {align-self: center; color: #ffffff; padding: 0;}
.premio img {margin-right: 10%; width: 21%; padding: 9px;}
.containerPuntos h1 {color: #303030; display: grid; grid-column: 1/-1; margin-top: 40px; text-align: center;}
.containerPuntos h2 {color: #303030;}
.parrafos p {text-align: left ;}
.ContPuntosPor p {text-align: center; padding:0;}
.categorias p {grid-column: 1/-1;}
.subTiAdemas p {font-size: 22px;}
.contRecuAdemas p { font-weight: bold;}
.rucuAdemas img {width:100%;}
.contDescPremio h1 {color: #303030; margin: auto; text-align: center; width: 70%;}
.contDescPremio h2 { font-size: 22px; margin-top: 50px; width: 60%;}
.contBtnMasInfoPremio a {display: inline-block; background:#264B87; border-radius: 10px; color: #ffffff; padding: 14px; text-decoration: none; margin-top: 20px; width: 100%; text-align: center;}
.contBtnMasInfoPremio a:hover {background:#b1caf3; color: #333; }
.contDescPremio p {text-align: left;}
.contDescPremio .light-box > a {background:#EE4B25; color: #fff; width: 40px; font-weight: bold; border-radius: 50%; height: 40px; text-align: center; line-height: 40px; text-decoration: none;}
.infoPremiGanado img {border-radius: 10px; width: 100%;}
.infoPremiGanado p { text-align: left; padding: 0; margin: auto;}
.infoPremiGanado p:nth-of-type(1) {color: #264B87;}
.ConteBotonWhatsapp {text-align: center; color: black; padding: 30px; position: fixed; /*left: 0px;*/ right: 24px; bottom: 100px; height: 50px; text-align: right; z-index: 1; width:371px;}
.btnWhatsapp {}
.boton-modal label {
  padding: 10px 15px;
  background-color: #5488a3;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 300ms ease;
}
.boton-modal label:hover {
  background-color: #185E83;
}
#btn-modal {
  display: none;
}
.container-modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0; left: 0;
  background-color: rgba(144, 148, 150, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
#btn-modal:checked ~ .container-modal {
  display: flex;
}
.content-modal {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  background-color: #fff;
  border-radius: 4px;
}
.content-modal h2 {
  margin-bottom: 15px;
}
.content-modal p {
  padding: 15px 0px;
  /* border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb; */
}
.content-modal .btn-cerrar {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgba(255,255,255,.25);
  transition: background-color .2s ease;
  z-index: 2;
}
.content-modal .btn-cerrar label {
  padding: 0;
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: none;
}
.content-modal .btn-cerrar:hover {
  background-color: rgba(255,255,255,.45);
}
.campos-input { display: inline-block;  padding: 1%;  width: 100%;}
.campos-input select {border: 1px solid #E1E1E1;  border-radius: 0.3em;  box-shadow: 0 1px #fff, 0 1px 4px rgba(0, 0, 0, 0.05) inset;  width: 100%;  max-width: 100%;margin-bottom: 2em; padding: 0.8em;}
@media screen and (max-width:800px) {
.content-modal {
      width: 90%;
  }
}
.ConteBotonWhatsapp {text-align: center; color: black; position: fixed; right: 24px; bottom: 24px; z-index: 999; width: auto; height: auto; padding: 0;}
.btnWhatsapp {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: whatsappPulse 2.5s infinite;
}
.btnWhatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.btnWhatsapp label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.btnWhatsapp label:first-of-type {
  display: none;
}
.btnWhatsapp img {width: 56px; height: 56px; cursor: pointer;}
.contactenosSegunPreferencia {background: #25D366; padding: 18px 20px; position: relative; border-radius: 14px 14px 0 0;}
.contactenosSegunPreferencia::before {content:url(../imagenes/logo-whatsapp.webp); top: 18px; left: 20px; width: 32px; height: 32px; position: absolute; }
.contactenosSegunPreferencia p {width: auto; margin: 0; margin-left: 52px; padding: 2px 0px!important; text-align: left; color: #fff;}
.opcionesContWhatsapp img {padding-right: 17px;}
.personalWhatsapp {padding: 16px 20px 20px;}
.personalWhatsapp a {color: #333; text-decoration: none; text-align: left; width: 100%;}
.opcionesContWhatsapp a {color: #000; text-decoration: none; text-align: left;}
.boton-modal label {
  padding: 10px 15px;
  background-color: #5488a3;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 300ms ease;
}
.boton-modal label:hover {
  background-color: #185E83;
}
#btn-modal {
  display: none;

}
.container-modal {
 width: 100%;

 top: 0; left: 0;
 background-color: rgba(144, 148, 150, 0.8);
 display: none;
 justify-content: center;
 align-items: center;
 z-index: 100;

}
#btn-modal:checked ~ .container-modal {
 display: block;

}
#btn-modal:checked ~ .cotizanosPorWhatsapp {
 display: none;

}
#btn-modal:checked ~ .btnWhatsapp {
 display: none;

}
.content-modal {
 box-shadow: 0 10px 35px rgba(0,0,0,.25);
 display: grid;
 border-radius: 14px;
 padding: 0;
 overflow: hidden;
 width: 100%;
 max-width: 360px;
 max-height: 80vh;
 overflow-y: auto;
 background-color: #fff;
 position: absolute;
 right: 24px;
 bottom: 96px;
 animation: whatsappModalIn .25s ease;
}
.content-modal h2 {
 margin-bottom: 15px;
}
.content-modal p {
 padding: 15px 0px;
}
#contWA1 {display: none;}
#contWA2 {display: none;}
#contWA1 {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  animation: contWA1FadeIn .35s ease-out;
}
#contWA1 .contWA1__icono {
  margin-bottom: 12px;
}
#contWA1 .contWA1__titulo {
  font-size: 18px;
  font-weight: bold;
  color: #25D366;
  margin: 0 0 8px;
}
#contWA1 .contWA1__subtitulo {
  font-size: 14px;
  color: #666;
  margin: 0;
}
#completaLosCampos p {
  font-size: 12px;
  text-align: center;
  margin: 0;
  padding: 0;
}
#formularioContactoWhatApp {display:inline-block; vertical-align:top; width:100%;}
#formularioContactoWhatApp .contenedorCampos {display: block;}
#formularioContactoWhatApp input,
#formularioContactoWhatApp select,
#formularioContactoWhatApp textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  transition: border-color .2s ease, box-shadow .2s ease;
}
#formularioContactoWhatApp input:focus,
#formularioContactoWhatApp select:focus,
#formularioContactoWhatApp textarea:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,.15);
  outline: none;
}
#formularioContactoWhatApp .campo-invalido {
  border-color: crimson;
  box-shadow: 0 0 0 3px rgba(220,20,60,.12);
}
#formularioContactoWhatApp .mensaje-error-campo {
  display: block;
  color: crimson;
  font-size: 12px;
  margin: -8px 0 8px;
}
#formularioContactoWhatApp button[type='button'] {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: .3px;
  color: #fff;
  background: #25D366;
  opacity: 0.5;
  cursor: not-allowed;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  transition: background-color .25s ease, opacity .25s ease;
}
#formularioContactoWhatApp button[type='button'].activoBtnWhatApp {background: #25D366; opacity: 1; cursor: pointer;}
#formularioContactoWhatApp button[type='button'].activoBtnWhatApp:hover {background: #1ebe5d; color: #fff; font-weight:bold; transition:all 250ms ease-in-out 0s; cursor: pointer;}
#formularioContactoWhatApp button[type='button']:disabled:hover {background: #25D366; transform: none;}
.noVisible {
  display:none ;
}
@media (min-width:768px) {
.whatsapp-movil {
    display:none;

  }
.whatsapp-web {
    display:inline;

  }
}
@media (max-width:768px) {
.whatsapp-movil {
    display:inline;
  }
.whatsapp-web {
    display:none;
  }
.soporteManliftRepo > img {width: 90%;}
}
@media(max-width:560px) {
.content-modal {right: auto; width: 300px;}
.contactenosSegunPreferencia {padding:10px}
.contactenosSegunPreferencia p {margin-left: 0; width: 100%;}
.contactenosSegunPreferencia::before {content: none;}
}
.politicasYcondiciones ol li {margin-bottom: 10px;}
.modal {width:100%; height:100vh;
	position: fixed;
	background: rgba(0,0,0,0.8);
	top:0;
	left: 0;
	display: flex;
	z-index: 101;

	animation: modal 2s 1s forwards; /**se demora en aparece 1 segundos y dura 2 seg**/
	/**animation-fill-mode: forwards;cuando termine la animacion se quede y no se desaparezca**/
	visibility: hidden;
	opacity: 0;
}
.contenido {
	margin: auto;
	/* width: 50%; */
	height: 58%;
	color: #fff;
	/*background: white;*/
	border-radius: 10px;
	padding: 3% 1% 1% 1%;
	font-size: 1.2em;
  text-align: center;
}
.modal > .contenido p {
       width: 400px;
       margin: auto;
       padding-bottom: 14px;
       font-size: 18px;
       color:#fff;
       text-align: center;
   }
#cerrar {display:none;}
#cerrar + label {
	position: fixed;
	color: #fff;
	font-size: 25px;
	z-index: 102;
	/*background: #ff5800;*/
	height: 40px;
	width: 40px;
	line-height: 40%;
	border-radius: 50%;
	right: 24%;
	top: 12%;
	cursor: pointer;
  margin-top: 85px;

	animation: modal 2s 1s forwards;
	visibility: hidden;
	opacity: 0;
}
#cerrar:checked + label, #cerrar:checked ~ .modal {
	display: none;
}
:root {
            --primary-color-blue: #264B87  ;
            --primary-color: #303030;
            --white-buttom-text:#fff;
            --secondary-color: #EE4B25;
            --accent-color: #f72585;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
            --border-radius: 12px;
            --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
.filter-btn:hover, .filter-btn.active {
            background: var(--primary-color);
            color: white;
        }
.card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
.blog-card:hover .card-image img {
            transform: scale(1.05);
        }
.page-btn:hover, .page-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
.article__excerpt p {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
}
@media(min-width:1921px) {
.imgUsoDePlataformas img {height: 65vh;}
}
@media(max-width:1700px) {
.usoDePlataformas {grid-template-columns: 40% 60%;}
}
@media(min-width:1600px) {
.contDesc h2 {color: #303030; width: 67%;}
.contLos3ServPrinc__text {font-size:30px;}
.contLos3ServPrinc h1 {font-size:26px;}
}
@media(max-width:1600px) {
.banner-image img {width: 84%;  }
}
@media(min-width:1400px) {
.resolu2 h3 {width:86%;}
}
@media(max-width:1400px) {
.cardVentUsada img {min-height: 492px;}
.Imag2Bann img {}
.Imag3Bann img {width: 73%;}
.infoContacto p {padding: 12px 0;}
}
@media(max-width:1366px) {
.contenido img {width:105%;}
}
@media(max-width:1347px) {
.contLos3ServPrinc {grid-gap:12px}
.contLos3ServPrinc {width: 98%;}
}
@media(max-width:1340px) {
.masCaractVenUsados p {font-size: 14px;}
}
@media(max-width:1304px) {
.IcoYtex p {padding: 0; text-align: left;}
.contLos3ServPrinc__cont-Ti-Tex-Btnser h1 {font-size: 1.7vw;}
.contLos3ServPrinc {padding: 0;}
.masCaract p {padding-left: 12px ;}
.nav-links li a {font-size: 16px;}
}
@media(min-width:1400px) {
nav .wrapper {max-width: 1700px;}
}
@media(max-width:1450px) {
.nav-links li a {font-size: 17px; padding: 9px 15px;}
}
@media(max-width:1400px) {
.usoDePlataformas img {height:84vh;}
.premio img {width: 80px;}
}
@media(max-width:1400px) and (max-height:800px) {
.usoDePlataformas img {height:102vh;}
}
@media(max-width:1320px) {
.contDesc p {margin-bottom: 0;}
}
@media(max-width:1290px) {
.nav-links li a {font-size: 15px; }
}
@media(max-width:1209px) {
.nav-links li a {font-size: 19px;}
}
@media(max-width:1160px) {
.contDesc h2 {width: 90%;}
.maparecuadrogris img {width: 25%;}
}
@media(max-width:1283px) {
.contBtnM a {margin-bottom: 37%;}
}
@media(max-width:1200px) {
.footer .navFooter {grid-gap: 20px;}
.cardVentUsada img {min-height: auto;}
.Imag2Bann img {width: 94%;}
.infoContacto h2 {color: #fff; font-size: 18px;}
.alquilerDePlataformas {grid-template-columns: 1fr; grid-gap: 0;}
.alquilerDePlataformas img {justify-self: center;}
.queEs {grid-gap: 0; grid-template-areas: "contTitParrQueEs"
                               "imgQueEs";}
.usoDePlataformas {grid-template-areas: "imgUsoDePlataformas"
                                         " contTitParrUsos";
                    grid-template-columns: 100%;}
.contTitParrUsos {margin-top: 28px; text-align: justify;}
.usoDePlataformas {padding-bottom: 40px;}
.premios h3 {grid-column: 1/-1; }
}
@media(max-width:1160px) {
.tiposDePlataformas {grid-template-columns: repeat(2,1fr);}
.tiposDePlataformas {grid-template-rows: repeat(3,1fr);}
.tipoPlataformaIndex {align-self:flex-start; width: 91%;}
section.containerPPAL1 h1 {width: 90%;}
}
@media(max-width:1070px) {
.contLos3ServPrinc {grid-template-columns: 1fr; width: 90%;}
.contLos3ServPrinc a {justify-self: left; width: 100%;}
.contLos3ServPrinc__cont-Ti-Tex-Btnser h1 {font-size: 19px;}
.tablaVentaPlataformasNuevasG img {width: 11%;}
.tablaVentaPlataformasNuevasG img {width: 80%;}
}
@media(max-width:1000px) {
.tiposManlift ul {width: 100%;}
.footer .navFooter {grid-template-columns: repeat(3,1fr);}
.light-box img {width: 50%;}
.texIzBannPYH p {color: #ffffff; padding: 20px 0;}
.Imag2Bann img {left: auto; top: auto; width: 91%;}
.Imag3Bann img {left: auto; top: auto; width: 91%;}
.infoContacto p {padding:9px 0;}
.fotosPlataformas {grid-template-columns: repeat(2,1fr);}
.light-box img {width: 64%;}
.contBtnM p {font-size: 15px;}
.tiposManlift {display: block;}
#cerrar + label {right: 0%;}
}
@media(max-width:921px) {
.contenido {width: 54%;}
.modal > .contenido p {
       width: 90%;
       margin: auto;
       padding-bottom: 14px;
   }
}
@media(max-width:850px) {
.tiposDePlataformas {grid-template-columns: repeat(1,1fr); grid-template-rows: repeat(6,1fr);}
.ley {display: block;}
.resolu1 {padding: 5%; padding-bottom: 0%;}
.resolu2 {padding: 5%;}
.footer .datoContacFooter {width: 96%;}
}
@media(max-width:800px) {
.contenido img {width:90%;}
.contenido {width: 66%;}
.footer .datoContacFooter {display: none;}
.alquilerDePlataformas img {width: 100%;}
.imgQueEs img {width: 100%;}
.descripValorAgregado {padding: 40px;}
.usoDePlataformas img {height: auto;}
.fotosPlataformas {padding: 0;}
.alquilerDePlataformas {padding: 40px;}
.queEs {padding: 40px;}
.PYHsocioIPAF__inner { grid-template-columns: 1fr; padding: 0 30px; }
.PYHsocioIPAF__logo { border-right: none; border-bottom: 1px solid rgba(23,63,140,0.15); padding: 40px 0 30px; }
.PYHsocioIPAF__beneficios { padding-left: 0; padding-top: 10px; }
.PYHsocioIPAF__num { font-size: 28px; }
.descripTipos {padding: 40px;}
.comoFuncionan {padding: 40px;}
.IcoYtex p {text-align: left;}
.soporteManliftRepo > img {width: 60%;}
}
@media (min-width:768px) {
.whatsapp-movil {
      display:none;

    }
.whatsapp-web {
      display:inline;
    }
}
@media (max-width:768px) {
.whatsapp-movil {
      display:inline;
    }
.whatsapp-web {
      display:none;
    }
.soporteManliftRepo > img {width: 90%;}
}
@media(max-width:760px) {
section.containerPPAL1 h1 {width: 60%;}
}
@media(max-width:700px) {
.footer .navFooter {grid-template-columns: repeat(2,1fr);}
section.containerPPAL1 h1 {width: 91%;}
.campos-input {margin-bottom: 5%  ; width: 100%;}
.TituloDes p {margin-left: 0;}
header {position: sticky; top: 48px;}
}
@media(max-width:640px) {
.contenido {width: 68%;}
}
@media(max-width:560px) {
.footer .navFooter {grid-template-columns: repeat(1,1fr);}
.desarrolladoPor p {text-align: center;}
.desarrolladoPor img {width: initial;}
.contNomYRedes {display: block;}
.desarrolladoPor {display: block; text-align: center;}
.contNomYRedes > p {text-align: center;}
.contRedes {justify-items: center;}
.tablaVentaPlataformasNuevasG img {width: 70%;}
.IcoYtex p {padding-left:20px;}
.card img {width: 60%;}
.ley p {width: 92%;}
.tiposManlift ul {padding-left: 0; padding-right: 0;}
.content-modal {right: 6px; width: 64%;}
.contactenosSegunPreferencia::before {display: none;}
.contLos3ServPrinc__cont-Ti-Tex-Btnser h1 {font-size: 15px;}
.contLos3ServPrinc__text {font-size: 21px;}
}
@media(max-width:400px) {
.contenido img {width: 100%;}
.contenido {width: 75%;}
.fotosPlataformas {    grid-template-columns: repeat(1,1fr);}
.contLos3ServPrinc a {justify-self: center; width: 80%;}
.contMarcasIndex img {height: 12px;}
.contLos3ServPrinc {width: 100%;}
.TituRefPlaTCard p {font-size: 16px;}
}
.cotiz-wrapper {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 997;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.cotiz-tab {
  background: #89E462;
  color: #4E5258;
  cursor: pointer;
  padding: 14px 10px;
  border-radius: 8px 0 0 8px;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -3px 0 10px rgba(0,0,0,0.2);
  animation: cotiz-sacudida 4s ease-in-out infinite;
  transform-origin: right center;
}
.cotiz-tab span {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  font-family: Arial, Helvetica, sans-serif;
  white-space: normal;
  text-align: center;
  max-width: 70px;
  line-height: 1.3;
}
.cotiz-tab:hover {
  background: #3f809C;
  color: var(--colorGray-100);
}
.cotiz-panel {
  background: #ffffff;
  width: 0;
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 2px 15px rgba(0,0,0,0.18);
  transition: width 0.4s ease, max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
}
.cotiz-wrapper.cotiz-abierto .cotiz-panel {
  width: 170px;
  max-height: 300px;
  padding: 18px 15px 15px;
}
.cotiz-panel__titulo {
  font-size: 13px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  white-space: nowrap;
  background: #00475D;
  width: calc(100% + 30px);
  margin: -18px -15px 12px -15px;
  padding: 10px 15px;
  border-radius: 8px 0 0 0;
}
.cotiz-panel__icono {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.cotiz-panel__btn {
  display: block;
  background: #609839;
  color: #ffffff !important;
  padding: 9px 0;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none !important;
  transition: background 0.3s;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
}
.cotiz-panel__btn:hover {
  background: #00475D;
}
@media(max-width: 768px) {
.cotiz-tab span { font-size: 14px; }
.cotiz-wrapper.cotiz-abierto .cotiz-panel { width: 140px; }
}
@keyframes slideRight {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
@keyframes bannerFade {
0% { opacity: 0; }
4% { opacity: 1; }
20% { opacity: 1; }
24% { opacity: 0; }
100% { opacity: 0; }
}
@keyframes bannerFadeFirst {
0% { opacity: 1; }
20% { opacity: 1; }
24% { opacity: 0; }
96% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes whatsappPulse {
0% {box-shadow: 0 4px 12px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.6);}
70% {box-shadow: 0 4px 12px rgba(0,0,0,.25), 0 0 0 14px rgba(37,211,102,0);}
100% {box-shadow: 0 4px 12px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,0);}
}
@keyframes whatsappModalIn {
from { opacity: 0; transform: translateY(16px) scale(.98); }
to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes contWA1FadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes modal {
100% {

	visibility: visible;
	opacity: 1;
	}
}
@keyframes cotiz-sacudida {
0%, 70%, 100% { transform: rotate(0deg); }
72% { transform: rotate(-6deg); }
74% { transform: rotate(6deg); }
76% { transform: rotate(-5deg); }
78% { transform: rotate(5deg); }
80% { transform: rotate(-3deg); }
82% { transform: rotate(3deg); }
84% { transform: rotate(0deg); }
}
