
/* NOTIFICACIÓN DE PRESUPUESTO ANIMADA */
.presupuesto-notification {
  position: fixed;
  bottom: 160px;
  right: 85px;
  opacity: 0;
  background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-secundario) 100%);
  color: white;
  padding: 20px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  z-index: 2000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  animation: slideInFromRight 0.8s ease-out forwards;
  animation-delay: 6.3s; /* 1 segundo después de que el botón presupuesto esté completamente visible */
}

.presupuesto-notification.hide {
  animation: slideOutToRight 0.8s ease-in forwards;
}

.presupuesto {
  bottom: 160px;
  animation-delay: 4.5s; /* Aparece después de 4.5s */
}

@keyframes slideInFromRight {
  0% {
    right: -400px;
    opacity: 0;
  }
  100% {
    right: 85px;
    opacity: 1;
  }
}

@keyframes slideOutToRight {
  0% {
    right: 85px;
    opacity: 1;
  }
  100% {
    right: -400px;
    opacity: 0;
  }
}
      .menu-horizontal .menu-left .product-dropdown {
        position: relative;
      }

      .instagram img,.whatsapp img, .presupuesto img{width:90%;height:60%;object-fit:contain}

      .menu-horizontal .menu-left .product-dropdown-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        min-width: 300px;
        max-height: 70vh;
        overflow-y: auto;
        background: var(--verde-secundario);
        border-radius: 12px;
        padding: 10px 0;
        list-style: none;
        margin: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
        z-index: 1500;
      }

      .menu-horizontal .menu-left .product-dropdown:hover .product-dropdown-menu,
      .menu-horizontal .menu-left .product-dropdown:focus-within .product-dropdown-menu {
        display: block;
        scrollbar-width: none;
        width: 100%;
      }

      .menu-horizontal .menu-left .product-dropdown-menu li {
        width: 95%;
        margin: 0 auto;
        

      }

      .menu-horizontal .menu-left .product-dropdown-menu .dropdown-group {
        color: var(--verde-principal);
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        padding: 10px 18px 6px;
        cursor: default;
        width: 95%;
        
        
      }

      .menu-horizontal .menu-left .product-dropdown-menu a {
        display: block;
        
        color: var(--gris-claro);
        text-decoration: none;
        font-size: 14px;
        padding: 9px 18px;
        transition: background-color 0.2s, color 0.2s;
        margin:  10px auto;
        
      }

      .menu-horizontal .menu-left .product-dropdown-menu a:hover,
      .menu-horizontal .menu-left .product-dropdown-menu a:focus {
        background: rgba(0, 0, 0, 0.18);
        color: #fff;
      }

      @media (max-width: 1024px) {
        .menu-horizontal .menu-left .product-dropdown-menu {
          display: none !important;
        }
      }
  .language-selector {
    position: relative;
  }

  .selected {
    display: flex;
    align-items: center;
    background-color: rgba(21, 199, 83, 0.2);    
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    color: var(--verde-principal);
    font-weight: bold;
    gap: 20px;
  }

  .selected img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
  }

  .dropdown {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    background-color: rgba(21, 199, 83, 0.2);    
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        color: var(--verde-principal);

    overflow: hidden;
    width: 160px;
    z-index: 100;
    margin-top: 10px;
  }

  .dropdown div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .dropdown div:hover {
    background-color: var(--verde-secundario);
    color: var(--gris-claro);
    font-weight: bold;
  }

  .dropdown img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
  }


  
    .language-selector {
      position: relative;
      display: inline-block;
    }

    .selected-language {
      background-color: white;
      border: 1px solid #ccc;
      padding: 10px 15px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      border-radius: 5px;
    }

    .flag {
      width: 24px;
      height: 16px;
      object-fit: cover;
      border-radius: 3px;
    }

    .language-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-top: 5px;
      display: none;
      flex-direction: column;
      width: 100%;
      z-index: 10;
    }

    .language-option {
      padding: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    .language-option:hover {
      background-color: #eee;
    }

    img {
    width: 300px;  
  height: auto;
  object-fit: cover;
}

/* Posicionamiento general */
.float-btn {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;                 /* Ocultos al inicio */
  transform: translateY(40px); /* Desplazados hacia abajo */
  animation: slideUp 0.8s forwards ease-out;
  z-index: 999;
}

/* Ubicación vertical */
.whatsapp {
  bottom: 90px;  
  animation-delay: 1.5s; /* Aparece después de 1.5s */
}
.instagram {
  bottom: 20px;  
  animation-delay: 2.5s; /* Aparece después de 2.5s */
}

.whatsapp img, .instagram img {
  width: 90%;
  height: 60%;
  object-fit: contain;
}


/* Animación */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efecto hover */
.float-btn:hover {
  transform: scale(1.1);
  transition: 0.3s;
}




:root {
  --verde-principal: #9acd32;
  --verde-secundario: #2e7d32;
  --gris-claro: #f4f4f4;
  --negro: #222;
}

body {
    background-image: url(../FOTOS_MENU/bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
    color: var(--negro) #222;
    position: relative;
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: var(--negro);
}





body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: url('imagenes_y_videos_faac/dussich\ logo.png');
    background-repeat: no-repeat;
    background-size: 780px;
    background-position: center center;

    opacity: 0.10;
    z-index: -9999; /* 👈 queda MUCHO más atrás */
    pointer-events: none;
}


.div-opciones {
  position: fixed;
  top: 0;
  left: -260px;
  width: 250px;
  height: 45%;
  background-color: rgba(0, 0, 0, 0.9);
  padding-top: 50px;
  transition: left 0.4s ease-in-out;
  z-index: 1000;
}

.div-opciones.activo { left: 0; }

.div-opciones ul {
  display: inline-flex;
  width: 100%;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 20px;
}

.div-opciones ul li a { width: 100%; text-align: center; }
.div-opciones a { width: 40%; text-align: center; }

.menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 38px;
  background: none;
  border: none;
  color: var(--verde-principal);
  z-index: 1001;
  cursor: pointer;
}

