/* Fuentes optimizadas en una sola importación */
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Poppins:wght@100;300;800&display=swap');

:root {
  --primary: #1F3A5F;
  --secondary: #00e333;
  --accent: #4A90A4;

  --bg-white:#fff;

  --text-white:#fff;
}

/* Reset básico */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}
body{
    visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease;
}

#services{
    scroll-margin-top:100px;
}

body.loaded {
        visibility: visible;
        opacity: 1;
    }

html {
    scroll-behavior: smooth;
}

.off{
    display: none;
}

.error {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}




/* Asegura que todos los elementos respeten el box-sizing */
*, *::before, *::after {
    box-sizing: inherit;
}

.t-left{
    text-align: left;
}

.t-right{
    text-align: right;
}

.d-left{
    justify-content: flex-start!important;
}

.d-right{
    justify-content: flex-end!important;
}

.item-center{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* NAV */
#nav01 {
    background: #ffe99f00;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    
}

#nav01 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333333;
}

#nav01 ul li {
        padding: 10px 20px;
    background: #333;
    color: #fff;
    width: fit-content;
    font-size: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: flex-end;
}

#nav01 ul li a {
   color: #ffffff;
   text-decoration: none;
}

#nav01 ul li i {
    margin: 0 10px;
    cursor: pointer;
}

#nav01 ul li i:hover{
    color: #ffe204;
}

#nav01 ul li a:hover{
    color: #ffe204;
}

#nav01 > div{
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 10px 15px;
        border-bottom: 3px solid var(--secondary);
}

#nav01 > div > div {
    width: 200px;
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

#nav01 > div > div > button {
    width: 100%;
    background: #128c7e;
    color: #ffffff;
    font-size: 20px;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0px 3px 6px -3px #000000e6;
}

#nav01 > div > div > button:hover {
    transition: 0.3s;
    background: #FFF;
    color: #075e54;
}

#nav01 > div > ol{
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

#nav01 > div > ol li{
    padding: 10px;
    font-size: 18px;
    color: #000000;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}

#nav01 > div > ol li:hover{
    color: var(--secondary);
}

#nav01 > div > ol li.active,
.nav-mob li.active {
    color: var(--secondary);
   /* border-bottom: 3px solid var(--secondary);   opcional */
}

/* NAV 02*/
#nav02 {
    background: #ffc2c2;
    position: fixed;
    z-index: 9;
    width: 100%;
    margin: 0;
    padding: 0;
}

#nav02 > ul{
    width: 100%;
    margin: 0;
    padding: 0.5% 5%;
    display: flex;
    justify-content: space-between;
    list-style: none;
    background-color: var(--secondary);
}

#nav02 > ul > li {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;;
}

#nav02 > ul > li > a {
    margin: 0 25px 0 0;
    color: var(--primary);
    text-decoration: none;
}


#nav02 > div{
    width: 100%;
    margin: 0;
    padding: 0.5% 5%;
    display: flex;
    justify-content: space-between;
    list-style: none;
    background-color: var(--bg-white);
}

#nav02 > div > div {
    width: 25%;
    text-align: center;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

#nav02 > div > div > a {
    display: flex;
    color: var(--primary);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    line-height: 20px;
}

#nav02 > div > div > a > span{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background-color: var(--primary);
    color: var(--text-white);
    margin-right: 10px;
    border-radius: 3px;
}

#nav02 > div > div > ol{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: right;
}

#nav02 > div > div > ol > li {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50px;
}

#nav02 > div > div > ol > li:hover{
    background: var(--text-white);
}

#nav02 > div > div > ol > li > a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 20px;
}

#nav02 > div > div > ol > li:hover a {
    color: var(--secondary);
}

#nav02 > ol {
    width: 100%;
    margin: 0;
    padding: 1% 5%;
    list-style: none;
    display: flex;
    justify-content: space-between;
    background: var(--primary);
}

#nav02 > ol > li{
    width: 50%;
}

#nav02 > ol > li > ol{
    height: 100%;
    width: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

#nav02 > ol > li > ol > li {
    width: 20%;
    text-align: center;
        cursor: pointer;
}

#nav02 > ol > li > ol > .sub-menu {
    position: relative;
}

#nav02 > ol > li > ol > .sub-menu > ul {
    position: absolute;
    background: #fff;
    width: 20rem;
    margin: 21px 0 0 0;
    padding: 0;
    list-style: none;
    text-align: left;
    opacity: 0;
    transform: translateY(-50px);
    z-index: -1;
    transition: 0.3s;
}

#nav02 > ol > li > ol > .sub-menu > ul >li{
    padding: 10px;
}

#nav02 > ol > li > ol > .sub-menu > ul >li > a {
    text-decoration: none;
    color: #1f3a5f;
    font-size: 18px;
}

#nav02 > ol > li > ol > .sub-menu > ul >li:hover {
    background-color: #0d2c54;
}

#nav02 > ol > li > ol > .sub-menu > ul >li:hover a{

    color: #fff;
}

.downSubMenu{
    transform: translateY(10px)!important;
    opacity: 1!important;
    transition: 0.3s;
}

#nav02 > ol > li > ol > li > a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 20px;
}

