/* 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:#24356b ;
    --secondary: #1a6cb5;
    --accent:#e73140;

    --whatsapp: #25D366;

    --text-black: #333;
    --text-white: #fff;
    --text-white-op5: #ffffffc9;

    --background-color: #333;
    --backbroud-white: #fff;
}

.trig-desk{
    display: initial
}

.trig-desk-slider{
    display: initial
}

.trig-mob{
        display: none!important;
    }

.trig-mob-slider{
        display: none!important;
    }


.bg-primary{
 background: var(--primary)!important;
}

.bg-second{
    background: var(--secondary)!important;
}

.bg-accent{
    background: var(--accent)!important;
}

.txt-primary{
 color: var(--primary)!important;
}

.txt-second{
    color: var(--secondary)!important;
}

.txt-accent{
    color: var(--accent)!important;
}

/* Reset básico */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

.off{
    display: none;
}

.error {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}


.p-enter {
    padding: 5% 0 5% 0;
}

/* Asegura que todos los elementos respeten el box-sizing */
*, *::before, *::after {
    box-sizing: inherit;
}

.t-left{
    text-align: left;
}

.t-right{
    text-align: right;
    justify-content: flex-end!important;
}

.item-center{
    display: flex;
    align-items: center;
    justify-content: center;
}


/**/

#nav02 {
    background: var(--backbroud-white);
        position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
        border-bottom: 1px solid #4667b073;
    box-shadow: 0px 2px 17px 0px #33333340;
}

#nav02.scrolled{
    border-bottom: 2px solid var(--accent);
    position: fixed;
}

#nav02.scrolled > div{
    padding: 0.5% 5%;
}


#nav02.scrolled > ul{
    display: none;
}

#nav02 > ul {
    margin: 0;
    padding: 0.5% 5%;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav02 > ul > li {
    padding: 10px 20px;
    color: var(--text-black);
    width: fit-content;
    font-size: 18px;
    display: flex;
    letter-spacing: 0.5px;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
}

#nav02 > ul > li > a {
    color: var(--text-black);
    text-decoration: none;
    margin-right: 10px;
    cursor: pointer;
}

#nav02 > ul > li > a > span {
    border-radius: 50px;
    color: var(--text-white);
    background: var(--primary);
    font-size: 12px;
    padding: 3px;
}

#nav02 > ol {
    width: 90%;
    margin: 0 5%;
    padding: 1% 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #24356b38;
    flex-wrap: wrap;
}

#nav02 > ol > li > a {
    text-decoration: none;
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
}

#nav02 > ol > li > a > span{
    color: var(--primary);
    background: var(--backbroud-white);
    border: 1px solid var(--primary);
    padding: 10px;
    border-radius: 50px;
    margin-right: 15px;
}

#nav02 > ol > li > a:hover{
    color: var(--secondary) ;
}

#nav02  span:hover{
    color: var(--secondary) ;
}

#nav02 div ol{
    width: 100%;
    margin: 0;
    padding: 0.5% 5% 1% 5%;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    letter-spacing: 0.6px;
    font-size: 1.1rem;
    color: #1a6cb5;
}

#nav02 div ol > li{
    position:relative;
    cursor:pointer;
}

#nav02 div ol > li a{
    text-decoration: none;
    color: #1a6cb5;
}

#dropdown{
    position:absolute;
    top:130%;
    left:0;
    width: 330px !important;
    background:#fff;
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:12px;
    list-style:none;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.35s;
    z-index:1000;

}

#dropdown li{
    width:100%;
    padding:12px;
    border-radius:8px;
    transition:.25s;
}

#dropdown li:hover{
    background:#f3f5fa;
    color:#0057B8;
}

#dropdown.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/***/

#barsMobile{
    display:none;
    font-size:30px;
    cursor:pointer;
}

@media(max-width:991px){

    #barsMobile{
        display:block;
        z-index:1002;
    }

    #menuPrincipal{
        position:fixed;
        top:0;
        right:-100%;
        width:300px;
        background:#fff;
        display:flex;
        flex-direction:column;
        justify-content:flex-start;
        gap:0;
        padding:90px 25px;
        transition:.35s;
        box-shadow:-10px 0 30px rgba(0,0,0,.15);
        z-index:1001;
    }

    #menuPrincipal.active{
        right:0;
    }

    #menuPrincipal li{
        width:100%;
        padding:18px 0;
        border-bottom:1px solid #ececec;
    }

    #overlayMenu{

        position:fixed;

        inset:0;

        background:rgba(0,0,0,.45);

        opacity:0;

        visibility:hidden;

        transition:.35s;

        z-index:1000;

    }

    #overlayMenu.active{

        opacity:1;
        visibility:visible;

    }

}


.search-nav form{

    width:500px;
    height:50px;

    display:flex;
    align-items:center;

    background:#fff;

    border-radius:50px;

    border:2px solid #ddd;

    padding:0 18px;

    transition:.3s;

}

.search-nav form i{

    color:#1d56c4;
    font-size:18px;
    margin-right:12px;

}

.search-nav input{

    flex:1;

    border:none;
    outline:none;

    font-size:15px;

    background:none;

}

/* NAV */
.nav03{
    width: 100%;
    margin: 0;
    padding: 1% 2%;
    display: flex;
}
 
.nav03 li{
    text-align: center;
}

.nav03 > ol {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0%;
}

.nav03 > ol > li > .logo-1{
    width: 150px;
}

.nav03 > ol > li > .logo-2{
     width: 300px;
}

.nav03 > ul {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0%;
}

.nav03 > ul .btntel{
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    width: 250px;
    height: 60px;
    background-color: #ff203a;
    padding: 16px 20px;
    color: #fff;
    border-radius: 300px;
    border: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    justify-content: center;
}

