@charset "UTF-8";
/* CSS Document */

/* GRAFICA LANDING BARBIERI */

.search_bar2 {
  background: linear-gradient(to right, #E52321 70%, #1A67B0 40%);
  padding: 20px 0;
  width: 100%;
  display: block;
  position: relative;
}

/* Boton superior */

.item-barbieri a {
  background-color: #E52321 !important; 
  font-weight: bold; 
}
.item-barbieri a:hover{
  background-color: #0d3960 !important; 
  font-weight: bold; 
}
/* Primera seccion*/
 .celda-barbieri01{
	padding-left: 10px;
	padding-right: 10px;
}
/* logos primera seccion */
.equalizeContainer img {
  width: 60%;  
  height: auto;
  margin-bottom: 10px; 
  display: flex;
  flex-direction: column;   
  margin-left: 40%;
  margin-right: 0%;
}
.item-text-01{
	text-align: left;
}
@media (max-width: 768px) {
  .equalizeContainer img {
    width: 60%;
	margin-left: 20%;
	margin-right: 20%;
  }
  .item-text-01{
	  text-align:center;
	  margin-top: 10%;
	  margin-bottom: 5%;
	}
}

@media (max-width: 480px) {
  .equalizeContainer img {
     width: 80%;
	margin-left: 10%;
	margin-right: 10%;
  }
	.item-text-01{
	  text-align:center;
	  margin-top: 10%;
	  margin-bottom: 5%;
	}
}

/* icono barbieri */
.contenedor-icono-barbieri {
  display: flex;
  justify-content: center;  /* Centra horizontalmente */
  align-items: center;      /* Centra verticalmente (opcional si quieres centro total) */
  width: 100%;
  padding: 20px 0;          /* Espacio arriba y abajo */
  flex-direction: column; /* Esto apila los elementos verticalmente */

}

.contenedor-icono-barbieri img {
  max-width: 100%;
  height: auto;
  width: 50px;             /* Ajusta el tamaño según lo necesites */
}
.contenedor-icono-barbieri h2{
	color: #9A9A9A;
	font-weight: lighter;
}
.contenedor-icono-barbieri p{
	color:#FFFFFF;
	background: #E52321;
	padding: 5px;
	font-weight: lighter;
}


/* Galeria de imagenes */

  .gallery1 {
    max-width: 100%;
    margin: 0 auto;
	margin-left: 0%;
	margin-right: 0%;
  }

  .row {
    display: flex;
    justify-content: center;
    gap: 0px;
    margin-bottom: 5px;
  }

  .row.top {
    justify-content: center;
  }

  .gallery1 img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
    object-fit: cover;
  }

  /* Ancho fijo para las imágenes */
  .row.top img {
    width: calc((100% - 16px) / 3); /* 3 imágenes con 8px gap entre ellas */
  }
  .row.bottom img {
    width: calc((100% - 30px) / 4); /* 4 imágenes con 10px gap entre ellas */
  }

  .gallery1 img:hover {
    transform: scale(1.05);
  }

  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
  }

  .modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
  }

  .modal-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
  }

  .close-btn {
    position: absolute;
    top: 10px; right: 10px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
  }

  .close-btn:hover {
    background: rgba(255,255,255,0.7);
    color: black;
  }





/* Contenedor de la galería */
.gallery2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 90px; /* Espacio entre imágenes */
}

/* Estilo de cada ítem de la galería */
.gallery-item2 {
    width: 120px; /* Tamaño ajustable */
    text-align: center;
}

.gallery-item2 img {
    width: 80%; /* Imagen ocupa todo el ancho */
    height: auto; /* Mantiene proporción */
    transition: transform 0.3s ease; /* Animación al hacer hover */
}

.gallery-item2 img:hover {
    transform: scale(1.05); /* Efecto de zoom */
}

.gallery-item2 p {
    margin-top: 10px;
    font-size: 15px;
    color: #555;
	text-align: center;
	width: 100%;
	font-weight: bold;
}

/* 3 imagenes */
.image-container {
    display: flex;
    flex-wrap: wrap; /* Permite que las cajas pasen a una nueva línea */
    gap: 20px; /* Espacio entre las cajas */
    align-items: stretch; /* Asegura que ambas cajas tengan el mismo alto */
    width: 70%; /* Ancho del contenedor */
    margin: 0 auto; /* Centra el contenedor horizontalmente */
    padding-top: 80px;
    padding-bottom: 50px;
    max-width: 100%; /* Evita que el contenedor crezca más allá del ancho de la pantalla */
    box-sizing: border-box; /* Incluye el padding y border en el tamaño total */
    overflow: hidden; /* Oculta cualquier contenido que se salga del contenedor */
}

