/* Fuentes cargadas desde HTML con preload para mejor performance */

:root {
  --verde-principal: #9acd32;
  --verde-secundario: #2e7d32;
  --gris-claro: #f4f4f4;
  --negro: #222;
}
body {
  position: relative;
  margin: 0;
  padding: 0;
  z-index: 1; /* 👈 el contenido del body queda por encima */
      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;
}







/* 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 */
}

/* Animación */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efecto hover */
.float-btn:hover {
  transform: scale(1.1);
  transition: 0.3s;
}



  .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%;
  }



.descripcion {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  text-align: center;
  width: 100%;
  font-size: large;
  padding: 5% 0;
    background-image: url(../imagenes_y_videos_faac/bg-001.jpg);
    gap: 20px;

}

.divempresa1 {
  flex: 0 1 clamp(220px, 20%, 280px);
  border-radius: 90px 0 90px 0;
  background-color: rgba(109, 117, 118, 0.823);
  padding: 50px 40px;
  transition: all 0.4s;
  position: relative;
  box-shadow: 0 0 0 transparent;
  text-align: center;
}




.descripcion p {
  color: #fff;
  font-size: 19px;
}

.descripcion span {
  font-size: 27px;
  color: rgb(17, 199, 17);
}

.bio {
  font-size: 25px;
  text-align: center;
  color: #000;
  margin: 90px 60px;
}






.bibliografia {
  background: linear-gradient(var(--verde-secundario), var(--verde-principal));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.logobibliografia {
  flex: 1 1 150px;
  max-width: 150px;
}

.divsinistra,
.divcentro,
.divdestra,
.destradestra {
  flex: 1 1 200px;
  min-width: 180px;
  font-size: 16px;
  line-height: 1.6;
  color: white; text-decoration: none;

}

.divdestra {
  text-align: left;
}

.destradestra {
  text-align: right;
  font-size: 24px;
}


.nosotrso {
  display: inline-flex;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto;
  height: 550px;
  overflow: hidden;
  background-image: url('../FOTOS_MENU/fondo.webp');
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0px 0;
}

.carrusel-wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.carrusel {
  display: flex;
  transition: transform 0.5s;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  width: 100%;
}

.carrusel h3{
  color: var(--verde-secundario);
}

.bio strong{
  color: var(--verde-secundario);
}

.lugar {
  display: block;
  flex: 0 0 350px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  opacity: 0.4;
  transform: scale(0.75);
  transition: transform 0.5s, opacity 0.5s;
  pointer-events: none;
  font-size: small;
  width: 100%;
}

.lugar p, .lugar.activo p {
  max-width: 310px;
  margin: 0 auto;
  text-align: center;
}

.nosotrso a {
  text-decoration: none;
  color: var(--verde-principal);
  font-weight: bold;
  font-size: 12px;
  background-color: rgba(21, 199, 83, 0.2);
  border-radius: 5px;
  padding: 10px 25px;
  transition: background-color 0.3s, color 0.3s;
}

.lugar img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.lugar.activo {
  transform: scale(1.3);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  font-size: medium;
}

.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  opacity: 0.6;
  z-index: 10;
}

.flecha:hover {
  opacity: 1;
}

.flecha.izquierda {
  left: 10px;
}

.flecha.derecha {
  right: 10px;
}

.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: 30px;
  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 y contenido (sin cambios) */
/* ========================= */


.parrafo1 {
  background: linear-gradient(var(--verde-principal), var(--verde-secundario));
  color: #fff;
  background-size: cover;
  text-align: center;
}

h2.parrafo { margin-top: 20px; font-size: 300%; margin-bottom: 0; }
p.parrafo { margin-bottom: 20px; font-size: 200%; font-weight: 200; margin-top: 0; }

.bloque-video-nav { width: 100%; }

.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.contenido {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: xx-large;
    flex-direction: column;
    display: flex;
    justify-content: center; /* eje horizontal */
    align-items: center;     /* eje vertical */
    min-height: 100vh;
    text-align: center;
}

.contenido h1{
    margin: 0 auto;
    width: 90%;
    font-size: 50px;
    
}

.contenido p{
    width: 97%;

}