#nav02 > ol > li > ol > li > a:hover{
    color: var(--secondary);
}

#nav02 > ol > li > a{
    width: 225px;
    background: #128c7e;
    color: #ffffff;
    font-size: 20px;
    border: none;
    padding: 10px 40px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0px 3px 6px -3px #000000e6;
    text-decoration: none;
    float: right;
}

#nav02.scrolled{
    border-bottom: 1px solid var(--secondary);
    position: fixed;
}

#nav02.scrolled > div{
    padding: 0.5% 5%;
}

#nav02.scrolled > ul{
    display: none;
}

#nav02.scrolled > ol {
    padding: 0.5% 5%;
}




/**/
/* las imágenes no van a salir del márgen de la pantalla*/
#slider { 
    overflow: hidden; position: relative;     
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
} 

#slider figure img { width: 20%;
    float: left;
    height: 100%; }

#slider figure { 
  position: relative;
  width: 500%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  animation: 30s slidy infinite; /*el movimiento se va a mantener de forma indefinida -infinito-*/
}

#slider div {
    position: absolute;
    width: 100%;
    background: #103463;
    background: linear-gradient(90deg, rgb(0 0 0 / 76%) 30%, rgba(209, 28, 56, 0) 100%);
    height: 100%;
    z-index: 2;
    margin: 0%;
    padding: 0 5%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-start;
}

#slider div h1{
    font-size: 3rem;
    color: #ffff;
    margin: 8px 0px;
}

#slider div p{
        font-size: 18px;
    color: #ffff;
    width: 70%;
    margin: 0 0 16px 0;
}

#slider div ol {
    margin: 1% 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
}

#slider div ol button{
    font-size: 20px;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

#slider div ol button:hover i{
    transform: translateX(5px);
    transition: 0.3s;
}

#slider div ol .cta1{
    background: var(--secondary);
    color: var(--primary);
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 10px;
      font-size: 1.2rem;
}

#slider div ol .cta2 {
    background: #ffffff;
    color: #0B2E13;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;

}

#slider div ol .cta2:hover{
    background: var(--secondary);
    transition: 0.3s;
}

#slider div ol .cta1:hover {
    background: var(--primary);
    color: var(--secondary);
    transition: 0.3s;

}


/*esta parte del código define el movimiento de las imágenes a la izquierda*/
@keyframes slidy {
0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -200%; }
70% { left: -200%; }
75% { left: -300%; }
95% { left: -300%; }
100% { left: -400%; }
}


.carousel {
      background: linear-gradient(336deg, rgb(129 163 96 / 7%) 30% 30%, rgb(255 255 255 / 0%) 100%);
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.carousel-item {
  display: none;
  position: relative;
}

.carousel-item img {
  width: 100%;
  display: block;
}

.carousel-text {
        position: absolute;
    top: 5%;
    left: 10%;
    color: #fff;
    background: #0000008f;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.carousel-text img{
    width: 80px;
}

.carousel-text h3{
    font-size: 20px;
}

.carousel-text ol{
    margin: 0;
    padding: 0;
    list-style: none;
}

.carousel-text ol li{
    margin-bottom: 5px;
    text-align: center;
}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}


/***/

.wm-01{
    background: linear-gradient(336deg, rgb(129 163 96 / 7%) 30% 30%, rgb(255 255 255 / 0%) 100%);
    width: 100%;
    padding: 5% 15px;
}

.wm-01 ul{
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
        align-items: stretch;
}

.wm-01 ul li {
    width: 50%;
    position: relative;
}

.img-bg{
    position: absolute;
    width: 90%;
    height: 100%;
    top: 0%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 25px 25px 0px;
}

.wm-01 ul li img{
    width: 95%;
    border-radius: 0 20px 20px 0;
    position: relative;
}

.req::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 0px;
    width: 15px;
    height: 100%;
    opacity: 0;
    background: var(--secondary);
}