.div-opciones li { list-style: none; margin-top: 40px; word-wrap: break-word; }
.dussichServices { color: rgb(244, 136, 0) !important; background-color: rgb(108, 26, 49); }

.div-opciones li a {
  text-decoration: none;
  color: var(--verde-principal);
  font-weight: bold;
  font-size: 22px;
  background-color: rgba(21, 199, 83, 0.2);
  border-radius: 20px;
  padding: 10px 25px;
  transition: background-color 0.3s, color 0.3s;
}

li a:hover { background-color: var(--verde-secundario); color: #fff; }


.bloque-video-nav { width: 100%; margin-bottom: 150px; }

.video-background {
  width: 100%;
  overflow: hidden;
}

.video-background video {
  position: relative;
  width: 100%;
  display: block; /* elimina espacios blancos */
  object-fit: contain;
}



/* ========================= */
/* Menú horizontal con logo centrado (corregido) */
/* ========================= */
.menu-horizontal {
  position: fixed; /* fijo desde el CSS directamente */
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* centrado horizontal */
  z-index: 1000;
  width: 100%;
  max-width: 1200px;
  
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* izquierda | logo | derecha */
  align-items: center;
  justify-content: center;
  
  background-color: rgba(21, 199, 83, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: bold;
  font-size: 18px;
  color: var(--verde-principal);
  text-decoration: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  margin-top: 10px;
  height: auto;
}

.menu-left,
.menu-right {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-left { 
  justify-content: space-around; 
}
.menu-right { 
  justify-content: space-around; 
}

.menu-logo {
  justify-self: center;
  display: block;
  line-height: 0;
}

.logoIMG {
  height: 100px; /* un poco más grande que los LI */
  width: auto;
  display: block;
}

.menu-left a,
.menu-right a {
  text-decoration: none;
  color: var(--verde-principal);
  background-color: rgba(21, 199, 83, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 18px;
}

.menu-left a:hover,
.menu-right a:hover {
  background-color: var(--verde-secundario);
  color: #fff;
}

.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 30px 0;
  width: 94%;
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--verde-secundario);
  margin: 20px auto;
  border-radius: 30px;
  

}

img{
  width: 250px;
  height: auto;
}


.Aetiqueta,
.Aetiqueta1 {
  flex: 0 1 calc(15% - 20px);
  display: block;
  border-radius: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: black;



}

.Aetiqueta img{

        transition:
    transform 0.4s ease-in-out,
    box-shadow 0.4s ease-in-out,
    background-color 0.4s ease-in-out;
  
  height: auto;
  border-radius: 10px;
}


.linea-orizontal {
  width: 95%;
  height: 3px;
  background-color: #ccc;
  margin: 60px 40px;
  border-radius: 20px;
}

.Aetiqueta:hover {
  background-color: var(--verde-principal );
  transform: scale(0.99);
  box-shadow: 0 10px 40px rgba(15, 205, 40, 0.453);
  

}



.titulo1{
  color: var(--verde-secundario);
  font-size: xx-large;
}


.tit{
    color:  white;
    display: block;
    text-align: center;
    background-color: #2e7d32;
    width: 30%;
    margin: 0 auto;
    border-radius: 20px;
    padding: 10px;
}


/* --------------------------------------------------------------------------------------------------- */


  .carrusel-container {
    position: relative;
    padding: 20px 50px;
    box-shadow: 0 0 0px rgba(0,0,0,0.1);
    border-radius: 10px;
    display: block;
    width: fit-content;
    

  }

  .carrusel {
    display: inline-flex;

    scroll-behavior: smooth;
  width: auto;
    scrollbar-width: none;
  
  }

  .carrusel::-webkit-scrollbar {
    height: 8px;
  }
  .carrusel::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 4px;
  }

.imagen-carrusel {
  flex: 0 0 auto;
  width: 30%;       /* Mantén o ajusta */
  height: 320px;    /* Aumenta la altura para que no se vean aplastadas */
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  object-fit:cover;  /* Muy importante para que la imagen mantenga proporción sin distorsión */
}


  .imagen-carrusel:hover {
    transform: scale(1.05);
  }

  .flecha {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    user-select: none;
    z-index: 20;
  }
  .flecha:hover {
    background: #eee;
  }

  .flecha-izquierda {
    left: -9px;
  }

  .flecha-derecha {
    right: -9px;
  }

  /* Modal overlay */
  .modal {
    display: none; /* oculto inicialmente */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }

  .modal.active {
    display: flex !important;
  }

  .modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    background: #000;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 0 30px rgba(0,0,0,1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  @media (min-width: 768px) {
    .modal-content {
      max-width: 80vw;
      max-height: 85vh;
    }
  }

  @media (min-width: 1024px) {
    .modal-content {
      max-width: 70vw;
      max-height: 85vh;
    }
  }

  .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    font-weight: bold;
    z-index: 10010;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: background 0.2s ease;
  }
  .modal-close:hover {
    background: rgba(0,0,0,0.8);
    color: #fff;
  }

  /* Flechas dentro modal */
  .modal-flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    font-size: 36px;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    user-select: none;
    z-index: 10010;
    transition: background 0.2s ease;
    color: #000;
  }
  .modal-flecha:hover {
    background: #fff;
  }
  .modal-flecha.left {
    left: 15px;
  }
  .modal-flecha.right {
    right: 15px;
  }