.image-box {
    flex: 1; /* Asegura que las cajas ocupen el mismo ancho */
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%; /* Evita que las imágenes se salgan del contenedor */
}

.image-box img {
    max-width: 100%;
    max-height: 100%; /* Evita que las imágenes sean más grandes que su contenedor */
    height: auto; /* Mantiene la proporción de las imágenes */
    object-fit: cover; /* Ajusta la imagen para llenar el espacio del contenedor si es necesario */
    box-sizing: border-box; /* Considera bordes y paddings */
}

.stacked-images {
    display: flex;
    flex-direction: column; /* Apila las imágenes verticalmente */
    justify-content: space-between; /* Distribuye uniformemente las imágenes */
    gap: 30px; /* Espacio entre las imágenes */
    flex-grow: 1; /* Asegura que la sección de imágenes apiladas ocupe el mismo espacio que la primera caja */
}

.stacked-images img {
    max-width: 100%; /* Asegura que las imágenes no se salgan horizontalmente */
    height: auto; /* Ajusta la altura proporcionalmente */
}

/* Responsivo: imágenes en columna */
@media screen and (max-width: 768px) {
    .image-container {
        flex-direction: column; /* Apila las cajas verticalmente */
        width: 90%; /* Reduce el ancho en dispositivos pequeños */
        margin-left: 5%;
        margin-right: 5%;
    }

    .image-box,
    .stacked-images {
        width: 100%; /* Ocupa todo el ancho disponible */
    }

    .image-box img {
        max-width: 100%; /* Asegura que las imágenes no se desborden */
        height: auto;
    }
}



.ventajas{
	padding-bottom: 10%;
	padding-top: 10%;
}
/* banner de perfil */
.imagen-seccion img {
  width: 100%;
  height: auto;
  display: block;
}


/* listado de tecnologia y componentes */
.listado-numerado {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 10%;
}

.listado-numerado li {
  margin-bottom: 20px;
}

.numero {
  color: #E52321; /* color del número */
  font-weight: bold;
  /* Sin margen para pegarlo */
}

.listado-numerado strong {
  font-weight: bold;
  font-size: 16px;
}

.listado-numerado p {
  margin: 5px 0 0 0; /* sin sangría, alinea al borde */
  font-size: 14px;
  color: #555;
}
.texto-barbieri{
	font-size: 1.2rem;
	font-weight: lighter;
	line-height: 1.8; /* 1.5 veces la altura de la fuente */

}
/* Teléfonos medianos (481px – 767px) */
@media screen and (min-width: 481px) and (max-width: 767px){
	.listado-numerado {
	margin-top: 0%;
	margin-bottom: 0%;
    }
}
/*  Color de Barbieri rojo dentro de textos*/
.nombre-barbieri {
  color: #E52321; /* rojo personalizado */
  font-weight: bold;
  font-size: 1.2rem;
}


/*  Galeria 3 de imagenes*/
 
    .gallery3 {
      display: flex;
      flex-direction: column;
    }

    .top-row, .bottom-row {
      display: flex;
      width: 100%;
	  margin-left: 0%;
	  margin-right: 0%;
	  gap: 8px;
    }

    /* FILA SUPERIOR */
    .top-row .left,
    .top-row .right {
      width: 42.5%;
      margin: 0 0px;
    }
.bottom-row{
	margin-top: 10px;
}

    .top-row .middle {
      width: 15%;
    }

    /* FILA INFERIOR */
    .bottom-row img {
      width: 33.333%;
      height: 200px;
      object-fit: cover;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .top-row img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      cursor: pointer;
      transition: transform 0.2s;
    }

  .gallery3 img:hover {
  transform: scale(1.03);
}

    /* MODAL */
    .modal2 {
      display: none;
      position: fixed;
      z-index: 999;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      align-items: center;
      justify-content: center;
    }

    .modal2-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
    }

    .modal2-content img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .close-btn2 {
      position: absolute;
      top: 10px; right: 10px;
      color: white;
      font-size: 30px;
      font-weight: bold;
      cursor: pointer;
      background: rgba(0,0,0,0.6);
      border-radius: 50%;
      width: 36px;
      height: 36px;
      text-align: center;
      line-height: 36px;
    }

    .close-btn2:hover {
      background: rgba(255,255,255,0.9);
      color: black;
    }

    @media (max-width: 768px) {
      .top-row, .bottom-row {
        flex-direction: column;
      }

      .top-row .left,
      .top-row .middle,
      .top-row .right,
      .bottom-row img {
        width: 100%;
        margin: 0 0 10px 0;
      }
    }