.wm-01 ul li span {
    color: var(--secondary);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.wm-01 ul li h2{
    color: var(--primary);
    font-size: 2em;
    text-transform: uppercase;
    margin: 8px 0;
}

.wm-01 ul li h3{
    font-size: 22px;
    color: var(--primary);
}

.wm-01 ul li p{
    color: var(--primary);
    font-size: 18px;
    margin: 0 0 16px 0;
}

.wm-01 ul li ol{
    width: 100%;
    padding: 0 0 0 15px;
    margin: 15px 0;
    list-style: none;
}

.wm-01 ul li ol li {
    font-size: 16px;
    color: var(--primary);
    width: 70%;
    padding: 0 0 0 8px;
    margin: 0 0 8px 0;
}

.wm-01 ul li ol li i{
    color: var(--secondary);
    margin-left: -35px;
    font-size: 22px;
    margin-right: 5px;
}

.wm-01 ul li button{
    background-color: var(--secondary);
    color: #0B2E13;
    font-size: 20px;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 20px;
    font-weight: bold;
    margin-top: 25px;
}

.wm-01 ul li button:hover{
    transition: 0.3s;
    background-color: #fff;
    color: var(--secondary);
}


.wm-01 > ul > li > div {
    width: 90%;
    padding: 2% 3%;
    border-radius: 5px;
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: bold;
        margin-bottom: 8px;
}



/****/

.wm-02{
    background-color: #33cccc29;
    width: 100%;
    padding: 6% 15px;
}

.wm-02 h2 { 
   background: var(--primary);
    width: 50%;
    padding: 20px;
    color: #fff;
    border-radius: 50px;
    font-size: 28px; 
    margin: 0 25% 3% 25%;
    text-align: center;
}

.wm-02 ul{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.wm-02 ul li {
    width: 300px;
    height: 300px;
    perspective: 1000px; /* Activa profundidad 3D */
    text-align: center;
        background: rgb(15 47 89);
    border-radius: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    margin: 3%;
    border: 8px solid var(--primary);
    position: relative;
    cursor: pointer;
}

.wm-02 ul li img{
    width: 60%;
    border-radius: 0px 0px 50px 50px;
}

.wm-02 ul li span{
    width: 100px;
    height: 100px;
    font-size: 83px;
    font-weight: bold;
    background-color: #ffffff;
    color: #000000;
    position: absolute;
    top: -31px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 4px solid #33cccc;
        z-index: 9;
}

.wm-02 ul li h3{
    font-size: 24px;
    background: #e2e2e2;
    padding: 15px 20px;
    border-radius: 50px;
    color: var(--primary);
    position: absolute;
    bottom: -60px;
    z-index: 9;
}

/* Contenedor interno que gira */
.flip-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-in-out;
}

/* Gira al pasar el mouse */
.wm-02 ul li:hover .flip-inner {
    transform: rotateY(180deg);
}

/* Estilo para ambas caras */
.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 190px;
    border: 8px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    overflow: hidden;
}

/* Frente: se mantiene tu estilo original */
.flip-front {
    background: white;
}

/* Atrás: solo el párrafo */
.flip-back {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}

.flip-back p {
    font-size: 18px;
    line-height: 1.4;
}

/****/

.wm-03{
   background: linear-gradient(336deg, rgb(129 163 96 / 7%) 30% 30%, rgb(255 255 255 / 0%) 100%);
    width: 100%;
    padding: 0% 15px;
    padding-bottom: 6%;
}

.wm-03 h2 {
    background: #33cccc;
    margin: -45px 0 0 0;
    padding: 25px 20px;
    color: #ffffff;
    text-align: center;
    font-size: 32px;
    border-radius: 50px 50px 0px 0px;
}

.wm-03 ul{
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
}

.wm-03 ul li {
    width: 50%;
}

.wm-03 ul li ol{
    background-color: #33cccc;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.wm-03 ul li ol li{
    background-color: #191a1a;
    width: 100%;
    position: relative;
}

.wm-03 ul li ol li span{
   background-color: #bababa;
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0x;
    z-index: 0;
        background-position: center;
    background-size: cover;
}

.wm-03 ul li ol li div{
   background-color: #fffffff5;
    width: 95%;
    /* height: 300px; */
    position: absolute;
    top: 370px;
    z-index: 2;
    margin: 0 2.5%;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 5px 8px -4px #33333347;
}

.wm-03 ul li ol li div h3{
    width: 100%;
    display: flex;
    align-items: center;
    align-content: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 30px;
    font-weight: bold;
    padding: 0 3%;
}

.wm-03 ul li ol li div h3 img {
    margin-right: 15px;
}

.wm-03 ul li ol li div p{
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    padding: 0 3%;
    margin-bottom: 3%;
}

.wm-03 ul li > ul{
    width: 100%;
}