/* ========================= */
/* 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;
}



/* ========================= */
/* Media Queries precisas por pantalla */
/* ========================= */





/* Móviles pequeños: iPhone 5 en adelante */
@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;
}


.contenido {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: xx-large;
    flex-direction: column;
    display: flex;
    justify-content: center; /* eje horizontal */
    align-items: center;     /* eje vertical */
    min-height: 100vh;
    text-align: center;
}

.contenido h1{
    margin: 0 auto;
    font-size: larger;
}

  .contenido h2{
    line-height: 50px;
    width: 98%;
    font-size:  30px;
    margin:  0 auto;
  }

  .contenido p{
    width: 90%;
    margin:  0 auto;
  }

  .div-opciones img {
    width: 40%;
  }
  .logoA{
    display: none;
  }

  .parrafo {
    font-size: 180% !important;
  }

   .descripcion {
    transform-origin: top;
    width: 100%;
    gap: 10px;
  }
  .divempresa1 {
    padding: 30px 20px;
    flex: 0 1 200px;
  }

  .divempresa1 img {
    width: 60px;
  }

  .titulo {
    font-size: 18px !important;
  }

  .parra {
    font-size: 14px !important;
  }

  .bio {
    font-size: 15px;
    width: 90%;
    margin: 20px auto;
    text-align: center;
  }

  .carrusel-wrapper {
    transform: scale(0.7);
    transform-origin: center;
    
    margin-left: 17px;
  }

  .flecha.derecha,
  .flecha.izquierda {
    transform: scale(0.5);
    margin:0px  -10px;
    
  }

  .lugar.activo {
    font-size: 15px;
    transform: scale(1);
    transform-origin: center;
  }

  .nosotrso {
    height: 30%;
  }

  .fondo2 {
    height: 1400px;
  }

  .destradestra {
    display: none;
  } }


@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 {
    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;
}





 .contenido {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: medium;
    flex-direction: column;
    display: flex;
    justify-content: center; /* eje horizontal */
    align-items: center;     /* eje vertical */
    min-height: 100%;
    text-align: center;
}

.contenido h1{
    margin:20px auto;
    width: 96%;
    font-size: x-large;
}

  .contenido p{
    width: 90%;
    margin:  0 auto;
  }

  .div-opciones img {
    width: 40%;
  }
  .logoA{
    display: none;
  }

  .parrafo {
    font-size: 180% !important;
  }

  .descripcion {
    transform-origin: top;
    width: 100%;
    gap: 10px;
  }
  .divempresa1 {
    padding: 30px 20px;
    flex: 0 1 200px;
  }

  .divempresa1 img {
    width: 60px;
  }

  .titulo {
    font-size: 18px !important;
  }

  .parra {
    font-size: 14px !important;
  }

  .bio {
    font-size: 15px;
    width: 100%;
    margin: 20px auto;
    text-align: center;
    transform: scale(0.9);
  }

  .carrusel-wrapper {
    transform: scale(0.8);
    transform-origin: center;
    margin-left: 17px;
  }

  .flecha.derecha,
  .flecha.izquierda {
    transform: scale(0.5);
        margin:0px  -10px;

  }

  .lugar.activo {
    font-size: 15px;
    transform: scale(1);
    transform-origin: center;
  }

  .nosotrso {
    height: 30%;
  }

  .fondo2 {
    height: 1400px;
  }

  .destradestra {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
 
 .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;
  margin:  35px 0;
}


  .logoA{
    display: none;
  }


  .menu-toggle, .div-opciones.activo, .div-opciones{
    display: block !important;
  }

  .div-opciones.activo{
        transition: left 0.4s 
ease-in-out;
  }


 .contenido {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: medium;
    flex-direction: column;
    display: flex;
    justify-content: center; /* eje horizontal */
    align-items: center;     /* eje vertical */
    min-height: 100%;
    text-align: center;
}