.simbolito{
    padding: 10px 20px;
    background-color: black;
    
  }


.Aetiqueta{
  transform: scale(0.9);
}

.div-scroll{
     display: block;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    margin: 0% auto;
    gap: 0px;
    width: fit-content;
    padding:  20px;
    overflow: hidden;
    
    border-radius:  20px;
}


@media (min-width: 1024px) {

.menu-toggle {
  display: none; 
} 
}

@media (max-width: 1280px) and (min-width: 630px) {

 .menu-left, .menu-right {
  transform: scale(0.8);
  font-size: 30px;
} 

.contenido{
  font-size: xx-large;
}

.dussichServices{
  white-space: nowrap;
}

.menu-toggle {
  display: none; 
} 

}


@media (max-width: 360px) {  
 


 .bloque-video-nav {
  display: none;
}

  .div-opciones ul {
    flex-direction: column;
    margin-top: 10%;
    display: flex;
  }

  .div-opciones {
    height: 450px;
    
  }

  .div-opciones a {
    text-align: center;
    margin-top: 0px;
    width: 100%;
    padding: 0px !important;
    background-color: transparent !important;
    margin-left: 30px;
  }

  .div-opciones li{
    margin: 0px;

  }

  .video-background {
    width: 100%;
    /* height: 500px;  */
  }

.div-opciones.activo {
  width: 100%;
}

.div-opciones.activo ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  padding: 0px !important;
}




  .div-opciones img {
    width: 40%;
  }
  .logoA{
    display: none;
  }


}