.wm-03 ul li > ul li {
    width: 23%;
    height: 650px;
    background: #103463;
    background: linear-gradient(180deg, #34cccc63 30%, rgb(255 255 255) 100%);
    margin: 0 1%;
    display: flex;
    flex-direction: column-reverse;
    border-radius: 0 0 125px 125px;
    align-items: center;
    padding: 26px;
    cursor: pointer;
    border: 3px solid #ffffff;
        box-shadow: 0px 5px 8px -4px #33333347;
}

.wm-03 ul li > ul li:hover,
.wm-03 ul li > ul li.active {
    border: 3px solid #34cccc;
    transition: 0.3s;
    transform: translatey(-5px);
}

.wm-03 ul li > ul li img{
    width: 100px;
    
}

.wm-03 ul li > ul li h3 {
    transform: rotate(270deg);
    width: 100%;
    margin-bottom: 65%;
    font-size: 50px;
    font-weight: bold;
}

/***/

.wm-04{
    background-color: #333;
    width: 100%;
    padding: 5% 15px;
}

.wm-04 ul{
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
}

.wm-04 ul li {
    width: 50%;
}

.wm-04 ul li img{
    width: 95%;
}

/***/

.wm-05 {
    background: var(--primary);
    width: 100%;
    padding: 5% 15px;
}

.wm-05 ul{
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
        align-items: stretch;
}

.wm-05 ul li {
    width: 50%;
    position: relative;
}

.wm-05 ul li img{
    width: 95%;
    border-radius: 0 20px 20px 0;
    position: relative;
}

.wm-05 ul li span {
    color: var(--secondary);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}


.wm-05 ul li h2{
    color: var(--text-white);
    font-size: 2em;
    text-transform: uppercase;
    margin: 8px 0;
}

.wm-05 ul li p {
    color: var(--text-white);
    font-size: 18px;
        margin: 0px 0 24px 0;
}


.wm-05 ul li a {
  color: #991b1b;
}

.wm-05 ul li form{
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
}

.wm-100{
    width: 100%;
}

.wm-50{
    width: 50%;
}

.wm-25{
    width: 25%;
}

.wm-05 ul li form div {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    margin-bottom: 15px;
    padding: 0 15px 0 0px;
}

.wm-05 ul li form div label {
    color: var(--text-white);
    font-size:18;
    margin-bottom: 10px;
}

.wm-05 ul li form div input, textarea, select{
    border: 2px solid var(--secondary)9c;
    border-radius: 5px;
    padding: 10px;
}

.wm-05 ul li form div button {
    background-color: var(--secondary);
    color: var(--primary);
    font-size: 18px;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.wm-05 ul li form div button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/***/

.wm-06{
    background: linear-gradient(336deg, rgb(129 163 96 / 7%) 30% 30%, rgb(255 255 255 / 0%) 100%);
    width: 100%;
    padding: 5% 40px;
}

.wm-06 h2 {
    width: 100%;
    text-align: center;
    color: var(--primary);
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 4%;
}

.wm-06 ul{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wm-06 ul>li {
    width: 49%;
    position: relative;
    margin-bottom: 2%;
}

.wm-06 ul>li span{
    position: absolute;
    top: 0;
    left: 0;
    background: #0000006e;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 3%;
}

.wm-06 ul>li span h3 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: bold;
}

.wm-06 ul>li span img{
    width: 70px;
}

.wm-06 ul>li span ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wm-06 ul>li span ol li {
    font-size: 18px;
    text-align: center;
}
.wm-06 ul>li img{
    width: 100%;
}

.wm-07 {
    background: linear-gradient(336deg, rgb(129 163 96 / 7%) 30% 30%, rgb(255 255 255 / 0%) 100%);
    width: 100%;
    padding: 5% 15px 3% 15px;
}

.wm-07 h2 {
    width: 100%;
    text-align: center;
    color: #0f2f59;
    font-size: 2em;
    text-transform: uppercase;
    margin-bottom: 2%;
}

.wm-07 p {
    color: var(--primary);
    font-size: 18px;
    text-align: center;
    width: 100%;
    padding: 0 10%;
    margin-bottom: 40px;
}

.wm-07 ol {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.wm-07 ol > li {
    width: 45%;
    position: relative;
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--secondary);
    border-radius: 15px;
    margin-bottom: 5%;
}

.wm-07 ol > li div{
    background-color: var(--text-white);
    width: 100%;
    border-radius: 5px;
}

.wm-07 ol > li div h3{
    text-align: center;
}

.wm-07 ol > li div p{
    text-align: center;
}

.wm-07 ol > li div ul{
    width: 100%;
    list-style: none;
    margin: 0 0 7% 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 20px;
}

.wm-07 ol > li div a{
    color: var(--text-dark);
}

.wm-07 ol > li div a:hover{
    color: var(--accent);
}

.wm-07 img {
    width: 100%;
        border-radius: 5px;
}

.spix-before-after {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  touch-action: none; /* 🔥 evita conflictos */
}

.spix-before-after img {
  width: 100%;
  display: block;
}

/* Imagen AFTER */
.spix-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

/* Slider */
.spix-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #fff;
  cursor: ew-resize;
  z-index: 2;
}

.spix-slider::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #000;
  padding: 6px;
  border-radius: 50%;
  font-size: 12px;
}