.nav03 > ul .btnwha{
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 25px;
    font-weight: 600;
    width: 60px;
    height: 60px;
    background-color: #46c254;
    padding: 16px 20px;
    color: #fff;
    border-radius: 300px;
    border: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    justify-content: center;
    margin: 0 15px;
}

.nav03 > ul .btncen{
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    width: 230px;
    height: 60px;
    background-color: #1f51ba;
    padding: 16px 20px;
    color: #fff;
    border-radius: 300px;
    border: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    justify-content: center;
}

.nav03 > ul .btncen i{
    font-size: 20px;
    margin-right: 10px;
}

.nav03 > ul .btntel i{
    font-size: 20px;
    margin-right: 10px;
}

.navban{
   width: 100%;
    margin: 0;
    padding: 0% 0%;
    display: flex;
    background-color: #eeeeee;
    align-items: center;
    position: relative;
}

.navban::before {
    content: '';
    width: 10%;
    height: 100%;
    background: #eeeeee;
    z-index: 1;
    transform: skew(-45deg, 0deg);
    left: 46%;
    position: absolute;
}

.navban div{
    width: 50%;
    margin: 0;
    padding: 0%;
    position: relative;
}

.navban div ol{
       width: 100%;
    list-style: none;
    margin: 0;
    padding: 1% 0% 1% 5%;
    display: flex;
    align-items: center;
    position: relative;
}

.navban div ol li img{
    width: 130px;
    margin-right: 1.3rem;
}

.navban div ol li h1{
    font-size: 1.65em;
    font-weight: 700;
    color: #092655;
    width: 80%;
    margin: 0;
}

.navban div ol li h1 span{
    color: #eb0404;
}