/* Móviles medianos/grandes */
@media (min-width: 361px) and (max-width: 480px) {
 
 .bloque-video-nav {
  display: none;
}

  .div-opciones ul {
    flex-direction: column;
    margin-top: 10%;
    display: flex;
  }

  .div-opciones {
    height: 450px;
    
  }

  .div-opciones a {
    text-align: center;
    margin-top: 0px;
    width: 100%;
    padding: 0px !important;
    background-color: transparent !important;
    margin-left: 30px;
  }

  .div-opciones li{
    margin: 0px;

  }

  .video-background {
position: relative;
    width: 100%;
    height: 100px;
    display: block;
    object-fit: cover;
  }

.div-opciones.activo {
  width: 100%;
}

.div-opciones.activo ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  padding: 0px !important;
}




  .div-opciones img {
    width: 40%;
  }



}


@media (min-width: 481px) and (max-width: 768px) {




.menu-toggle{
  display: block !important;
}





.div-opciones{
  display: block !important;
}




.bloque-video-nav {
  display: none;
}

  .div-opciones ul {
    flex-direction: column;
    margin-top: 10%;
    display: flex;
  }

  .div-opciones {
    height: 450px;
    
  }

  .div-opciones a {
    text-align: center;
    margin-top: 0px;
    width: 100%;
    padding: 0px !important;
    background-color: transparent !important;
    margin-left: 30px;
  }

  .div-opciones li{
    margin: 0px;

  }

  .video-background {
position: relative;
    width: 100%;
    height: 100px;
    display: block;
    object-fit: cover;
  }

.div-opciones.activo {
  width: 100%;
}

.div-opciones.activo ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  padding: 0px !important;
}



  .div-opciones img {
    width: 40%;
  }
  .logoA{
    display: none;
  }

 

 }