.wm-09{
    width: 100%;
    margin: 0;
    padding: 2% 5%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.wm-09 h2{
    color: var(--primary);
    font-size: 1.5rem;
}

.wm-09 a{
    color: var(--primary);
    background-color: var(--bg-white);
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 10px;
    font-size: 1.2rem;
}

.wm-09{
    width: 100%;
    margin: 0;
    padding: 2% 5%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-around;
}



.wm-10{
    width: 100%;
    margin: 0;
    padding: 5% 5%;
    background: var(--primary);
    text-align: center;
}
.wm-10 > span {
    color: var(--secondary);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.wm-10 > h2 {
    color: var(--text-white);
    font-size: 28px;
    text-transform: uppercase;
    margin: 20px 0;
 }

/*==============================
        SWIPER
===============================*/

.services-slider,
.serviciosSwiper{

    position: relative;
    width:100%;
    overflow:hidden;
    margin-top:40px;
    padding:10px 0 60px;

}

.serviciosSwiper .swiper-wrapper{

    align-items:stretch;

}

.serviciosSwiper .swiper-slide{

    display:flex;
    height:auto;
    box-sizing:border-box;

}

.service-card{

    width:100%;
    height:100%;

    background:#fff;

    border-radius:8px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.service-card img{

    display:block;

    width:100%;

    height:340px;

    object-fit:cover;

}

.service-card div{

    padding:20px;

}

.service-card h3{

    margin-bottom:15px;

    color:var(--primary);

    font-size:2rem;

}

.service-card p{

    color:var(--primary);

    font-size:16px;

    text-align:justify;

}

/*==============================
        FLECHAS
===============================*/

.serviciosSwiper .swiper-button-next,
.serviciosSwiper .swiper-button-prev{

    width:55px;
    height:55px;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.serviciosSwiper .swiper-button-next::after,
.serviciosSwiper .swiper-button-prev::after{

    font-size:22px;
    font-weight:bold;

}

.serviciosSwiper .swiper-button-next:hover,
.serviciosSwiper .swiper-button-prev:hover{

    background:var(--secondary);

    color:#fff;

}

/*==============================
        PAGINACIÓN
===============================*/

.serviciosSwiper .swiper-pagination-bullet{

    width:10px;
    height:10px;

}

.serviciosSwiper .swiper-pagination-bullet-active{

    background:var(--secondary);

}

/*==============================
        RESPONSIVE
===============================*/

@media(max-width:767px){

    .service-card img{

        height:240px;

    }

    .service-card h3{

        font-size:1.8rem;

    }

}

@media(max-width:480px){

    .serviciosSwiper{

        padding-bottom:70px;

    }

    .service-card{

        width:100%;

    }

    .service-card img{

        height:220px;

    }

    .service-card h3{

        font-size:1.6rem;

    }

    .service-card p{

        font-size:15px;

    }

    .serviciosSwiper .swiper-button-next,
    .serviciosSwiper .swiper-button-prev{

        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #fff;
        color: var(--primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.15);
        top: 35%;

    }


}

.service-card{
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .35s;
}

.service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

.service-card img{
    width: 100%;
    height: 340px;
}

.service-card div{
    padding: 20px;
}

.service-card h3{
        margin-bottom: 16px;
    color: var(--primary);
    font-size: 1.5rem;
}


/* Flechas */

.serviciosSwiper .swiper-button-next,
.serviciosSwiper .swiper-button-prev{

    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);

}

.serviciosSwiper .swiper-button-next::after,
.serviciosSwiper .swiper-button-prev::after{

    font-size: 22px;
    font-weight: bold;

}

.serviciosSwiper .swiper-button-next:hover,
.serviciosSwiper .swiper-button-prev:hover{

    background: var(--secondary);
    color: #fff;

}

/* Paginación */

.serviciosSwiper .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
}

.serviciosSwiper .swiper-pagination-bullet-active{
    background: var(--secondary);
}

    .wm-11 {
        width: 100%;
        margin: 0;
        padding: 5% 0%;
        background: var(--bg-white);
        text-align: center;
        display: flex;
    }

    .pad-5{ padding: 5%;}

    .wm-11 > div {
        width: 50%;
        position: relative;
        text-align: left;
        padding-left: 5%;
    }

    .wm-11 > div > span {
        color: var(--secondary);
        font-size: 20px;

        text-transform: uppercase;
        font-weight: bold;
        text-align: left;
    }

    .wm-11 > div > h2 {
        color: var(--primary);
        font-size: 2em;
        text-transform: uppercase;
        margin: 8px 0;
    }

    .wm-11 > div > p {
        color: var(--primary);
        font-size: 18px;
        margin: 0 0 16px 0;
    }

    .wm-11 > div > ul{
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .wm-11 > div > ul > li{
        color: var(--primary);
        font-size: 18px;

        margin: 20px 0;
        padding-left: 30px;
    }

    .wm-11 > div > ul > li > i {
        margin-left: -25px;
        font-size: 20px;
        color: #00e333;
    }

    .wm-11 > div > ol {
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 5%;
    }

     .wm-11 > div > ol > li {
         width: 50%;
    }

    .wm-11 > div > button {
        background-color: var(--secondary);
        color: #0B2E13;
        font-size: 20px;

        border: none;
        padding: 15px;
        border-radius: 10px;
        cursor: pointer;
        font-weight: bold;
        margin-top: 3%;
        text-decoration: none;
    }

    .wm-11 > div > div {
        height: 100%;
        width: 100%;
        color: var(--secondary);
        font-size: 20px;

        text-transform: uppercase;
        font-weight: bold;
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
    }

    /****/

   .wm-12{
    width:100%;
    padding:5%;
    text-align:center;
    background:#fff;
}

.wm-12 span{
    color:var(--secondary);
    font-size:20px;
    text-transform:uppercase;
    font-weight:bold;
}

.wm-12 h2{
    color:var(--primary);
    margin:20px 0 40px;
    text-transform:uppercase;
}

.sectoresSwiper{
    width:100%;
    padding:15px 5px 60px;
}

.swiper-slide{
    height:auto;
}

.card-sector{

    background:#fff;
    border-radius:10px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    transition:.3s;
    border:1px solid #eee;

}

.card-sector:hover{

    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.card-sector img{

    width:120px;
    margin:auto;
    display:block;

}

.card-sector h3{
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 2rem;
}

.card-sector p{
    color: var(--primary);
    font-size: 18px;
    margin: 20px 0;
}

.swiper-button-next,
.swiper-button-prev{

    color:var(--primary);

}

.swiper-pagination-bullet-active{

    background:var(--secondary);

}


    /***/

    .wm-13 {
        width: 100%;
        margin: 0;
        padding: 5% 5%;
        background: var(--primary);
        text-align: center;
    }

    .wm-13 > ol {
        width: 100%;
        display: flex;
        margin: -10% 0 5% 0;
        padding: 2%;
        list-style: none;
        background: var(--bg-white);
        border-top: 3px solid var(--secondary);
        border-radius: 3px;
    }

    .wm-13 > ol > li {
        width: 25%;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .wm-13 > ol > li > img {
        width: 50px;
    }

    .wm-13 > ol > li > div {
        display: flex;
        flex-direction: column;
    }

    .wm-13 > ol > li > div >  h3{
        margin: 0;
    }

    .wm-13 > ol > li > div > h2 {
        color: var(--primary);
        font-size: 28px;

        text-transform: uppercase;
    }

    .wm-13 > ol > li > div > p {
        color: var(--primary);
        font-size: 20px;

        margin: 0;  
    }

    .wm-13 >  span {
        color: var(--secondary);
        font-size: 20px;

        text-transform: uppercase;
        font-weight: bold;
        text-align: left;
    }

    .wm-13 > h2 {
        color: var(--text-white);
        font-size: 28px;

        text-transform: uppercase;
        margin: 20px 0;
    }

    .wm-13 >  p {
        color: var(--text-white);
        font-size: 20px;

    }



/*****/

.spix-blog-index {
  padding: 5% 5% 5% 5%;
  background: var(--bg-white);
}

.spix-blog-index h2 {
    width: 100%;
    text-align: center;
    color: #0f2f59;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 5%;
}

.spix-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.spix-post {
  background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    border-bottom: 2px solid var(--secondary);
}

.spix-post:hover {
  transform: translateY(-10px);
}

.spix-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.spix-post-content {
  padding: 20px;
}

.spix-post-content h3{
     margin: 16px 0 8px 0;
    font-weight: 600;
}
.spix-post-content p {
    color: var(--primary);
    font-size: 18px;
    margin: 0 0 16px 0;
}
.spix-tag {
  background: var(--secondary);
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  
}

.spix-btn {
  display: inline-block;
  margin-top: 10px;
  color: white;
  background: #0d2c54;
  padding: 10px 15px;
  border-radius: 5px;
}

/****/

.spix-blog-page {
    margin: 5%;
}

.spix-blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.spix-post-lg{
    margin-bottom: 3%;
    border-bottom: 2px solid var(--secondary);
    padding: 2%;
    background: #0d2c540f;
    border-radius: 10px;
}

.spix-post-lg img {
  width: 100%;
  border-radius: 10px;
}

.spix-blog-sidebar {
  background: #0d2c54;
  color: white;
  padding: 20px;
  border-radius: 10px;
}
/****/

.spix-blog-detail {
  padding: 60px 10%;
  background: #fff;
}

.spix-article h1 {
  font-size: 40px;
  color: #0d2c54;
}

.spix-article img {
  width: 100%;
  margin: 20px 0;
  border-radius: 10px;
}

.spix-article p {
  line-height: 1.8;
  margin-bottom: 20px;
}

blockquote {
  border-left: 5px solid orange;
  padding-left: 15px;
  color: #555;
}

/**/

.footer{
    width: 100%;
    margin: 0;
    padding: 2% 15px;
    background: #13253e;
}

.footer ul{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.footer ul h3 {
    color: var(--text-white);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer ul ol{
    width: 100%;
    color: #f9fbf7b0;
    list-style: none;
        margin: 0;
    padding: 0;

}

.footer ul ol li {
    margin-bottom: 15px;
    cursor: pointer;
    width: 85%;
    padding-left: 20px;
}

.footer ul ol li:hover {
    color: #fff;
    transition: 0.3s;
}


.footer ul ol li i{
    margin-left: -25px;
}

.footer p {
        color: #fafcf982;
    font-size: 14px;
    text-align: center;
    width: 60%;
    margin: 0 20%;
}

.trig-desk{
    display: initial
}

.trig-desk-slider{
    display: initial
}

.trig-mob{
        display: none!important;
    }

.trig-mob-slider{
        display: none!important;
    }

.nav-mob {
    width: 100%;
    margin: 0;
    padding: 10px 15px;
    list-style: none;
    background: #52616d;
    border-bottom: 2px solid #ffffff85;
    position: fixed;
    top: -25%;
    transition: 0.3s;
    z-index: -1;
}

.nav-mob.active {
    top: 108px;
    transition: 0.3s;
}

.nav-mob li{
    font-size: 20px;
    color: #ffff;
    text-transform: uppercase;
    margin: 15px 0;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}


.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    width: 80%;
    height: 80%;
    background: white;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.popup-content iframe {
    width: 100%;
    height: 100%;
}

.close {
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 30px;
    color: black;
    cursor: pointer;
    z-index: 10000;
}

/*****/
#loginForm h2 {
  text-align: center;
  margin-bottom: 20px;
}

#loginForm .form-group {
  margin-bottom: 15px;
}

#loginForm label {
  display: block;
  margin-bottom: 5px;
}

#loginForm input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
}

#loginForm .checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

#loginForm button {
  width: 100%;
  padding: 12px;
  background: #22c55e;
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

#loginForm button:hover {
  background: #16a34a;
}

#loginForm .error {
  color: #f87171;
  font-size: 12px;
  margin-top: 4px;
}


.btn-dektop{
    display: none!important;
    width: 225px;
    background: #128c7e;
    color: #ffffff!important;
    font-size: 20px;
    border: none;
    padding: 10px 40px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0px 3px 6px -3px #000000e6;
    text-decoration: none;
    float: right;
}


#btn-go-up{
    position: fixed;
    z-index: 9;
    bottom: 2%;
    right: 2%;
    background-color: #00e333;
    color: #FFF;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-decoration: none;
    
}