.navban div ul{
  width: 100%;
    list-style: none;
    margin: 0;
    padding: 1% 5% 1% 0%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: url(https://bateriaslthmexico.com/assets/images/fondo/fondo-top.webp) center / cover no-repeat #eee;
    position: relative;
}


.navban div ul li{
   width: 15%;
   text-align: center;
}
.navban div ul li img{
   width: 90%;
}

/* 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; 
    margin-top: 5%;
} 

#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: linear-gradient(90deg, #141d3cd6 30%, #141d3c00 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 > span{
    font-size: 22px;
    color: var(--text-white);
    letter-spacing: 1px;
}

#slider > div > h1{
    font-size: 40px;
    color: #ffff;
    letter-spacing: 1px;
    font-weight: bold;
    margin: 15px 0 15px 0;
}

#slider > div > h1 > span{
    color: var(--secondary);
}

#slider > div > p{
    font-size: 20px;
    color: #ffff;
    letter-spacing: 1px;
    margin: 0px 0 20px 0;
    text-align: left;
}

#slider > div > a{
    padding: 20px 25px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--text-white);
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid var(--secondary);
}

#slider > div > a:hover{
    background-color: var(--primary);
    border: 1px solid var(--accent);
}

#slider > div > a > i{
    margin-left: 15px;
}

#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;
    letter-spacing: 1px;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#slider div ol button:hover i{
    transform: translateX(5px);
    transition: 0.3s;
}

#slider div ol .cta1{
    background: #81a360;
    color: #0B2E13;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 10px;
  letter-spacing: 1px;
}

#slider div ol .cta2 {
    background: #ffffff;
    color: #0B2E13;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 1px;

}

#slider div ol .cta2:hover{
    background: #81a360;
    transition: 0.3s;
}

#slider div ol .cta1:hover {
    background: #ffffff;
    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%; }
}

.wm-bathyun-00{
    width: 100%;
    padding: 5%;
    background: #f5f5fa;
}

.wm-bathyun-00 h3 {
    font-size: 2.5em;
    color: #1f50b9;
    text-align: center;
    margin: 0 0 6% 0;
}

.wm-bathyun-00 ol {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.wm-bathyun-00 ol li{
    width: 16%;
    text-align: center;
}

.wm-bathyun-00 ol li h4{
    margin: 0;
    padding: 0;
    text-align: center;
}

.wm-bathyun-00 ol li img{
    width: 90%;
}

.wm-bathyun-01{
    width: 100%;
    margin-top: 0%;
}

.wm-bathyun-01 ul{
    width: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #1f51ba;
}

.wm-bathyun-01 ul li{
    width: 50%;
        position: relative;
}

.wm-bathyun-01 ul li h2{
    color: #fff;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    width: 90%;
}

.wm-bathyun-01 ul li h3{
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    width: 90%;
}

.wm-bathyun-01 ul li p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-block: 30px; 
 }

 .wm-bathyun-01 ul li ol{
          width: 100%;
    margin: 0 0 32px 0;
    padding: 0;
    list-style: none;
 }

  .wm-bathyun-01 ul li ol li {
    margin-bottom: 15px;
    margin-left: 6%;
    width: 90%;
    position: relative;
    color: #fff;
  }

  .wm-bathyun-01 ul li ol li::before {
        content: "";
    position: absolute;
    background-color: var(--backbroud-white);
    width: 10px;
    height: 10px;
    border-radius: 50px;
    left: -4%;
    top: 4px;
  }

 .wm-bathyun-01 ul li .btntel {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    width: 250px;
    height: 60px;
    background-color: #ff203a;
    padding: 16px 20px;
    color: #fff;
    border-radius: 300px;
    border: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    justify-content: center;
}

.wm-bathyun-01 ul .padleft {
    padding: 5% ;
}

.wm-bathyun-02{
    width: 100%;
    padding: 5%;
    background-color: #092655;
}

.wm-bathyun-02 h2{
    font-size: 2.5em;
    margin: 0% 0;
    color: #fff;
    position: relative;
    text-align: center;
}

.wm-bathyun-03 {
    width: 100%;
    padding: 0% 5% 0% 5%;
}

.wm-bathyun-03-v2 {
    width: 100%;
    padding: 5%;
}

.wm-bathyun-03-v2 h2{
        font-size: 2.5em;
    color: #1f50b9;
    text-align: center;
    margin: 0 0 6% 0;
}

.wm-bathyun-03-v2 h3{
    font-size: 25px;
    color: #777;
    line-height: 1.6;
    text-align: left;
    padding-right: 5%;
    font-weight: normal;
}

.wm-bathyun-03-v2 a{
    background: #25d366;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 20px;
    color: #fff;
    border-radius: 300px;
    text-decoration: none;
    width: fit-content;
    margin-top: 16px;
}

.wm-bathyun-03-v2 > div{
    width: 90%;
    margin: 3% 5%;
    background-color: #f5f5fa;
    border-radius: 44px;
    display: flex;
    align-items: center;
    padding: 3%;
    justify-content: space-between;
}

.wm-bathyun-03-v2 > div > div {
    width: 50%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.wm-bathyun-03-v2 > div > div > ol{
    width: 90%;
    list-style: none;
    padding: 0 0 0 0;
    margin: 0;
}

.wm-bathyun-03-v2 div > div > ol > li{
    width: 95%;
    padding: 0 0 0 0;
    margin: 0 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.wm-bathyun-03-v2 div > div > ol > li > div {
    width: 50px;
    height: 50px;
    display: flex;
    background-color: #1a6cb5;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    border-radius: 100px;
}

.wm-bathyun-03-v2 div > div > ol > li > p{
    width: 75%;
}

.wm-bathyun-03-v2 div > div > img{
    width: 90%;
    margin: auto;
     border-radius: 8px;
}

.wm-bathyun-03-v3 {
    width: 100%;
    padding: 5%;
}

.wm-bathyun-03-v3 > div {
    width: 90%;
    margin: 0% 5%;
    padding: 7% 5% 5% 5%;
    background-color: #01216a;
    border-radius: 44px;
    position: relative;
}

.wm-bathyun-03-v3 > div::after{
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    top: 20px;
    z-index: 2;
    background: #337cf4;
    left: 0;
}

.wm-bathyun-03-v3 > div::before{
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background: #dc2626;
    border-radius: 15px 15px 0px 0px;
}

.wm-bathyun-03-v3 > div > h2{
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin: 0 0 3% 0;
}
.wm-bathyun-03-v3 > div > h3{
    font-size: 1.8em;
    color: #ffffff;
    text-align: center;
    margin: 0 0 2% 0;
}

.wm-bathyun-03-v3 > div > p{
    color: #ffffff;
    text-align: center;
    margin: 0 0 2% 0;
}

.wm-bathyun-03-v3 > div > ol{
    display: flex;
    width: 100%;
    margin: 5% 0 0 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.wm-bathyun-03-v3 > div > ol > li {
    width: 50%;
}

.wm-bathyun-03-v3 > div > ol > li > img{
    width: 90%;
    border-radius: 10px;
}

.wm-bathyun-03-v3 > div > ol > li > h3{
    font-size: 1.5em;
    color: #ffffff;
    text-align: center;
    margin: 5% 0 5% 0;
}

.wm-bathyun-03-v3 > div > ol > li > ol {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wm-bathyun-03-v3 > div > ol > li > ol > li {
    margin-bottom: 5%;
    margin-left: 10%;
    width: 90%;
    position: relative;
    color: #fff;
}
.wm-bathyun-03-v3 > div > ol > li > ol > li::before {
    content: "";
    position: absolute;
    background-color: var(--backbroud-white);
    width: 10px;
    height: 10px;
    border-radius: 50px;
    left: -5%;
}

.wm-bathyun-03-v4 {
    width: 100%;
    padding: 5%;
    background-color: #1f50b9;
}


.wm-bathyun-03-v4 > h2{
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin: 0 0 5% 0;
}

.wm-bathyun-03-v4 > h3{
    font-size: 1.8em;
    color: #ffffff;
    text-align: center;
    margin: 0 0 2% 0;
}

.wm-bathyun-03 h3{
    font-size: 2.5em;
    color: #1f50b9;
    text-align: center;
    margin: 5% 0 5% 0;
}

.wm-bathyun-03-v4 > p {
    color: #ffffff;
    text-align: center;
    margin: 0 0 2% 0;
}

.wm-bathyun-03-v4 > ol{
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wm-bathyun-03-v4 > ol > li{
    width: 50%;
}

.wm-bathyun-03-v4 > ol > li > img{
    width: 90%;
}

.wm-bathyun-03-v4 > ol > li > h3 {
    font-size: 1.5em;
    color: #ffffff;
    text-align: left;
    margin: 0 0 2% 0;
}

.wm-bathyun-03-v4 > ol > li > ol {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wm-bathyun-03-v4 > ol > li > ol > li {
    margin-bottom: 15px;
    margin-left: 5%;
    width: 90%;
    position: relative;
    color: #fff;
}

.wm-bathyun-03-v4 > ol > li > ol > li::before {
    content: "";
    position: absolute;
    background-color: var(--backbroud-white);
    width: 10px;
    height: 10px;
    border-radius: 50px;
    left: -5%;
}

.wm-bathyun-03 > div{
    width: 90%;
    margin: 3% 5%;
    background-color: #f5f5fa;
    border-radius: 44px;
    display: flex;
    align-items: center;
    padding: 3%;
}

.wm-bathyun-03 > div > div{
    width: 50%;
}

.wm-bathyun-03 > div > div > p{
    font-size: 25px;
    color: #777;
    line-height: 1.6;
        text-align: left;
        padding-right: 5%;
}

.wm-bathyun-03 > div > div > button{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #1f51ba20;
    color: #1f50b9;
    padding: 3% 2%;
    border-radius: 300px;
    margin: 3% 0;
    width: 80%;
    border: 2px solid #1F51BA;
    box-shadow: 0 4px 4px #00000040;
    font-size: 1.3rem;
}

.wm-bathyun-03 > div > div >form {
    margin: 3% 0;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
}

.wm-bathyun-03 > div > div >form select {
    width: 49%;
    padding: 22px 40px 22px 10px;
    background-color: #fff;
    border-radius: 300px;
    border: 1px solid #DDD;
    color: #7878ab;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    display: inline-block;
    margin-bottom: 3%;
}

.wm-bathyun-03 > div > div >form button{
        width: 100%;
    margin-top: 22px;
    padding: 24px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    background-color: #ff203a;
    color: #fff;
    border: none;
    border-radius: 300px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.wm-bathyun-03 > div > div > img {
    width: 80%;
}

.wm-bathyun-03 h2{
    font-size: 1.5em;
    color: #ffffff;
    text-align: center;
    margin: 5% 0 5% 0;
}

.wm-bathyun-03 ol{
    width: 90%;
    margin: 3% 5%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-around;
}

.wm-bathyun-03 ol li {
    width: 23%;
    margin-bottom: 5%;
    background: #f5f5fa;
    border-radius: 15px;
    padding: 0% 0 5% 0%;
    box-shadow: 0 4px 4px #00000040;
    border-bottom: 2.5px solid #337cf4;
    transition: 0.3s;
}

.wm-bathyun-03 ol li:hover{
    transition: 0.3s!important;
    transform: translateY(-20px)!important;
}

.wm-bathyun-03 ol li img{
    width: 100%;
    border-radius: 15px 15px 0 0;
}

.wm-bathyun-03 ol li h4{
        font-size: 24px;
    color: #1f51ba;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
    padding: 3% 5%;
}

.wm-bathyun-03 ol li div > i{
   color: #e73140;
    margin-right: 9px;
    margin-left: 5%;
    margin-top: 5%;
}

.wm-bathyun-03 ol li div > span{
    color: #9b9b9b;
}

.wm-bathyun-03 > p{
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    color: #777;
    margin-top: 3%;
    margin-bottom: 5%;
    width: 80%;
    margin-left: 10%;
}

.wm-bathyun-03 ol li p{
        color: #777;
    font-size: 18px;
    margin-bottom: 0;
    padding: 0 5% 5% 5%;
    margin: 0;
}

.wm-bathyun-03 ol li a{
        color: #e73140;
    border: 1px solid rgba(0, 0, 0, 0);
    max-width: 137.94px;
    width: 100%;
    padding: 10px 16px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    margin-left: 5%;
    border-bottom: 2px solid #e73140;
}

.wm-bathyun-03 > div > ol {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
        justify-content: center;
    gap: 2%;
}

.wm-bathyun-03 > div > ol > li{
    width: 48%;
    margin: 0 0 1.5% 0;
    padding: 1%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background: #ffffff;
    box-shadow: none;
    border: 2px solid #dc26264f;
}

.wm-bathyun-03 > div > ol > li > div{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    border-radius: 100px;
    color: #fff;
    position: relative;
}

.baterias-lth-wm{
    width: 90%;
    margin: 0 5%;
    position: relative;
}

.baterias-lth-wm h2{
    font-size: 2.5em;
    color: #1f50b9;
    text-align: center;
    margin: 0 0 0 0;
}

.baterias-lth-wm > .slider {
    overflow: hidden;
}

.baterias-lth-wm > .slider .track{
    display:flex;
    gap:25px;
    transition:.45s ease;
    padding: 5% 0;
}

.track{

    display:flex;
    gap:25px;

    transition:transform .4s ease;

    will-change:transform;

}

.baterias-lth-wm > .slider .card{
    width: 25%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: .3s;
    justify-content: space-around;
}

.baterias-lth-wm > .slider .card h4 {
    font-size: 24px;
    color: #1f51ba;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
    padding: 3% 5%;
}

.baterias-lth-wm > .slider .card:hover{

    transform:translateY(-10px);

}

.baterias-lth-wm > .slider img{
    width: 100%;
    object-fit: contain;
    background: #f8f8f8;
    padding: 0;
    height: 300px;

}

.baterias-lth-wm  h3{
    padding: 10px 10px;
    margin: 5px 0;
    color:#0056b8;
    font-size:24px;

}

.baterias-lth-wm > .slider .card h4 {
    font-size: 24px;
    color: #1f51ba;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
    padding: 3% 5%;
}

.baterias-lth-wm > .slider .card p {
    color: #777;
    font-size: 18px;
    margin-bottom: 0;
    padding: 0 5% 5% 5%;
    margin: 0;
    line-height: normal;
}

.baterias-lth-wm > .slider .card i
 {
    color: #e73140;
    margin-right: 9px;
}

.baterias-lth-wm > .slider .card span {
    color: #9b9b9b;
}

.baterias-lth-wm p{
    padding: 0px 10px;
    margin: 0;
    line-height:1.7;
    color:#666;
    flex:1;
}

.baterias-lth-wm a{
    margin:10px;
    text-decoration:none;
    background:#0056b8;
    color:#fff;
    text-align:center;
    padding:14px;
    border-radius:8px;
    font-weight:bold;
    transition:.3s;
}


.baterias-lth-wm > .slider .card a i{
    padding: 0!important;
}

.baterias-lth-wm  a:hover{

    background:#003d80;

}

.baterias-lth-wm .btn{

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#0056b85d;
    color:#fff;
    cursor:pointer;
    font-size:24px;
    z-index:10;
    transition:.3s;
    display: flex;
    justify-content: center;
    align-items: center;

}

.baterias-lth-wm  .btn:hover{

    background:#003d80;

}

.baterias-lth-wm  .prev{
    left:-25px;
}

.baterias-lth-wm  .next{
    right:-25px;
}

@media(max-width:768px){

    .baterias-lth-wm > .slider .card{

        min-width:260px;

    }

}


.bg-red{
    background-color: #ff203a;
}

.bg-blue1{
        background-color: #337cf4;
}

.bg-blue2{
    background-color: #1f50b9;
}

.wm-bathyun-03 > div > ol > li > p{
    font-size: 16px;
    width: 90%;
    margin: 0;
    text-align: left;
    padding: 0 0px 0 15px;
}

.wm-bathyun-03 > div > div {
    width: 50%;
    margin: 0;
    position: relative;
    text-align: center;
    
}

.wm-bathyun-03 > div > div >span{
    position: absolute;
    height: 100%;
    width: 65%;
    top: 13%;
    left: 22%;
    z-index: 0;
    background-image: url(../imgs/Screenshot_2024-07-04_110743.webp);
    background-size: 85%;
    background-repeat: no-repeat;
}

.wm-bathyun-04 {
    width: 100%;
    padding: 5% 5% 0% 0%;
    background-color: #122c81;
}

.wm-bathyun-04 h3 {
    font-size: 2em;
    margin: 0;
    color: #ffffff;
    text-align: center;
}

.wm-bathyun-04 ol{
    display: flex;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wm-bathyun-04 ol > li {
    width: 50%;
}

.wm-bathyun-04 ol > li  button {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    color:#fff;
}

.wm-bathyun-04 ol > li  p {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    color:#fff;
    margin-bottom:20px;
}

/******************************/


#footer-02{
    background-image: url(https://qa.bateriaslthmexico.com.mx/src/imgs/Servicio-cambio-de-bateria.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--text-white);
}

#footer-02 > ul {
    margin: 0;
    padding: 5% 20% 3% 20%;
    display: flex;
    background: #24356bed;
}