/* Tablets en vertical */
@media (min-width: 769px) and (max-width: 1024px) { 

.bloque-video-nav{
display: none;
  
}

.div-infoMotor{
  height: 50%;
}

.language-selector{
  transform: scale(0.9);
}



  .parrafo1{
  padding: 20px 0;
  
  
}

.parrafo1 h1{
  font-size:x-large;
  margin: 0 auto;
  margin-bottom: 25px;
  width: 97%;
  display: block;
}
.parrafo1 span{
  margin: 0 auto;
  font-size: larger;
  display: block;
  width: 95%;

}

 .div-boton{
    margin: 0 auto;
          display: inline-flex;
        flex-wrap: nowrap;
        gap: 15px;
        text-align: start;
        
        
    }

  .parrafo p {
    font-size: large;
    margin: 0%;
    margin-bottom: 10px;
  }

  .imagen-carrusel{
    height: auto; /* Ajusta la altura para móviles */
    border-radius: ppx;
  }






  .flecha-izquierda, .flecha-derecha {
    display: none;
  }

 

  .informacion-motor{
    gap: 0px;
    flex-direction: column;
   
  }

  .informacion-motor h1{
    width: 100%;
    text-align: start;
    font-size: large;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .informacion-motor2{
    width: 100%;
    font-size: medium;
    text-align: start;
  }

    .informacion-motor h2{
  width: 100% !important;
  margin: 0px;
  font-size: x-large;
  color: var(--verde-secundario);
  text-align: center !important;
    margin-bottom: 15px;

}

  .Boton-pro{
    display: block;
    align-items: center;
    text-align: center;
    margin-top: 15px;
  }



  .div-infoMotor{
    gap: 50px;
    flex-direction: column;
    margin: 0%;
    width: 100%;
    padding: 0px 0px 20px 0px;
    height: 98vh;
    margin-left: 0px !important;
  }

.div-info{
  width: 92.3%;
  margin-left: 20px;
  margin-top: 0px;
  
}

.div-info h1{
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 0px;
}

.div-info br{
  display: none;}



.puntos-lado{
  width: 100%;
  margin-left: 30px;
  padding: 0px;
  
}

 .puntos-lado li{

  width: 95%;
  list-style: disc inside;
  margin-top: 3%;
  font-size: medium;

 }

 .puntos-lado h1{
  font-size: x-large;
  margin-bottom: 10px;
  margin-top: 0px;
 }

 .puntos-lado h2{
  font-size: medium;
  margin-bottom: 20px;
  margin-top: 0px;
 }

 .puntos-lado p{
  margin: 5px 0 10px 0;
  width: 90%;
  font-size: small;
 }

 .Motores img{
  display: none;
 }



 .linea-info{
  width: 90%;
  padding: 10px;
  padding-left: 0%;
  
 }
 .etiqueta{
  width: 100%;
}

 .valor{
  width: 100%;
 } 


    .div-opciones ul{
    display: flex;
  }

  .div-opciones a{
    text-align: center;
    margin-top: 30px;
    width: 80%;
  }

 
  .div-opciones img{
    width: 40%;
  }

.div-opciones {
  position: fixed;
  top: 0;
  left: -260px; /* oculto por defecto */
  width: 250px;
  height: 500px;
  background-color: rgba(0, 0, 0, 0.9);
  transition: left 0.4s ease-in-out;
  z-index: 1000;
  padding: 0%;
}

.div-opciones.activo {
  
  left: 0; /* aparece cuando tiene clase "activo" */
  width: 110%; /* ocupa todo el ancho de la pantalla */
  height: 500px; /* ocupa toda la altura de la pantalla */
  padding: 0px;
}

   }


 @media (min-width: 820px) and  (max-width: 1200px) {

  .bloque-video-nav{
    display: none;

  }

.div-infoMotor{
  height: 50%;
}
  
  .escondido{
    display: block !important;
  }

  .parrafo1{
  padding: 20px 0;
  
  
}

.parrafo1 h1{
  font-size:x-large;
  margin: 0 auto;
  margin-bottom: 25px;
  width: 97%;
  display: block;
}
.parrafo1 span{
  margin: 0 auto;
  font-size: larger;
  display: block;
  width: 95%;

}

  .imagen-carrusel{
    height: auto; /* Ajusta la altura para móviles */
    border-radius: ppx;
  }








  .div-opciones ul {
    flex-direction: column;
    margin-top: 10%;
    display: flex;
  }

  .div-opciones {
    height: 450px;
    
  }

  .div-opciones a {
    text-align: center;
    margin-top: 0px;
    width: 100%;
    padding: 0px !important;
    background-color: transparent !important;
    margin-left: 30px;
  }

  .div-opciones li{
    margin: 0px;

  }

  .video-background {
position: relative;
    width: 100%;
    
    display: block;
    object-fit: cover;
  }

.div-opciones.activo {
  width: 100%;
}

.div-opciones.activo ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  padding: 0px !important;
}


  .logoA{
    display: none;
  }


  .menu-toggle, .div-opciones.activo, .div-opciones{
    display: block !important;
  }

  .div-opciones.activo{
        transition: left 0.4s ease-in-out;
  }


  .contenido {
    all: unset;
    position: relative !important;
    z-index: 1 !important;
    color: #fff !important;
    text-align: center !important;
    top: 25% !important;
    line-height: 30px !important;
    font-size: x-large;
  }

  .div-opciones img {
    width: 40%;
  }

 

  .informacion-motor{
    gap: 0px;
    flex-direction: column;
   
  }

  .informacion-motor h1{
    width: 100%;
    text-align: start;
    font-size: large;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .informacion-motor2{
    width: 100%;
    font-size: medium;
    text-align: start;
  }

    .informacion-motor h2{
  width: 100%;
  margin: 0px;
  font-size: x-large;
  color: var(--verde-secundario);
  text-align: center;
    margin-bottom: 15px;

}

  .Boton-pro{
    display: block;
    align-items: center;
    text-align: center;
    margin-top: 15px;
  }

  .div-infoMotor{
    gap: 120px !important;
    flex-direction: column;
    margin: 0%;
    width: 90%;
    padding: 0px 0px 20px 0px;
    height: 98vh;
  }

.div-info{
  width: 92.3%;
  margin-left: 20px;
  margin-top: 0px;
  
}

.div-info h1{
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 0px;
}



.puntos-lado{
  width: 100%;
  margin-left: 30px;
  padding: 0px;
  
}

 .puntos-lado li{

  width: 95%;
  list-style: disc inside;
  margin-top: 3%;
  font-size: medium;

 }

 .puntos-lado h1{
  font-size: x-large;
  margin-bottom: 10px;
  margin-top: 0px;
 }

 .puntos-lado h2{
  font-size: medium;
  margin-bottom: 20px;
  margin-top: 0px;
 }

 .puntos-lado p{
  margin: 5px 0 10px 0;
  width: 90%;
  font-size: small;
 }




 .linea-info{
  width: 90%;
  padding: 10px;
  padding-left: 0%;
  
 }
 .etiqueta{
  width: 100%;
}

 .valor{
  width: 100%;
 } 


.div-opciones ul {
    flex-direction: column;
    margin-top: 10%;
    display: flex;
    
  }

.div-opciones {
  position: fixed;
  top: 0;
  left: -260px; /* oculto por defecto */
  width: 250px;
  height: 500px;
  background-color: rgba(0, 0, 0, 0.9);
  transition: left 0.4s ease-in-out;
  z-index: 1000;
  padding: 0%;
}

.div-opciones.activo {
  
  left: 0; /* aparece cuando tiene clase "activo" */
  width: 110%; /* ocupa todo el ancho de la pantalla */
  height: 500px; /* ocupa toda la altura de la pantalla */
  padding: 0px;
}


  .div-opciones a {
    text-align: center;
    margin-top: 0px;
    width: 100%;
    padding: 0px !important;
    background-color: transparent !important;
    margin-left: 30px;
  }

  .div-opciones li{
    margin: 0px;

  }



.div-opciones.activo ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  padding: 0px !important;
}




   .div-opciones img {
    width: 40%;
  }


  .logoA{
    display: none;
  }


 }