#btn-go-up p {
    position: absolute;
    height: 75px;
    padding: 0;
    width: 250px;
    right: 0%;
    bottom: 115%;
    background: #ffffff;
    border-radius: 10px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    box-shadow: 0px 0px 6px -1px #333;
}

#btn-go-up a{
    text-decoration: none;
    color: #fff;
    font-size: 1.8rem;
}


#btn-go-up:hover{
    color: var(--text-white);
}

.active > a{
    color: var(--secondary)!important;
    font-weight: bold;
}


.flotar {
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  will-change: transform;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}


 .off-mob-desk, #openMenuMob{
    display: none!important;
}

 #openMenuMob{
    display: none;
}


    #contentMenuMob.active{
        display: initial!important;
        transition: .35s ease;
    }


        #contentMenuMob{

        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 90%;
        height: 100vh;

        background: #fff;

        list-style: none;
        margin: 0;
        padding: 90px 0 30px;

        display: flex;
        flex-direction: column;

        transition: .35s ease;

        box-shadow: -10px 0 30px rgba(0,0,0,.15);

        z-index: 1000;

        overflow-y: auto;

    }

    #contentMenuMob.active{
        transition: .35s ease;
        right: 0;

    }

    #contentMenuMob li{

        width: 100%;

    }

    #contentMenuMob li a{

        display: block;

        padding: 18px 30px;

        color: #333;

        font-size: 17px;

        text-decoration: none;

        transition: .3s;

    }

    #contentMenuMob li a:hover{

        background: var(--primary);

        color: #fff;

        padding-left: 40px;

    }

    /* Submenú */

    #subMenu{

        display: none;

        background: #f7f7f7;

        padding: 0;

    }

    #subMenu li a{

        font-size: 15px;

        padding: 15px 45px;

        color: #666;

    }