#footer-02 > ul > li {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}

#footer-02 > ul > li > img{
    margin-right: 10px;
    border-radius: 20px;
}

#footer-02 > ul > li > p{
    width: 50%;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.5em;
    color: var(--text-white-op5);
    padding: 15px 0;
}

#footer-02 > ul > li > ol{
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    justify-content: flex-start;
    align-items: center;
}

#footer-02 > ul > li > ol > li{
    width: 35px;
    height: 35px;
    border-radius: 50px;
    background: var(--backbroud-white);
    color: var(--primary);
    display:flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

#footer-02 > ul > li > ol > li > a {
    color: var(--primary);
    text-decoration: none;
}

#footer-02 > ul > li > div {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

#footer-02 > ul > li > div > h3 {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid var(--text-white-op5);
    padding: 0px 0 10px 0;
    position: relative;
}

#footer-02 > ul > li > div > h3::after{
    content: "";
    width: 30px;
    height: 2px;
    background: var(--text-white-op5);
    padding: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
}

#footer-02 > ul > li > div > ol{
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 30px;
}

#footer-02 > ul > li > div > ol > li {
    margin: 0 0 0 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 2em;
}

#footer-02 > ul > li > div > ol > li > a{
    text-decoration: none;
    color: var(--text-white);
}