@media (min-width: 1024px) {
  .parrafo1{
  padding: 20px 0;
  
  
}

.parrafo1 h1{
  font-size:x-large;
  margin: 0 auto;
  margin-bottom: 25px;
  width: 90%;
  display: block;
}
.parrafo1 span{
  margin: 0 auto;
  font-size: larger;
  display: block;
  width: 95%;

}

  .imagen-carrusel{
    border-radius: ppx;
  }






 
   .escondido {
    display: none;
  }


  .informacion-motor{
           gap: 0px;
        flex-direction: row;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: space-around;
        width: 100%;
    }

  .informacion-motor h1{
    width: 30%;
    text-align: start;
    font-size: x-large;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .informacion-motor2{
    width: 40%;
    font-size: larger;
    text-align: start;
  }

  .Boton-pro{
    display: block;
    align-items: center;
    text-align: center;
    margin-top: 15px;
    width: 40%;
    padding: 10px 1px;
  }



  .div-infoMotor{
    gap: 150px;
    margin: 0%;
    padding: 0px 0px 20px 0px;
    height: auto;
    margin-left: 5%;
  }

.div-info{
  width: 92.3%;
  margin-left: 20px;
  margin-top: 0px;
  
}

.div-info h1{
  font-size: xx-large;
  margin-bottom: 20px;
  margin-top: 0px;
}

.div-info p{
  font-size: larger;
}

.div-info br{
  display: none;}

.menu-toggle{
  display: none;
}
  .logoA{
    display: none;
  }


  .div-infoDetalles2 img{
  width: 100%;
  margin-top: 30px;
  border-radius: 30px 30px 0 0 ;
  
}

  .div-infoDetalles img{
  width: 100%;
  margin-top: 30px;
  border-radius: 30px 30px 0 0 ;
  
}

.infodetalles-mot{
  width: 50% !important;
}

.div-infoDetalles h1, .div-infoDetalles2 h1{
  font-size: xx-large;
}


.div-infoDetalles p, .div-infoDetalles2 p{
  font-size: larger;
}

.div-infoDetalles li, .div-infoDetalles2 li{
  font-size: larger;
}

.div-infoDetalles strong, .div-infoDetalles2 strong{
  font-size: larger;
}

.foto-uni{
  height: 200px;
}

}

@media (max-width: 1280px) and (min-width: 630px) {
  


  .div-infoMotor{
    height: 100vh;
  }

  .div-infoDetalles2 img{
  width: 100%;
  margin-top: 30px;
  border-radius: 30px 30px 0 0 ;
  
}

  .div-infoDetalles img{
  width: 100%;
  margin-top: 30px;
  border-radius: 30px 30px 0 0 ;
  
}


  .div-opciones {
    display: none;
  }
 .menu-toggle{
  display: none;
}






 
 

  .informacion-motor{
           gap: 20px;
        flex-direction: row;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        width: 100%;
    }

  .informacion-motor h1{
    width: 30%;
    text-align: start;
    font-size: xx-large;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .informacion-motor2 p{
    width: 100%;
    font-size: large;
    text-align: start;
    gap: 20px;
  }

  .informacion-motor h2{
  width: 50%;
  margin: 0px;
  font-size: x-large;
  color: var(--verde-secundario);
  text-align: start;
    margin-bottom: 15px !important;

}

  .Boton-pro{
    display: block;
    align-items: center;
    text-align: center;
    margin-top: 15px;
    width: 40%;
    padding: 10px 20px;
  }



.div-info{
  width: 92.3%;
  margin-left: 20px;
  margin-top: 0px;
  background-color: white;
}

.div-info p{
  
  font-size: medium;
}

.div-info h1{
  font-size: 25px;
  margin-bottom: 20px;
  margin-top: 0px;
}

.div-infoDetalles, .div-infoDetalles2 {
  width: 80%;
  
}

.div-infoDetalles2 img{
  width: 100%;
  margin-top: 30px;
  border-radius: 30px 30px 0 0 ;
  
}





.puntos-lado{
  width: 90% !important;
  margin-left: 5%;
  padding: 0px;
  
}

 .imgM{
  height: 5%;
} 

.Motores img{
  display: block !important;
  margin: 0 15px 0 0;
  width: 250px;
  height: auto;
  
}

.div-espacio{
  margin-top: 5%;
}




}

@media (min-width: 647px) and (max-width: 926px) and (orientation: portrait) {
  
  .parrafo1{
  padding: 20px 0;
  
  
}

.parrafo1 h1{
  font-size:x-large;
  margin: 0 auto;
  margin-bottom: 25px;
  width: 90%;
  display: block;
}
.parrafo1 span{
  margin: 0 auto;
  font-size: larger;
  display: block;
  width: 95%;

}



  .imagen-carrusel{
    height: auto; /* Ajusta la altura para móviles */
    border-radius: ppx;
  }





  .flecha-izquierda, .flecha-derecha {
    display: none;
  }

 

  .informacion-motor{
    gap: 0px;
    flex-direction: column;
    width: 90%;
   
  }

  .informacion-motor h1{
    width: 100%;
    text-align: start;
    font-size: x-large;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .informacion-motor2{
    width: 100%;
    font-size: larger;
    text-align: start;
  }

  .Boton-pro{
    display: block;
    align-items: center;
    text-align: center;
    margin-top: 15px;
  }


  .div-infoMotor{
    gap: 50px;
    flex-direction: column;
    margin: 0%;
    width: 100%;
    padding: 0px 0px 20px 0px;
    margin-left: 0px !important;
    height: auto;
  }

  .div-infoMotor h1 {
    font-size: xx-large;
  }

  .div-infoMotor p, .div-infoDetalles li{
    font-size: large;
  }

  .div-infoDetalles, .div-infoDetalles2 {
    width: 90% !important;
    padding: 10px 30px;
  }

.div-infoDetalles2 strong, .div-infoDetalles2 li{
  font-size: large;
}

.div-infoDetalles2 p{
  font-size: large;
}

  

.infodetalles-mot{
  width: 40% !important;
}

     .div-infoDetalles2 img{
      border-radius: 30px 30px 0 0;
      margin-top: 30px;
      width: 100% ;
    }

.infodetalles-mot{
  width: 50%;
}

.div-info{
  width: 90%;
  margin-left: 35px;
  margin-top: 0px;
  position: relative;
}

.div-info h1{
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 0px;
}

.div-info br{
  display: none;}



.puntos-lado{
  width: 100%;
  margin-left: 30px;
  padding: 0px;
  
}

 .puntos-lado li{

  width: 95%;
  list-style: disc inside;
  margin-top: 3%;
  font-size: larger;

 }

 .puntos-lado h1{
  font-size: xx-large;
  margin-bottom: 10px;
  margin-top: 0px;
 }

 .puntos-lado h2{
  font-size: x-large;
  margin-bottom: 45px;
  margin-top: 0px;
 }

 .puntos-lado p{
  margin: 5px 0 10px 0;
  width: 90%;
  font-size: large;
 }

 .Motores img{
  display: none;
 }



 .linea-info{
  width: 90%;
  padding: 10px;
  padding-left: 0%;
  
 }


 .etiqueta{
  width: 100%;
}

 .valor{
  width: 100%;
 } 


 .bloque-video-nav {
  display: none;
}

  .div-opciones ul {
    flex-direction: column;
    margin-top: 10%;
    display: flex;
  }

  .div-opciones {
    height: 450px;
    
  }

  .div-opciones a {
    text-align: center;
    margin-top: 0px;
    width: 100%;
    padding: 0px !important;
    background-color: transparent !important;
    margin-left: 30px;
  }

  .div-opciones li{
    margin: 0px;

  }

  .video-background {
position: relative;
    width: 100%;
    height: 100px;
    display: block;
    object-fit: cover;
  }

.div-opciones.activo {
  width: 100%;
}

.div-opciones.activo ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  padding: 0px !important;
}


  .logoA{
    display: none;
  }


  .menu-toggle, .div-opciones.activo, .div-opciones{
    display: block !important;
  }

  .div-opciones.activo{
        transition: left 0.4s ease-in-out;
  }


  .contenido {
    all: unset;
    position: relative !important;
    z-index: 1 !important;
    color: #fff !important;
    text-align: center !important;
    top: 25% !important;
    line-height: 30px !important;
    font-size: x-large;
  }

  .div-opciones img {
    width: 40%;
  }



}