@media (max-width:870px) {
    .trig-desk{
        display: none!important; /* o flex, según tu diseño */
    }
    .trig-mob{
        display: initial!important;
    }

    #nav01 > div > div {
        width: 150px;
    }

    #nav02 > ol > li > ol > li > a {
        font-size: 14px;
    }

    .wm-10 > ol {
        flex-wrap: wrap;
        
    }

    .wm-10 > ol > li {
        width: 45%;
        margin-bottom: 5%;
    }

    .slider-track li {
        width: 48%;
    }

    .wm-09 {
        flex-direction: column;
            padding: 5% 5%;
    }

    #slider div h1 {
                font-size: 4em;
    }

    #slider div p {
        font-size: 18px;
    }

    #slider div ol button{
        font-size: 18px;
    }

    .wm-01 {
        padding: 5% 30px;
    }

    .wm-01 ul li {
        width: 100%;
    }

    .wm-01 ul li h2 {
        font-size: 2.5em;
        padding-right: 5%;
    }


    .wm-01 ul li h3 {
        font-size: 20px;
    }

    .wm-01 ul li p {
        font-size: 18px;
    }

    .wm-01 ul li ol li {
        font-size: 18px;
        width: 100%;
        margin: 0 0 15px 0;
    }

    .wm-01 ul li button{
        font-size: 18px;
    }

    .wm-01 ul li ol li {
        font-size: 16px;
        width: 100%;
        margin: 0 0 15px 0;
    }

    .wm-01 ul li button {
        font-size: 2em;
        line-height: 24px;
    }

    .wm-02 h2 {
        width: 75%;
        font-size: 24px;
        margin: 0 0% 5% 12.5%;
    }

    .wm-02 ul li {
        margin: 3% 3% 10% 3%;
    }

    .wm-02 ul li span {
        font-size: 38px;
        width: 60px;
        height: 60px;
    }

    .wm-02 ul li h3 {
        font-size: 20px;
    }

    .wm-03 h2 {
        font-size: 24px;
    }
    .wm-03 ul li ol li div h3 {
        font-size: 20px;
    }

    .wm-03 ul li ol li div h3 img {
        width: 80px;
    }

    .wm-03 ul li ol li div p {
        font-weight: normal;
        font-size: 18px;
        padding: 0% 5%;
        margin-bottom: 5%;
    }

    .wm-03 ul li > ul li {
        width: 48%;
        height: 300px;
        margin-bottom: 20px;
    }

    .wm-03 ul li > ul li h3 {
        display: none;
    }

    .wm-05 {
        padding: 10% 30px 5% 30px;
    }

    .wm-05 ul li {
        width: 100%;
    }

    .wm-05 ul li h2 {
        font-size: 24px;
    }

    .wm-05 ul li p {
        font-size: 18px;
    }

    .wm-05 ul li form div label {
        font-size: 18px;
    }

    .wm-05 ul li form div button {
        font-size: 18px;
    }

    .wm-06 ul>li {
        width: 100%;
    }

    .wm-25 {
        width: 50%;
    }
    .spix-blog-container{
    grid-template-columns: 2fr;
    }

    .footer ul {
        flex-wrap: wrap;
    }
}