.contenido h1{
    margin:0px auto 20px auto;
    width: 97%;
    font-size: xx-large;
}

  .contenido p{
    width: 90%;
    margin:  0 auto;
  }



  .div-opciones img {
    width: 50%;
  }

  .descripcion {
    transform-origin: top;
    width: 100%;
    gap: 20px;
  }
  .divempresa1 {
    padding: 30px 20px;
    flex: 0 1 200px;
  }

  .divempresa1 img {
    width: 60px;
  }

  .titulo {
    font-size: 18px !important;
  }

  .parra {
    font-size: 14px !important;
  }

  .parrafo {
    font-size: 180% !important;
  }





  .fondo2 {
    width: 100%;
    height: 780px;
  }

  .bio {
    font-size: 15px;
    width: 95%;
    margin: 20px auto;
    text-align: center;
  }

  .carrusel-wrapper {
    transform: scale(0.9);
    transform-origin: center;
    margin-left: 17px;
  }

  .flecha.derecha,
  .flecha.izquierda {
    transform: scale(0.7);
  }

  .lugar.activo {
    font-size: 15px;
    transform: scale(1.0);
    transform-origin: center;
  }

  .lugar {
    transform: scale(0.4);
  }

  .nosotrso {
    height: 30%;
  }

  

  .destradestra {
    display: none;
  }  
}

@media (min-width: 641px) and (max-width: 768px){

 .contenido {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: larger !important;
    flex-direction: column;
    display: flex;
    justify-content: center; /* eje horizontal */
    align-items: center;     /* eje vertical */
    min-height: 65vh !important;
    text-align: center;
}

.contenido h1{
    margin:0px auto 20px auto;
    width: 98%;
}

  .contenido p{
    width: 90%;
    margin:  0 auto;
  }


  .descripcion {
    transform-origin: top;
    width: 100% !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    padding-bottom: 25px !important;
  }


  .divempresa1 img {
    width: 35% !important;
  }

  .titulo {
    font-size: 18px !important;
  }

  .parra {
    font-size: 14px !important;
  }

}

/* Tablets en vertical */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) { 

  .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;
}


  .parrafo{
    font-size: 180% !important;
    
  }

  .divempresa1{
    transform: scale(0.9);
    gap: 0px;
    padding: 25px 20px ;
  }

   .bio {
    font-size: 15px;
    width: 95%;
    margin: 20px auto;
    text-align: center;
  }
  .carrusel-wrapper{
    transform: scale(1); /* 80% del tamaño original */
    transform-origin: center;
    margin-left: 17px;
    ;
  }

  .flecha.derecha, .flecha.izquierda{
    transform: scale(1);
  }

  .lugar.activo {
    font-size: 15px;
    
    transform: scale(1.0); /* 80% del tamaño original */
    transform-origin: center;  
  }
  .lugar{
    transform: scale(0.7);
  }

  .nosotrso{
    height: 30%;
  }

  .fondo2{
    height: auto;
  }
  
  .destradestra{
    display: none;
  }

  .bloque-video-nav {
  width: 100%;
}

.video-background {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.menu-horizontal{
  margin-top: 20px;
position: static;
transform: scale(0.8) !important;
transform-origin: top;

}

.menu-horizontal ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 2;
    position: relative;
    align-items: center;
}

.menu-horizontal li {
  margin: 10px 20px;
}

.menu-horizontal li a{
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 18px;
  padding: 8px 30px;
  color: var(--verde-principal);
  padding: 8px 30px;
  background-color: rgba(21, 199, 83, 0.2);
  border-radius: 20px;
}

.menu-horizontal li a:hover{
  background-color: #2e7d32;
  color: white;
}

.logo-item {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  
}

.logo img {
  width: 280px;
  height: auto;
  display: block;
}

 .contenido {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: medium;
    flex-direction: column;
    display: flex;
    justify-content: center; /* eje horizontal */
    align-items: center;     /* eje vertical */
    text-align: center;
}

.contenido h1{
    margin:0px auto 20px auto;
    width: 98%;
}

  .contenido p{
    width: 90%;
    margin:  0 auto;
  }