#footer-02 > ul > li > div > ol > li > a > i{
    margin-left: -20px;
    margin-right: 10px;
}

#footer-02 > p{
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--text-white-op5);
    text-align: center;
    background: var(--background-color);
    padding: 10px;
    margin: 0;
}

#footer-02 > p > a{
    color: var(--text-white-op5);
}

/*****/


/*=====================================
CATÁLOGO
======================================*/

.wm-catalogo{
    width: min(1500px, 92%);
    margin: 15% auto 5% auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/*=====================================
FILTROS
======================================*/

.wm-filtros{
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    position: sticky;
    top: 120px;
}

.wm-filtros a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
    text-decoration: none;
    border-radius: 10px;
    background: #0057B8;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.wm-filtros h3{
    font-size: 28px;
    color: #0057B8;
    margin-bottom: 30px;
}

.wm-grupo{
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ececec;
}

.wm-grupo:last-child{
    border-bottom: none;
}

.wm-grupo h4{
    color: #222;
    font-size: 18px;
    margin-bottom: 15px;
}

.wm-grupo label{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    color: #555;
    transition: .3s;
}

.wm-grupo label:hover{
    color: #0057B8;
}

.wm-grupo input{
    accent-color: #0057B8;
}

.wm-filtros button{
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 10px;
    background: #e31f26;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.wm-filtros button:hover{
    background: #b9141a;
}

/*=====================================
PRODUCTOS
======================================*/

.wm-productos{
    width: 100%;
}

/*=====================================
HEADER
======================================*/

.wm-productos-header{
    text-align: center;
    margin-bottom: 50px;
}

.wm-productos-header span{
    display: inline-block;
    color: #e31f26;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.wm-productos-header h2{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 42px;
    color: #003b8f;
    margin-bottom: 15px;
}

.wm-productos-header h2 img{
    width: 40px;
}

.wm-productos-header p{
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

/*=====================================
GRID
======================================*/

.wm-productos-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/*=====================================
CARD
======================================*/

.wm-producto{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
    display: flex;
    flex-direction: column;
}

.wm-producto:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,.15);
}

.wm-img{
    background: #f8f8f8;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.wm-img img{
    width: 80%;
    transition: .4s;
}

.wm-producto:hover .wm-img img{
    transform: scale(1.08);
}