@media (max-width:600px) {

     #openMenuMob{
    display: none!important;
}

    .d-left {
        justify-content: space-between!important;
    }

    .btn-dektop{
        display: initial!important;
        width: 180px;
        font-size: 15px;
    }

    #btn-go-up p {
        height: 40px;
        width: 184px;
        font-size: 16px;
    }

    .wm-01 ul li h2 {
        font-size: 1.5em;
    }

    .wm-01 ul li ol li {
        font-size: 16px;
        margin: 0 0 8px 0;
    }

    .wm-01 ul li button
    {
        font-size: 1em;
    }

    .wm-10 > h2 {
        font-size: 1.5em;
        margin: 24px 0;
    }

    #nav02 > div > div {
        width: 100%;
        justify-content: space-between;
    }

    .trig-mob-slider{
        display: initial!important;
    }
    .trig-desk-slider{
        display: none!important; /* o flex, según tu diseño */
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
        object-fit: cover;
    }

    .wm-50 {
        width: 100%;
    }

    .wm-25 {
        width: 100%;
    }

    .wm-09 a {
        font-size: 1rem;
    }

    .wm-02 h2 {
        width: 100%;
        font-size: 24px;
        margin: 0 0% 15% 0%;
    }

    .wm-02 ul li {
        width: 250px;
        height: 250px;
        margin: 3% 3% 20% 3%;
    }

    .wm-03 {
        padding: 10% 15px;
    }

    .wm-03 ul {
        flex-direction: column-reverse;
    }

    .wm-03 ul li {
        width: 100%;
    }

    .wm-03 ul li ol li {
        height: 655px;
        border-radius: 0 0 20px 20px;
    }

     .wm-03 ul li ul {
        flex-direction: row;
    }

    .wm-03 ul li > ul li {
        width: 23%;
        height: 130px;
        margin-bottom: 20px;
    }

    .wm-03 ul li > ul li img {
        width: 55px;
    }

    .slider-track li {
        width: 90%;
    }

    .footer {
        padding: 10% 15px;
    }

    .off-mob{
        display: none!important;
    }

     .on-mob{
        display: initial!important;
    }

    #nav02 > div {
        justify-content: center;
    }

    #nav02 > ol {
        justify-content: center;
        display: none;
    }

    .wm-10 > ol > li {
        width: 95%;
    }

    .wm-11 {
        flex-direction: column;
    }

    .wm-11 > div {
        width: 100%;
        padding: 5%;
        text-align: center;
    }

    .wm-11 > div > h2 {
        text-align: center;
        font-size: 1.5em;
    }

    .wm-09 h2 {
        text-align: center;
        font-size: 1.5em;
    }

    .card-sector h3 {
        font-size: 1.5em;
    }
    
    .card-sector h3 {
        font-size: 1.5em;
    }

    .wm-07 h2
    {
        font-size: 1.5em;
    }

    .spix-blog-index h2 {
        font-size: 1.5em;
        margin-bottom: 24px;
    }


    .wm-09 {
        flex-direction: column;
        padding: 5% 5% 10% 5%;
    }

    .wm-12 > ol > li {
        width: 50%;
    }

    .wm-13 > ol {
        flex-wrap: wrap;
        width: 80%;
        margin: 10% 0 5% 10%;
    }

    .wm-13 > ol > li {
        width: 100%;
        margin-bottom: 5%;
        flex-direction: column;
        padding: 16px;
    
    }

    .wm-07 ol > li {
        width: 80%;
        margin-bottom: 10%;
    }

    .logos-carousel ol li {
        width: 70%!important;
        margin-bottom: 5%;
    }

    .logo img {
        width: clamp(200px, 10vw, 140px)!important;
    }

        .wm-09 div{
        margin-bottom: 5%;
    }

    #nav02 > div > div > a {
        width: fit-content;
        padding: 8px 16px;
        font-size: 18px;
        font-weight: 500;
    }

     #nav02 > div > div > i{
    background: #00e430;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: #fff;
    font-size: 1.3em;
}
    
    #nav02 > div > div > a > img{
        width: 100%!important;
        padding: 0px;
    }





/* Mostrar sólo en móvil */

    #openMenuMob{
        display: flex!important;
    }


    /***/
    #slider div h1 {
        font-size: 2em;
    }
    
    #slider div p {
        width: 90%;
    }
    /***/

    .service-card h3
    {
        margin-bottom: 16px;
        color: var(--primary);
        font-size: 1.5rem;
    }

    .wm-11 > div > p {
        font-size: 18px;
    }

    .wm-01 > ul > li > div {
        width: 90%;
        padding: 16px;
        background-color: var(--secondary);
        font-size: 16px;
    }

    .spix-post-content h3
    {
        margin: 16px 0 8px 0;
        font-size: 1.5em;
    }
    
     .spix-post-content p
    {
        margin: 15px 0 5px 0;
        font-size: 18px;
    }

}