/* 
    Estilos 

*/

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.1vw; /* Escalable en todas las pantallas */
  box-sizing: border-box;
  background: #fff;
}

.fondo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* seccion 1 */
.seccionv1{
    min-height: 80vh;             
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    padding: 1vw;
    
}
.seccionv2{
    display: flex; 
    justify-content: space-between; 
    font-family: 'Open Sans'; 
    font-weight: bold; font-size: 2vw; 
    color:#3a3a66;
}

.seccionv3{
    display: flex; 
    justify-content: center; 
    align-items: center; 
    flex-grow: 1;
}
.seccionv3 img {
    max-width: 40vw; 
    height: auto;
}



/*Seccion 2 */
.logo1 {    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 50vw;
    padding: 1vw;
}

.logo2{
    display: flex; 
    justify-content: center; 
    align-items: center; 
    flex-grow: 1;
}

.logo2 img{
    max-width: 20vw;
    height: auto;
}




/* Seccion 3 */
.container {
  display: flex;
  padding: 5vw;
  align-items: center;
  font-family: inherit;
}

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

.izq img {
  max-width: 29vw;
  height: auto;
  object-fit: contain;
}

.dere {
  flex: 2;
  padding-left: 2vw;
  color: #3A3A66;
  text-align: justify;
}

.dere p {
  font-size: 1.1vw;
  line-height: 1.6;
  margin-bottom: 4vw;
}

.derlight {
  text-decoration: underline;
}

/* Seccion 4 */

.contenido {
  position: relative;
  box-sizing: border-box;
  display: flex;
  max-width: 90vw;
  margin: auto;
  padding: 1vw;
  text-align: justify;
  gap: 3vw;
}

.columna {
  flex: 1;
}

.izquierda p, .derecha p {
  margin: 0.1vw 0;
  line-height: 1.6;
  font-size: 1.1vw;
  color: #3A3A66;
  text-align: justify;
}

/* Títulos */
h2 {
  
  margin-bottom: 1.5vw;
  color: #3A3A66;
  font-size: 2vw;
  padding-bottom: 0.5vw;
  text-align: center;
  font-family: inherit;
}
h3 {
  margin-bottom: 0.1vw;
  color: #9cbdff;
  font-size: 1.4vw;
  padding-bottom: 0.5vw;
  text-align: left;
  font-family: inherit;
}

/* Línea del medio */
.linea-vertical {
  width: 1vw; 
  background-image: url('imageneslc/lineamed.svg'); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.1vw;

}


li {
    margin: 0.1vw 0;
    line-height: 1.6;
    font-size: 1.1vw;
    color: #3A3A66;
    text-align: justify;
}


.vineta li {
    list-style: none; /* Elimina las viñetas estándar */
    padding-left: 20px; /* Espacio para la viñeta */
    position: relative;
      
    }

.vineta li::before {
      content: ""; /* Esencial para que aparezca */
      position: absolute;
      left: 0;
      top: 0;
      width: 1.4vw; 
      height: 1.4vw;
      background-image: url('/imageneslc/vineta.svg'); /* Ruta a tu imagen */
      background-size: contain;
      background-repeat: no-repeat;
      

    }



/* Seccion de proyectos */