.wm-info{
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wm-badge{
    display: inline-block;
    align-self: flex-start;
    padding: 6px 15px;
    border-radius: 30px;
    background: #e31f26;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.wm-badge.azul{
    background: #0057B8;
}

.wm-badge.oferta{
    background: #ff9800;
}

.wm-badge.nuevo{
    background: #28a745;
}

.wm-badge.premium{
    background: #6f42c1;
}

.wm-info h3{
    margin: 18px 0 12px;
    color: #003b8f;
    font-size: 24px;
}

.wm-info p{
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.wm-info ul{
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.wm-info ul li{
    margin-bottom: 12px;
    color: #555;
}

.wm-info ul i{
    color: #20b458;
    margin-right: 8px;
}

.wm-footer{
    margin-top: 25px;
}

.wm-footer a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
    text-decoration: none;
    border-radius: 10px;
    background: #0057B8;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.wm-footer a:hover{
    background: #003b8f;
}

/*=====================================
RESPONSIVE
======================================*/

@media(max-width:1200px){

    .wm-productos-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:992px){

    .wm-catalogo{
        grid-template-columns: 1fr;
    }

    .wm-filtros{
        position: static;
        margin-bottom: 40px;
    }

}

@media(max-width:768px){

    .wm-productos-header h2{
        font-size: 32px;
    }

    .wm-productos-grid{
        grid-template-columns: 1fr;
    }

    .wm-productos-header p{
        font-size: 15px;
    }

}

@media(max-width:480px){

    .wm-productos-header h2{
        flex-direction: column;
        font-size: 28px;
    }

    .wm-filtros{
        padding: 20px;
    }

    .wm-info{
        padding: 20px;
    }

}


.paginador{
    width: 100%;
    display:flex;
    justify-content:center;
    gap:10px;
    margin:40px 0;
    padding: 0 5%;

}


.paginador a{

    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;
    background:#f3f4f6;

    color:#333;
    text-decoration:none;

}


.paginador a.activo{

    background:#111;
    color:white;

}

/***/



.img-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#btn-go-up{
    position: fixed;
    z-index: 9;
    bottom: 5%;
    right: 3%;
    background-color: #46c254;
    color: #FFF;
    font-size: 2rem;
    display: none;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-decoration: none;
    
}

#btn-go-up a{
    text-decoration: none;
    color: #fff;
}

#btn-go-up p {
    position: absolute;
    height: 43px;
    padding: 0;
    width: 197px;
    right: 108%;
    background: #49c357;
    border-radius: 50px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

#btn-go-up:hover{
    color: var(--text-white);
}

.flotar {
    display: inline-block; /* importante para que funcione bien el transform */
    animation: flotar 3s ease-in-out infinite;
}


.faq {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
/**/

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}

.faq-answer p {
  margin: 10px 0 20px;
}


/* animación */
@keyframes flotar {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.infoCS {
    margin-top: -15%;
    position: relative;
    background: #dae0f2e0;
    width: 92%;
    margin-left: 4%;
    border-radius: 10px;
    padding: 15px;
    text-transform: capitalize;
    font-style: italic;
    color: #1f50b9;
        border: 2px solid #1F51BA;
}

.infoCS p {
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    margin: 0;
    padding: 0;
}

.centro-de-servicio-info{
    background-color: #fff;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
}

.img-wrapper{
    width: 100%;
    position: relative;
}

.img-wrapper img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.img-wrapper span{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: 100%;
}

.centro-de-servicio-info p{
    text-align: left;
}

/*******************************/

.trig-desk{
    display: initial
}

.trig-mob{
        display: none!important;
    }

/*******************************/
.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%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.popup-content iframe {
    width: 100%;
    height: 100%;
    background: var(--backbroud-white);
}

 .popup-content div{
    width: 100%;
    padding: 5%;
    text-align: center;
    background-color: var(--primary);
}

 .popup-content div h1{
    font-size: 40px;
    color: var(--text-white);
    letter-spacing: 0.5px;
 }

  .popup-content div ol{
    list-style: none;
    margin: 0;
    padding: 0;
 }

.popup-content div ol> li{
    padding: 20px 25px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--text-white);
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid var(--secondary);
    width: 50%;
    margin: 0 25% 2% 25%;
}

.popup-content div ol> li > a{
    color: var(--text-white);
    text-decoration: none;
}

.close {
    position: absolute;
    top: 1%;
    right: 2%;
    font-size: 40px;
    color: var(--accent);
    cursor: pointer;
    z-index: 10000;
}

/*=========================
        CONTACTO
==========================*/

.contacto{

    padding:5%;
    margin-top: 10%;

}

.contacto span{

    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;

}

.contacto h2{

        font-size: 2.5em;
    color: #1f50b9;
    text-align: center;
    margin: 0 0 3% 0;

}

.contacto-texto{
    margin:0 auto 50px;
    color:#000000;
    text-align:center;

}

.contacto-grid{

    display:grid;
    grid-template-columns:340px 1fr;
    gap:40px;

}

.contacto-info{

    background:#1b2b48;
    color:#fff;
    padding:35px;
    border-radius:12px;

}

.contacto-info h3{

    margin-bottom:20px;

}

.contacto-info p{

    font-size: 18px;
    color: #ffffff;
    text-align: left;
    padding-right: 5%;

}

.info-item{

    margin-bottom:25px;
    line-height:1.7;

}