.escondido{
  display: none ;
}
   }


 @media (min-width: 820px) and  (max-width: 1200px) {


  .parrafo {
    font-size: 180% !important;
  }





  .descripcion {
    transform-origin: top;
    width: 100% !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    padding-bottom: 25px !important;
  }

  .divempresa1{
    padding: 40px 30px !important;
  }

  .divempresa1 img {
    width: 38% !important;
  }

  .titulo {
    font-size: 22px !important;
  }

  .parra {
    font-size: 18px !important;
  }


  .bio {
    font-size: 15px;
    width: 95%;
    margin: 20px auto;
    text-align: center;
  }

  .carrusel-wrapper {
    transform: scale(0.9);
    transform-origin: center;
    margin-left: 17px;
  }

  .flecha.derecha,
  .flecha.izquierda {
    transform: scale(0.8);
  }

  .lugar.activo {
    font-size: 15px;
    transform: scale(1.0);
    transform-origin: center;
    width: 100%;
  }

    .lugar {
    transform: scale(0.8);
  }

  .nosotrso {
    height: 30%;
  }

  .fondo2 {
    height: 750px;
  }

  .destradestra {
    display: none;

 }

 
}


@media (min-width: 1024px) {


 .escondido {
  display: none;
}

.menu-toggle{
  display: none;
}

  


.dussichServices {
  color: rgb(244, 136, 0) !important;
  background-color: rgb(108, 26, 49);
}


li a:hover {
  background-color: var(--verde-secundario);
  color: #fff;
}



.div-PrimeraParte {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: rgb(196, 32, 32);
  text-align: center;
  padding: 20px;
}

.parrafo1 {
  background: linear-gradient(var(--verde-principal), var(--verde-secundario));
  color: #fff;
  background-size: cover;
  text-align: center;
}

h2.parrafo {
  margin-top: 20px;
  font-size: 300%;
  margin-bottom: 0;
}

p.parrafo {
  margin-bottom: 20px;
  font-size: 200%;
  font-weight: 200;
  margin-top: 0;
}

.descripcion {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  text-align: center;
  width: 100%;
  font-size: large;
  padding: 5% 0;
  background-size: cover;
}

.divempresa1 {
  flex: 0 1 clamp(220px, 20%, 280px);
  border-radius: 90px 0 90px 0;
  background-color: rgba(109, 117, 118, 0.823);
  padding: 50px 40px;
  transition: all 0.4s;
  position: relative;
  box-shadow: 0 0 0 transparent;
  text-align: center;
}



.descripcion p {
  color: #fff;
  font-size: 19px;
}

.descripcion span {
  font-size: 27px;
  color: rgb(17, 199, 17);
}

.bio {
  font-size: 25px;
  text-align: center;
  color: #000;
  margin: 90px 60px;
}

.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
}

.Aetiqueta,
.Aetiqueta1 {
  flex: 0 1 calc(25% - 20px);
  display: block;
  border-radius: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #000;
}

.Aetiqueta:hover {
  background-color: #e2ffe0;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(15, 205, 40, 0.484);
}

.Aetiqueta1:hover {
  background-color: rgba(241, 136, 7, 0.321);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(105, 27, 48, 0.626);
}

.Aetiqueta::after,
.Aetiqueta1::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 80%;
  height: 3px;
  background-color: var(--verde-principal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}

.Aetiqueta1::after {
  background-color: rgb(105, 27, 48);
}

.Aetiqueta:hover::after,
.Aetiqueta1:hover::after {
  transform: scaleX(0.7);
}

.Aetiqueta img,
.Aetiqueta1 img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}

.titulo1 {
  white-space: nowrap;
  overflow: hidden;
  color: var(--verde-secundario);
}