.contenedor-icono-barbieri .icono-arg {
	width: 80px;
	height: auto;
}

.equalizeContainer img{
	width: 50%;
	margin-left:0%;
	
}

.equalizeContainer h2 span{
	font-weight: lighter;
	font-size: 1.5rem;
	
}
.caracteristica{
	background: #000000;
	color: #FFFFFF;
	padding: 8px;
	margin-right: 50%;
}



/*  Seccione colores y texturas*/


.seccion-colores {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .imagen-grande {
      flex: 1 1 50%;
    }

    .imagen-grande img {
      width: 100%;
    }

    .contenido-texto {
      flex: 1 1 40%;
    }

    .contenido-texto p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .imagen-detalle {
      width: 100%;
      max-width: 400px;
    }

 .barra-info {
  display: flex;
  background-color: #eef0f3;
  margin-top: 10px;
  font-size: 14px;
  border-radius: 4px;
  overflow: hidden;
  align-items: stretch;
}

.icono-flecha {
  width: 48px;
  background-color: #E52321 ;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.icono-flecha span{
	color: #FFFFFF;
}

.texto-info {
  flex: 1;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.colores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 50px auto;
}

.color-item {
  height: 180px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  padding: 5px;
  box-sizing: border-box;
}

.color-muestra {
  width: 150px;
  height: 80px;
  border: 1px solid #aaa;
  margin-bottom: 6px;
  background-size: cover;
  background-position: center;
}


    .nogal {background-image: url('../img/barbieri/colores_nogal.jpg'); }
    .roble {background-image: url('../img/barbieri/colores_roble-dorado.jpg'); }
    .blanco {background: #FFFFFF; }
    .antracita {background-image: url('../img/barbieri/colores_antracita.jpg'); }
    .black-matt {background-image: url('../img/barbieri/colores_black_ulti_matt.jpg'); }

 


@media (max-width: 768px) {
  .seccion-colores {
    flex-direction: column;
    gap: 20px;
  }

  .imagen-grande, .contenido-texto {
    flex: 1 1 100%;
  }

  .imagen-detalle {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .barra-info {
    flex-direction: row;
    align-items: center;
  }

  .icono-flecha {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .texto-info {
    padding: 10px;
    font-size: 13px;
  }


}




/* Para pantallas medianas (tablets) */
@media (max-width: 768px) {
  .colores {
    max-width: 100%;
    gap: 15px;
  }
  .color-item {
    height: 100px;
    font-size: 12px;
  }
  .color-muestra {
    width: 90px;
    height: 40px;
    margin-bottom: 5px;
  }
}

/* Para pantallas pequeñas (móviles) */
@media (max-width: 480px) {
  .colores {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
    margin: 30px 10px;
  }
  .color-item {
    height: 90px;
    font-size: 11px;
    padding: 4px;
  }
  .color-muestra {
    width: 80px;
    height: 30px;
    margin-bottom: 4px;
  }
}

/*  Seccion de capas de laminas*/
.seccion-dos-columnas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  box-sizing: border-box;
  gap: 20px;
}

.texto {
  flex: 1;
  min-width: 250px;
  max-width: 30%; /* el texto ocupa el 30% */
}

.imagen {
  flex: 1;
  max-width: 70%;
}

.imagen img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  .seccion-dos-columnas {
    flex-direction: column;
    text-align: center;
  }

  .texto, .imagen {
    max-width: 100%;
  }
}

.numero2 {
  color: #000000; /* color del número */
  font-weight: bold;
  /* Sin margen para pegarlo */
}



/* Seccion de colores */
.bloque-fondo-imagen {
  position: relative;
  width: 100%;
  height: 700px; /* puedes ajustar según necesidad */
  background-image: url('../img/barbieri/img_5_colores.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.bloque-texto-derecha {
  width: 30%;
  padding: 20px;
  color: #FFFFFF;
}
.bloque-texto-derecha p {
  color: #FFFFFF;
}
/* Versión móvil: texto abajo a la izquierda */
@media (max-width: 768px) {
  .bloque-fondo-imagen {
    flex-direction: column;
    justify-content: flex-end;    /* lo lleva hacia abajo */
    align-items: flex-end;        /* lo alinea a la derecha */
    height: auto;
    padding: 20px;
	
  }

  .bloque-texto {
    width: 80%;
    text-align: right;
    margin-top: 20px;
	font-size: 10px;
  }
	.bloque-texto-derecha p {
	font-size: 10px;
	}
	.bloque-texto-derecha h2 {
		font-size: 12px;
	}
}


/* Seccion de descarga */

/* Fondo de la sección */
.seccion-dos-columnas .con-fondo {
  background-color: #e9e7e8;
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
}

/* Estructura general */
.seccion-dos-columnas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  box-sizing: border-box;
}

.columna-izquierda {
  flex: 1;
  max-width: 50%;
}
.columna-izquierda img {
	width: 8%;	
}
.columna-izquierda h2{
	font-weight: lighter;
}

.icono-catalogo{
	color:#FFFFFF;
	background: #E52321;
	padding: 10px;
	font-weight: lighter;
	width: 70%;
	
}

.columna-derecha {
  flex: 1;
  max-width: 50%;
}

.columna-derecha img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Icono PNG como botón */
.boton-icono {
  display: inline-block;
  margin-top: 20px;
  width: 100%;
}

.icono-descarga {
  width: 100%;
  height: auto;
}

/* Hover del ícono */
.boton-icono:hover {
}

/* Responsivo */
@media (max-width: 768px) {
  .seccion-dos-columnas {
    flex-direction: column;
  }

  .columna-izquierda, .columna-derecha {
    max-width: 100%;
    text-align: center;
  }

  .boton-icono {
    margin: 20px auto 0;
  }
	.icono-catalogo{
	width: 100%;
	
}
}

/* Seccion roja de barbieri*/
    .barbieri-section {
      background-color: #E52321;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      text-align: center;
      padding: 40px 20px;
    }

    .barbieri-content {
      max-width: 800px;
      width: 100%;
    }

    .barbieri-logo {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .barbieri-subtitle {
      font-size: 24px;
      margin-bottom: 20px;
	  text-align: center;
	  color: #FFFFFF;
	  font-weight: lighter;
    }

    .barbieri-site {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 30px;
	  text-align: center;
    }

    .barbieri-social a {
      color: white;
      font-size: 20px;
      margin: 0 10px;
      transition: color 0.3s ease;
    }

    .barbieri-social a:hover {
      color: #dddddd;
    }

.barbieri-img {
  max-width: 250px;
  height: auto;
  margin-bottom: 30px;
}
.barbieri-site a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
}

.barbieri-site a:hover {
  color: #1A67B0;
}

/* Banner final de barbieri */

.banner-barbieri {
  position: relative;
  height: 100vh;
  background: url('../img/barbieri/img_edificio.jpg') no-repeat center center / cover;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 3rem;
  color: #000;
  font-family: 'Arial', sans-serif;
}

.mensaje {
  background: white;
  padding: 1.5rem 2rem;
  max-width: 350px;
  border-left: 5px solid red;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mensaje .linea1 {
  font-size: 0.85rem;
  color: #E52321;
  margin-bottom: 0.5rem;
}

.mensaje h2 {
  color: #E52321;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.logo-barbieri {
  font-weight: bold;
  font-size: 1.2rem;
}

.barbieri {
  color: #E52321;
}

.deceuninck {
  color: #1A67B0;
}
.logo-barbieri img {
  max-width: 200px; /* ajusta el tamaño que prefieras */
  height: auto;
  display: block;
}

/* BOTON DESCARGA */
     .enlace-descarga {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      color: #132937; 
      font-weight: bold;
      font-family: sans-serif;
      gap: 8px;
      transition: color 0.3s;
	  margin-top: 20px;
	  margin-bottom: 20px;
    }

    .enlace-descarga:hover {
      color: #cc0000;
    }

    .enlace-descarga img {
      width: 50px;
      height: auto;
      display: block;
    }