.contacto-form{

    background:#fff;
    border-radius:12px;
    padding:35px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.campo{

    display:flex;
    flex-direction:column;

}

.campo label{

    margin-bottom:8px;
    font-weight:600;

}

.campo input,
.campo select,
.campo textarea{

    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    outline:none;
    transition:.3s;

}

.campo input:focus,
.campo select:focus,
.campo textarea:focus{

    border-color:#f5a623;

}

.campo-completo{

    grid-column:1/-1;

}

.btn-contacto{

    grid-column:1/-1;

    border:none;

    background:#f5a623;

    color:#fff;

    padding:16px;

    border-radius:8px;

    cursor:pointer;

    font-size:17px;

    font-weight:bold;

    transition:.3s;

}

.btn-contacto:hover{

    background:#1b2b48;

}

/*=========================================================
BLOG
=========================================================*/

.blog-list{
    padding:80px 0;
}

.blog-list h2{
    margin-bottom:50px;
}

.blog-list .cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.blog-list .card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.blog-list .card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.blog-list .card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-list .card div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#888;
    padding:20px 25px 0;
    font-size:.9rem;
}

.blog-list .card h4{
    padding:10px 25px;
    color:var(--primary);
    font-size:1.5rem;
    line-height:1.3;
}

.blog-list .card p{
    padding:0 25px;
    color:#666;
    line-height:1.8;
    text-align:justify;
}

.blog-list .card a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin:25px;
    color:var(--secondary);
    font-weight:700;
    transition:.3s;
}

.blog-list .card a:hover{
    gap:18px;
}


/*=========================================================
DETALLE
=========================================================*/

.blog-detail{
 margin: 15% 10% 5% 10%;
}

.back-blog{

    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:30px;
    color:var(--secondary);
    font-weight:600;
}

.back-blog:hover{

    gap:18px;

}

.blog-detail .categoria{

    display:inline-block;
    padding:8px 20px;
    background:var(--secondary);
    color:#fff;
    border-radius:30px;
    margin-bottom:20px;
    font-size:.9rem;

}

.blog-detail h1{

    font-size:3rem;
    color:var(--primary);
    line-height:1.2;
    margin-bottom:25px;

}

.blog-detail .meta{

    display:flex;
    gap:35px;
    color:#777;
    margin-bottom:35px;
    flex-wrap:wrap;

}

.blog-detail .meta span{

    display:flex;
    align-items:center;
    gap:8px;

}

.blog-cover{

    width:100%;
    border-radius:18px;
    margin-bottom:45px;
    max-height:650px;
    object-fit:cover;
    box-shadow:0 15px 45px rgba(0,0,0,.12);

}


/*=========================================================
CONTENIDO
=========================================================*/

.contenido{
    margin:auto;
    color:#444;
    font-size:18px;
    line-height:2;

}

.contenido h2{

    margin-top:50px;
    margin-bottom:20px;
    color:var(--primary);
    font-size:2rem;

}

.contenido h3{

    margin-top:35px;
    margin-bottom:15px;
    color:var(--primary);

}

.contenido p{

    margin-bottom:25px;

}

.contenido ul{

    padding-left:25px;
    margin:25px 0;

}

.contenido li{

    margin-bottom:12px;

}

.contenido img{

    width:100%;
    border-radius:15px;
    margin:40px 0;

}

.contenido blockquote{

    border-left:5px solid var(--secondary);
    background:#f8f8f8;
    padding:25px;
    margin:35px 0;
    font-style:italic;

}

.contenido table{

    width:100%;
    border-collapse:collapse;
    margin:40px 0;

}

.contenido table td,
.contenido table th{

    border:1px solid #ddd;
    padding:12px;

}

.contenido table th{

    background:#f5f5f5;

}


/*=========================================================
RELACIONADOS
=========================================================*/

.blog-list:last-child{

    margin-top:70px;
    padding-top:70px;
    border-top:1px solid #e8e8e8;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:992px){

    .blog-detail h1{

        font-size:2.3rem;

    }

    .contenido{

        font-size:17px;

    }

}

@media(max-width:768px){

    .blog-detail{

        padding:50px 0;

    }

    .blog-detail h1{

        font-size:1.9rem;

    }

    .blog-detail .meta{

        flex-direction:column;
        gap:12px;

    }

    .blog-list .cards{

        grid-template-columns:1fr;

    }

    .blog-list .card img{

        height:220px;

    }

    .contenido{

        font-size:16px;
        line-height:1.9;

    }

    .contenido h2{

        font-size:1.7rem;

    }

}

/*=========================================================
SELECT MARCA
=========================================================*/

#marca_auto{

    width:100%;
    height:50px;

    padding:0 45px 0 15px;

    border:1px solid #d9d9d9;
    border-radius:8px;

    background:#fff;
    color:#333;

    font-size:15px;
    font-family:inherit;

    cursor:pointer;
    outline:none;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    transition:.3s;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6 6.5-6' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 15px center;
    background-size:16px;

}

#marca_auto:hover{

    border-color:#d71920;

}

#marca_auto:focus{

    border-color:#d71920;
    box-shadow:0 0 0 4px rgba(215,25,32,.12);

}

#marca_auto option{

    padding:10px;
    color:#333;

}

/*==========================
BOTÓN
==========================*/

.btn-filtros{
    display:none;
}

@media (max-width:768px){

    .btn-filtros{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
        width:100%;
        padding:14px;
        margin-bottom:15px;
        border:none;
        border-radius:8px;
        background:#0066cc;
        color:#fff;
        font-size:16px;
        cursor:pointer;
    }

    .wm-filtros{
        display:none;
    }

    .wm-filtros.activo{
        display:block;
    }

}

@media(max-width:992px){

    .contacto-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .contacto-form{

        grid-template-columns:1fr;

    }

}

/*******************************/

@media (max-width:1300px) {

    .contacto{
        margin-top: 25%;
    }

   #nav02 > ul {
        margin: 0;
        padding: 0.5% 1%;
    }

    #nav02 > ol {
        width: 96%;
        margin: 0 2%;
    }

    #nav02 > ul > li{
        justify-content: space-between; 
        width: 50%;
    }

    #nav02 > ol > li{
        margin-bottom: 10px;
    }

    .logo-header-2 {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    #footer-02 > ul {
        padding: 5% 5% 3% 5%;
    }

}