.bibliografia {
  background: linear-gradient(var(--verde-secundario), var(--verde-principal));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.logobibliografia {
  flex: 1 1 150px;
  max-width: 150px;
}

.divsinistra,
.divcentro,
.divdestra,
.destradestra {
  flex: 1 1 200px;
  min-width: 180px;
  font-size: 16px;
  line-height: 1.6;
}

.divdestra {
  text-align: left;
}

.destradestra {
  text-align: right;
  font-size: 24px;
}


.nosotrso {
  display: inline-flex;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto;
  height: 750px;
  overflow: hidden;
  background-image: url('../FOTOS_MENU/fondo.webp');
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0px 0;
}

.carrusel-wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.carrusel {
  transform: scale(0.8);
}

.lugar {
  display: block;
  flex: 0 0 350px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  opacity: 0.4;
  transform: scale(0.75);
  transition: transform 0.5s, opacity 0.5s;
  pointer-events: none;
  font-size: small;
  width: 100%;
}

.lugar p, .lugar.activo p {
  max-width: 310px;
  margin: 0 auto;
  text-align: center;
}

.nosotrso a {
  text-decoration: none;
  color: var(--verde-principal);
  font-weight: bold;
  font-size: 12px;
  background-color: rgba(21, 199, 83, 0.2);
  border-radius: 5px;
  padding: 10px 25px;
  transition: background-color 0.3s, color 0.3s;
}

.lugar img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.lugar.activo {
  transform: scale(1.1);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  font-size: medium;
}

.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  opacity: 0.6;
  z-index: 10;
}

.flecha:hover {
  opacity: 1;
}

.flecha.izquierda {
  left: 10px;
}

.flecha.derecha {
  right: 10px;
}





 .contenido {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: larger;
    flex-direction: column;
    display: flex;
    justify-content: center; /* eje horizontal */
    align-items: center;     /* eje vertical */
    text-align: center;
}

.contenido h1{
    margin:0px auto 20px auto;
    width: 100%;
    
}

  .contenido p{
    width: 90%;
    margin:  0 auto;
    font-size:  x-large;
  }



}

@media (max-width: 1280px) and (min-width: 630px) {
  

   .menu-left, .menu-right{
  flex-direction: column;
  gap: 20px;
  display: inline-flex;

 }

 .menu-right{
  margin-top: 18px;
}


 .selected{
  padding: 8px 20px;
  font-size: 18px;
  max-width: 150px;
  justify-content: center;
 }

 .dropdown{
  width: 100%;
  font-size: 22px;
 }

  .selected img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }

 .fondo2 {
  height: 550px;
}


.div-PrimeraParte {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: rgb(196, 32, 32);
  text-align: center;
  padding: 20px;
}

.parrafo1 {
  background: linear-gradient(var(--verde-principal), var(--verde-secundario));
  color: #fff;
  background-size: cover;
  text-align: center;
}

h2.parrafo {
  margin-top: 20px;
  font-size: 300%;
  margin-bottom: 0;
}

p.parrafo {
  margin-bottom: 20px;
  font-size: 200%;
  font-weight: 200;
  margin-top: 0;
}

.descripcion {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  text-align: center;
  width: 100%;
  font-size: large;
  padding: 5% 0 0 0;
  gap: 0px;
}

.divempresa1 img {
  margin-top: 30px;
}



.bio {
  all: unset;
  display: block;
  font-size: medium;
  text-align: center;
  color: #000;
  margin: 30px 60px;
  font-size: larger;
  
}

.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
}

.Aetiqueta,
.Aetiqueta1 {
  flex: 0 1 calc(25% - 20px);
  display: block;
  border-radius: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #000;
}

.Aetiqueta:hover {
  background-color: #e2ffe0;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(15, 205, 40, 0.484);
}

.Aetiqueta1:hover {
  background-color: rgba(241, 136, 7, 0.321);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(105, 27, 48, 0.626);
}

.Aetiqueta::after,
.Aetiqueta1::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 80%;
  height: 3px;
  background-color: var(--verde-principal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}

.Aetiqueta1::after {
  background-color: rgb(105, 27, 48);
}

.Aetiqueta:hover::after,
.Aetiqueta1:hover::after {
  transform: scaleX(0.7);
}

.Aetiqueta img,
.Aetiqueta1 img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}

.titulo1 {
  white-space: nowrap;
  overflow: hidden;
  color: var(--verde-secundario);
}