.projects-section {
  padding: 2.5vw 0 10vw 0;
  position: relative;
  min-height: 30vw;
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.project-link:hover .project-item {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}


.projects-list {
  display: flex;
  justify-content: center;
  gap: 2.5vw;
  flex-wrap: wrap;
}
.project-item {
  display: flex;
  flex-direction: column;
  width: 15vw;
}
.project-number {
  font-size: 1.2vw;
  text-align: left;
  color: #3A3A66;
  font-weight: bold;
  margin-bottom: 0.7vw;
  letter-spacing: 0.1vw;
 
}
.project-img-wrapper {
  display: flex;
  justify-content: center;
}


.project-img {
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 5px 5px 2vw rgba(0, 0, 0, 0.50);
  margin-bottom: 1vw;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.project-img img {
  max-width: none;
  width: auto;
  height: 100%;
  object-fit: contain;
  
}

.project-info {
  text-align: center;
}
.project-name {
  display: block;
  font-size: 1.1vw;
  font-weight: bold;
  color: #23234c;
  margin-bottom: 0.2vw;
}
.project-desc {
  display: block;
  font-size: 0.98vw;
  color: #3a3a4d;
  margin-bottom: 0.2vw;
}
.project-type {
  display: block;
  font-size: 0.93vw;
  color: #6c6c8a;
  margin-top: 0.2vw;
}

/* Pie de página */
.footer-section {
  background-image: url('imageneslc/footer.jpg');
  background-size: none;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2c2c53;
  padding: 2.5vw 0 1.5vw 0;
  color: #fff;
  font-family: inherit;
  font-size: 1.1vw;
  letter-spacing: 0.01em;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 80vw;
  margin: 0 auto;
  padding: 0 3vw;
}
.footer-col {
  flex: 1;
  min-width: 12vw;
}
.footer-col.left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col.left li {
  margin-bottom: 1.2vw;
}
.footer-col.left a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1vw;
  transition: color 0.2s;
}
.footer-col.left a:hover {
  color: #b6b6e0;
}
.footer-col.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-logo {
  width: 7vw;
  height: 7vw;
  object-fit: contain;
  margin-bottom: 0.7vw;
}
.footer-copy {
  font-size: 1vw;
  color: #bbb;
  text-align: center;
  margin-top: 0.3vw;
  opacity: 0.85;
}
.footer-col.right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-contact-title {
  margin-bottom: 0.7vw;
  font-size: 1.1vw;
}
.footer-socials {
  display: flex;
  gap: 1vw;
  margin-bottom: 0.7vw;
  align-items:center;
}
.footer-social {
  text-decoration:none;
  font-size: 1.5vw;
  color: #fff;
}
/*.footer-social:hover {
  background: #44447a;
}*/
.footer-email {
  font-size: 1.1vw;
  margin-top: 0.2vw;
  color: #fff;
  word-break: break-all;
}

/*pantallas chicas */

@media screen and (max-width: 768px) {
  /* Sección 1 ajustes */
  .seccionv1 {
    min-height: 40vw;
    padding: 3vw;
  }


  /* Sección 2 ajustes */
  .logo1 {
    min-height: auto;
    padding: 10vw;
  }

  
}






/* Responsive: para pantallas pequeñas */
/*
@media (max-width: 900px) {
  html, body {
    font-size: 2.5vw;
  }
  .container,
  .contenido {
    flex-direction: column;
    padding: 5vw 2vw;
    gap: 3vw;
    max-width: 98vw;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3vw;
    padding: 0 2vw;
    max-width: 98vw;
  }
  .footer-col {
    min-width: 0;
    align-items: center;
    text-align: center;
  }
  .footer-col.right {
    align-items: center;
    text-align: center;
  }
  .projects-list {
    gap: 3vw;
  }
  .project-item {
    width: 60vw;
    max-width: 320px;
  }
  .project-img {
    width: 30vw;
    height: 30vw;
    max-width: 120px;
    max-height: 120px;
  }
  .footer-logo {
    width: 15vw;
    height: 15vw;
    max-width: 100px;
    max-height: 100px;
  }
}

@media (max-width: 600px) {
  html, body {
    font-size: 3.5vw;
  }
  .container,
  .contenido {
    padding: 6vw 2vw;
    gap: 4vw;
  }
  .footer-content {
    padding: 0 1vw;
    gap: 4vw;
  }
  .footer-logo {
    width: 22vw;
    height: 22vw;
    max-width: 90px;
    max-height: 90px;
  }
  .project-item {
    width: 90vw;
    max-width: 320px;
  }
  .project-img {
    width: 22vw;
    height: 22vw;
    max-width: 90px;
    max-height: 90px;
  }
}

/* Para Scrolear mas monito */

.scroll{
  
  scroll-behavior: smooth;
}

/* Ufonia */
.seccion1-ufonia{
  width: auto;
  height: 131vw;
  background-image: url('assetsviewlc/imgufonia/ufonia-seccion1.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  
 
  
    
}









/* Garda */
/*Seccion1*/
.garda-seccion1 {
  position: relative;
  width: auto;
  height: 40vw; 
  background-image: url('assetsviewlc/imggarda/seccion1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position:50% 99%;
  display: flex;
  align-items: flex-end;
  padding: 7vw;
}

.garda-seccion1 h1 {
  color: #a0abea;
  font-size: 5vw;
  margin: 0;
  font-family: 'inherit';
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.garda-seccion2 {
  position: relative;
  width: auto;
  height: 40vw; 
  background-image: url('assetsviewlc/imggarda/seccion2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position:50% 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 7vw;
}
.garda-seccion2 p{
    font-family: 'inherit';
    font-size: 1.4vw;
    margin: 0;
    text-align: justify;
    color:#3a3a66;
    
}
.garda-seccion3{
  position: relative;
  width: auto;
  height: 50vw; 
  background-image: url('assetsviewlc/imggarda/gardaseccion3.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position:50% 50%;
  display: flex;
  padding: 3vw;
  font-family: 'inherit';
}

.garda-seccion3 h2{
  color: #a0abea;
  font-size: 4vw;
  margin: 0;
  font-family: 'inherit';
  display: flex;
  justify-content: flex-start;
  align-items: start;
}

.model-garda{
  position: absolute;
  top: 27vw; 
  left: 10vw;
  display: flex;
  gap: 12vw;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #3a3a66;
  font-weight: 500;

}

.garda-seccion3 p{
  position: relative;
  bottom: 1vw;
  
  max-width: 90vw;
  font-size: 1.5vw;
  line-height: 1.6;
  color: #3a3a66;
  display: flex;
  
  align-items: end;

}

.garda-seccion4{
 position: relative;
  width: auto;
  height: 100vw; 
  background-image: url('assetsviewlc/imggarda/gardaseccion4.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position:50% 50%;
  display: flex;
  padding: 3vw;
  font-family: 'inherit';
}
.garda-seccion4 h2{
  color: #a0abea;
  font-size: 4vw;
  margin: 0;
  font-family: 'inherit';
  display: flex;
  justify-content: flex-start;
  align-items: end;
}


/* Chocolover */

.chocolover-seccion1{
position: relative;
  width: auto;
  height: 50vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position:50% 50%;
  display: flex;
  padding: 3vw;
  font-family: 'inherit';
    
}

/* Mejoras generales */
*,
*:before,
*:after {
  box-sizing: inherit;
}

/* MODAL PDFS */

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
}

.modal-content {
  
  margin:auto;
  padding: 0;
  height: 80vw;
  width: 80vw;
  max-width: 80vw;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.cerrar {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  
  cursor: pointer;
}