@media (max-width:870px) {

    .contacto{
        margin-top: 8%;
    }

     #nav02 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

     #nav02 div{
        margin: 0 2%;
    }

    .wm-bathyun-01 ul {
        flex-direction: column;
    }

    .wm-bathyun-01 ul li {
        width: 100%;
    }

    .wm-bathyun-03-v2 div {
        flex-direction: column;
    }

    .wm-bathyun-03-v2 div > div {
        width: 100%;
         flex-direction: column;
    }

    .wm-bathyun-03-v3 > div > ol {
        flex-direction: column;
    }

    .wm-bathyun-03-v3 > div > ol > li {
        width: 100%;
    }

    .wm-bathyun-03-v3 > div > ol > li > img {
        width: 100%;
        margin: 5% auto;
    }

    .wm-bathyun-03-v2 div > div > img {
        width: 100%;
    }

    .wm-bathyun-03 > div > ol > li {
        flex-direction: column;
    }

    .wm-bathyun-03 > div > ol > li > p {
        text-align: center;
    }

    .trig-desk{
        display: none!important;
    }

     #nav02 > ul {
        margin: 0;
        padding: 0.5% 1%;
    }

    #nav02 > ol {
        width: fit-content;
        margin: 0 2%;
    }

    #nav02 > ul > li{
        justify-content: space-between; 
        width: 50%;
    }

    #nav02 > ol > li{
        margin-bottom: 10px;
    }

    .logo-header-2 {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    #nav02 > ul {
       display: none;
    }

    #nav02 > ol > li {
        margin-bottom: 0px;
        display: none;
    }

    .logo-header-2 {
        display: initial !important;
    }

    #footer-02 > ul {
        flex-direction: column-reverse;
    }

    #footer-02 > ul > li {
        width: 100%;
    }

    #footer-02 > ul > li {
        width: 100%;
        justify-content: center;
    }

    #footer-02 > ul > li > p{
        width: 100%;    
        text-align: center;
    }

    #footer-02 > ul > li > ol {
        justify-content: center;
        align-items: center;
    }

    #footer-02 > ul > li > div {
        width: 100%;
            flex-direction: column;
    }

    .wm-bathyun-03 > div {
        align-items: center;
        flex-direction: column;
    }

    .wm-bathyun-03 > div > div{
        width: 100%;
    }

    .wm-bathyun-03 > div > div > button {
        width: 100%;
    }

    .wm-bathyun-03 > div > div >form {
        width: 100%;
    }

    .wm-bathyun-03 ol li {
        width: 80%;
        margin-bottom: 15%;
    }

    .wm-bathyun-03 > div > ol {
        width: 100%;
    }

    .wm-bathyun-04 ol {
        flex-direction: column;
    }

    .wm-bathyun-04 ol > li {
        width: 100%;
        margin-bottom: 10%;
    }

    #btn-go-up{
        display: flex;
    }

}

@media (max-width:600px) {

    .contacto{
        margin-top: 15%;
    }

    .contacto h2 {
        font-size: 2em;
    }

    .wm-catalogo {
        margin: 20% auto 5% auto;
        gap: 0;
    }

        .logo-header-2 img{
            width: 250px!important;
        }


    .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-bathyun-01 ul {
        flex-direction: column;
    }

    .wm-bathyun-01 ul li {
        width: 100%;
    }

    .nav03 > ul .btncen i {
        margin-right: 0px;
    }

    .nav03 > ul .btntel i {
        margin-right: 0px;
    }

    .wm-bathyun-04 ol > li {
        width: 100%;
        margin-bottom: 10%;
    }

    .wm-bathyun-04 ol > li > img{
        width: 100%;
    }

    .navban div ol li h1 {
        font-size: 1em;
    }

    .wm-bathyun-02 h2 {
        font-size: 2em;
    }

    .wm-bathyun-03 h3 {
        font-size: 2em;
    }

    .wm-bathyun-03 > div > div > p {
        font-size: 18px;
    }

    .wm-bathyun-03 > div > div > button {
        font-size: 1rem;
    }

    .wm-bathyun-03 ol li p {
        font-size: 18px;
    }

    .wm-bathyun-03 > p {
        font-size: 20px;
    }

    .wm-bathyun-03 > div > ol > li > p {
                font-size: 18px;
        width: 100%;
        margin: 0;
        padding: 15px;
    }

    .wm-bathyun-01 ul li h2 {
        font-size: 2rem;
    }

    .wm-bathyun-03-v2 h2 {
        font-size: 2em;
    }

    .wm-bathyun-03-v2 div > div > ol > li {
        flex-direction: column;
    }
    .wm-bathyun-03-v2 div > div > ol > li > p {
        width: 100%;
        text-align: center;
    }

    .wm-bathyun-01 ul li ol li::before {
        width: 5px;
        height: 35px;
    }

    .wm-bathyun-03-v3 > div > h2
        {
            font-size: 1.5em;;
            margin: 10% 0 3% 0;
        }

    .wm-bathyun-03-v3 > div > h3 {
        font-size: 1.2em;
        color: #ffffff;
        text-align: center;
        margin: 0 0 2% 0;
    }

    .wm-bathyun-03-v3 > div > ol > li > ol > li::before {
        height: 40px;
        left: -8%;
    }

    .baterias-lth-wm h2 {
        font-size: 2em;
        padding: 5% 0;
    }

    .wm-bathyun-03 > div > ol > li {
        width: 99%;
        margin: 0 0 2% 0;
    }

}