.bibliografia {
  background: linear-gradient(var(--verde-secundario), var(--verde-principal));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.logobibliografia {
  flex: 1 1 150px;
  max-width: 150px;
}

.divsinistra,
.divcentro,
.divdestra,
.destradestra {
  flex: 1 1 200px;
  min-width: 180px;
  font-size: 16px;
  line-height: 1.6;
}

.divdestra {
  text-align: left;
}

.destradestra {
  text-align: right;
  font-size: 24px;
}


.nosotrso {
  display: inline-flex;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto;
  height: 550px;
  overflow: hidden;
  background-image: url('../FOTOS_MENU/fondo.webp');
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0px 0;
}

.carrusel-wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.carrusel {
  transform: scale(0.8);
}

.lugar {
  display: block;
  flex: 0 0 350px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  opacity: 0.3;
  transform: scale(0.8);
  transition: transform 0.5s, opacity 0.5s;
  pointer-events: none;
  font-size: small;
  width: 100%;
}

.lugar p, .lugar.activo p {
  max-width: 310px;
  margin: 0 auto;
  text-align: center;
}

.nosotrso a {
  text-decoration: none;
  color: var(--verde-principal);
  font-weight: bold;
  font-size: 12px;
  background-color: rgba(21, 199, 83, 0.2);
  border-radius: 5px;
  padding: 10px 25px;
  transition: background-color 0.3s, color 0.3s;
}

.lugar img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.lugar.activo {
  transform: scale(0.9);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  font-size: medium;
}

.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  opacity: 0.6;
  z-index: 10;
}

.flecha:hover {
  opacity: 1;
}

.flecha.izquierda {
  left: 10px;
}

.flecha.derecha {
  right: 10px;
}




.contenido{
  font-size: xx-large;
}

.dussichServices{
  white-space: nowrap;
}

  .video-background {
    width: 100%;
    height: 500px; 
  }

.menu-horizontal{   
    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;

  }



    .logoA{
    display: none;
  }


.div-opciones.activo {
  width: 100%;
}

.div-opciones.activo ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  padding: 0px !important;
  margin:  40px 0;
}


  .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;
    z-index: 1;
    color: #fff;
    font-size: larger;
    flex-direction: column;
    display: flex;
    height: 100%  !important;
    justify-content: center; /* eje horizontal */
    align-items: center;     /* eje vertical */
    text-align: center;
}

.contenido h1{
    margin:0px auto 20px auto;
    
}

  .contenido p{
    width: 90%;
    margin:  0 auto;
  }



  .div-opciones img {
    width: 40%;
  }

  .escondido{
    display: block;
  }

  .bloque-video-nav{
    display:  none;
  }

}


@media (min-width: 647px) and (max-width: 926px) and (orientation: portrait) {
  


 .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; 
  }

    .logoA{
    display: none;
  }


.div-opciones.activo {
  width: 100%;
}

.div-opciones.activo ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  padding: 0px !important;
}


  .menu-toggle, .div-opciones.activo, .div-opciones{
    display: block !important;
  }

  .div-opciones.activo{
        transition: left 0.4s ease-in-out;
  }



 .contenido {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: larger;
    flex-direction: column;
    display: flex;
    justify-content: center; /* eje horizontal */
    align-items: center;     /* eje vertical */
    min-height: 50vh ;
    text-align: center;
}

.contenido h1{
    margin:0px auto 20px auto;
    width: 97.8%;
    
}

  .contenido p{
    width: 90%;
    margin:  0 auto;
  }



  .div-opciones img {
    width: 40%;
  }



  .parrafo {
    font-size: 180% !important;
  }



  .descripcion {
    transform-origin: top;
    width: 100% !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    padding-bottom: 25px !important;
  }

  .divempresa1{
    padding: 30px 20px;
  }

  .divempresa1 img {
    width: 38% !important;
  }

  .titulo {
    font-size: 18px !important;
  }

  .parra {
    font-size: 14px !important;
  }



  .bio {
    font-size: 15px;
    width: 92%;
    margin: 20px auto;
    text-align: center;
    font-size: 18px;
  }

  .carrusel-wrapper {
    transform: scale(0.9);
    transform-origin: center;
    margin-left: 17px;
  }

  .flecha.derecha,
  .flecha.izquierda {
    transform: scale(0.7);
  }

  .lugar.activo {
    font-size: 15px;
    transform: scale(1.0);
    transform-origin: center;
  }

  .lugar {
    transform: scale(0.4);
  }

  .nosotrso {
    height: 30%;
  }

  

  .destradestra {
    display: none;
  } 


}