/* =========================
   FUENTES
========================= */
@font-face {
    font-family: "Gilroy ExtraBold";
    src: url("./fonts/Gilroy-ExtraBold.woff2");
}
@font-face {
    font-family: "Gilroy Medium";
    src: url("./fonts/Gilroy-Medium.woff2");
}
/* =========================
   RESET
========================= */
*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
/* =========================
   GENERAL
========================= */
body{
   background: #000;
   color: #fff;
   font-family: "Plus Jakarta Sans", sans-serif;
   padding: 0;
   margin: 0;
   min-height: 100vh;
   display: flex;
   flex-direction: column;
   overflow-x: hidden;
}
/* =========================
   HERO
========================= */
.hero {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 50px;
   max-width: 1100px;
   margin: 0 auto;
   padding: 80px 50px; 
}
.foto > img{
   width: 400px;       
   max-width: none;
   height: auto;
   display: block;
}
 /* titiulo y párrafo */
.hero .contenido{
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   flex: 1;
}
.hero h1{
   font-family: "Gilroy ExtraBold", sans-serif;
   font-size: 60px;
   line-height: 1.05;
   color: #00FD68;
   margin-bottom: 20px;
   text-align: left;
}
.hero p{
   font-size: 16px;
   line-height: 1.8;
   max-width: 700px;
   margin-bottom: 40px;
   text-align: left;
}
.programas {
   display: flex;
   gap: 12px;
   align-items: left;
} 
.programas img {
   width: 65px;
   height: 65px;
   object-fit: contain;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    gap: 20px;
    text-align: center;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.1;
    text-align: center;
    margin: 0;
    width: 100%;
  }
  .foto {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .foto img {
    width: 230px;
    max-width: 80%;
    height: auto;
    display: block;
  }
  .hero p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto 15px;
    max-width: 90%;
  }
  .programas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .programas img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }
}
/* =========================
   info
========================= */
.info-tarjeta {
   display: flex;
   gap: 40px;
   justify-content: center;
   align-items: stretch;
   max-width: 1000px;
   margin: 60px auto 0;
   padding: 0 20px;
}
.linea-separadora {
   border: none;
   height: 3px;
   background: #1E5EFF;
   width: 100%;
   margin-top: 100px;
   margin-bottom: 80px;
   display: block;
}
.informacion {
   background-color: rgba(30, 94, 255, 0.20);
   border: 2px solid #1E5EFF;
   border-radius: 35px;
   padding: 30px;
   box-sizing: border-box;
   flex: 1;
}
.educacion {
   max-width: 440px;
}
.experiencia {
   max-width: 520px;
}
.informacion h3{
   font-family: "Gilroy Medium", sans-serif;
   font-size: 30px;
   color: #00FD68;
   margin-bottom: 20px;
   text-transform: uppercase;
   margin-bottom: 20px
}
/* Línea divisoria */
.informacion hr {
   border: 0;
   height: 1px;
   background-color: #00FD68;
   margin-bottom: 20px;
}
.informacion ul{
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 20px;
}
.informacion li{
   font-size: 14px;
   line-height: 1.4;
   text-align: left;
   color: #ffffff;
   position: relative;
   padding-left: 20px;
}
.informacion li::before { /*punto */
   content: ".";
   color: #00FD68; 
   font-weight: bold;
   font-size: 26px;      
   position: absolute;
   left: 2px;            
   top: -15px;
}
/* =========================
   RESPONSIVE - EDUCACIÓN Y EXPERIENCIA
   ========================= */
/* iPad */
@media (max-width: 1024px) {
   .info-tarjeta {
      flex-direction: column;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 700px;
      margin: 50px auto 0;
      padding: 0 30px;
   }
   .informacion {
      width: 100%;
      max-width: 100% !important;
   }
}
/* Celular */
@media (max-width: 768px) {
   .info-tarjeta {
      flex-direction: column;
      align-items: stretch;
      gap: 25px;
      width: 100%;
      max-width: 100%;
      margin: 40px auto 0;
      padding: 0 20px;
   }
   .informacion {
      width: 100%;
      max-width: 100% !important;
      padding: 25px;
      border-radius: 25px;
   }
   .informacion h3 {
      font-size: 25px;
   }
   .informacion li {
      font-size: 13px;
      line-height: 1.5;
   }
   .linea-separadora {
      margin-top: 60px;
      margin-bottom: 50px;
   }
}
/* =========================
   proyectos destacados desktop
========================= */
.proyectos-destacados {
   width: 569px;
   height: 108px;
   background: #1E5EFF;
   border-radius: 60px;
   color: #00FD68;
   font-size: 48px;
   font-family: "Gilroy ExtraBold", sans-serif;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 60px auto 0;
}
/* Contenedor general */
.portfolio-grid {
   width: fit-content;
   margin: 80px auto;
   display: grid;
   grid-template-columns:repeat(3, 360px);
   column-gap: 40px;
   row-gap: 70px;
}
/* Cada tarjeta */
.portfolio-grid article {
   display: flex;
   flex-direction: column;
}
/* Imagen */
.portfolio-grid article img {
   width: 360px;
   height: 203px;
   object-fit: cover;
   border-radius: 35px;
   display: block;
}
@media (max-width: 768px) { /* ADAPTACIÓN PARA CELULAR */
   .portfolio-grid {
      width: 90%;
      margin: 50px auto 80px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 45px;
   }
   .portfolio-grid article {
      width: 100%;
   }
   .portfolio-grid article img {
      width: 100%;
      height: auto;
      border-radius: 25px;
   }
   /* TÍTULO PROYECTOS DESTACADOS */
   .proyectos-destacados {
      width: 90%;
      height: auto;
      min-height: 108px;
      font-size: 42px;
      line-height: 1;
      text-align: center;
      padding: 15px 30px;
      box-sizing: border-box;
   }
}
/* =========================
   ADAPTACIÓN PARA IPAD
   ========================= */
@media (min-width: 769px) and (max-width: 1100px) {
   .portfolio-grid {
      width: 90%;
      margin: 60px auto 80px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 50px 30px;
   }
    .portfolio-grid article {
      width: 100%;
   }
    .portfolio-grid article img {
      width: 100%;
      height: auto;
      border-radius: 25px;
   }
}
/* Título */
.etiqueta h4 {
   margin-top: 20px;
   margin-bottom: 15px;
   color: #ffffff;
   font-size: 24px;
   font-family: "Gilroy ExtraBold", sans-serif;
   font-weight: normal;
}
/* Botón */
.button {
   width: 150px;
   height: 50px;
   background: #1E5EFF;
   border-radius: 25px;
   display: flex;
   justify-content: center;
   align-items: center;
   cursor: pointer;

   color: white;              
   text-decoration: none;         
   font-size: 18px;
   font-family: "Gilroy ExtraBold", sans-serif;
   text-transform: uppercase;
}

.button a h5 {
   margin: 0;
   font-size: 20px;
   font-family: "Gilroy ExtraBold", sans-serif;
   text-transform: uppercase;
}
.button:hover {
   background:#00FD68;
   color: #1E5EFF;
}  
/* =========================
   footer
========================= */
.footer {
   background: #1E5EFF;
   padding: 40px 20px;
   width: 100%;
   box-sizing: border-box;
}
.contenedor {
   max-width: 1200px;
   margin: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 40px;
}
.footer-logo img {
   width: 137px;
   display: block;
}
.info-contacto {
   display: flex;
   flex-direction: column;
}
.footer-titulo {
   color: #00FD68;
   font: bold 28px "Gilroy ExtraBold", sans-serif;
   text-transform: uppercase;
   margin: 0 0 10px;
}
.footer-lista {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 12px;
}
.fila-superior {
   display: flex;
   gap: 25px;
}
.footer-lista li {
   display: flex;
   align-items: center;
   gap: 8px;
}
.footer-lista p {
   color: #fff;
   font: 16px "Plus Jakarta Sans", sans-serif;
   margin: 0;
}
.icono-verde {
   width: 28px;
   height: 28px;
   object-fit: contain;
}
footer a {
   color: inherit;
   text-decoration: underline;
}
footer a:hover,
footer a:active{
   color: #00FD68;
}

@media (max-width: 768px) { /* celular */
   .footer {
      padding: 35px 20px;
   }
   .contenedor {
      flex-direction: column;
      gap: 25px;
      text-align: center;
   }
   .footer-logo img {
      width: 100px;
   }
   .info-contacto {
      align-items: center;
   }
   .footer-titulo {
      font-size: 22px;
   }
   .fila-superior {
      flex-direction: column;
      gap: 12px;
      align-items: center;
   }
   .footer-lista p {
      font-size: 14px;
   }
   .icono-verde {
      width: 24px;
      height: 24px;
   }
}
/* =========================
  banners de portfolio desktop
========================= */
/*titulo de banners*/
.texto-branding,
.texto-redes,
.texto-uxui,
.texto-editorial,
.texto-fotografia{
   font-family: "Gilroy ExtraBold", sans-serif;
   font-size: 100px;
   font-weight: 800;
   color: #ffffff;
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   white-space: nowrap;
}
.banner-changomas,
.banner-fotografia,
.banner-redes,
.banner-branding,
.banner-uxui,
.banner-editorial{
   width: 100%;
   height: 348px;
   background: linear-gradient(90deg, #1E5EFF 0%, #000000 100%);
   position: relative;
   overflow: hidden;
   flex-wrap: wrap;
}
.icono-fondo {
   width: 434px;
   height: 348px;
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   opacity: 0.20;
   object-fit: contain;
   pointer-events: none;
}
.logo-principal {
   width: 528px;
   height: 132px;
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   object-fit: contain;
}
/* =========================
   IPAD
   ========================= */
@media (max-width: 1024px) {
   .texto-branding,
   .texto-redes,
   .texto-uxui,
   .texto-editorial,
   .texto-fotografia {
      font-size: 70px;
      text-align: center;
      width: 100%;
      white-space: nowrap;
   }
   .banner-changomas,
   .banner-fotografia,
   .banner-redes,
   .banner-branding,
   .banner-uxui,
   .banner-editorial {
      height: 300px;
   }
   .icono-fondo {
      width: 330px;
      height: 300px;
   }
   .logo-principal {
      width: 430px;
      height: auto;
   }
}
/* MOBILE */
@media (max-width: 768px) {
   .texto-branding,
   .texto-redes,
   .texto-uxui,
   .texto-editorial,
   .texto-fotografia {
      font-size: 42px;
      text-align: center;
      width: 100%;
      white-space: nowrap;
   }
   .banner-changomas,
   .banner-fotografia,
   .banner-redes,
   .banner-branding,
   .banner-uxui,
   .banner-editorial {
      width: 100%;
      height: 220px;
   }
   .icono-fondo {
      width: 230px;
      height: 220px;
      left: -20px;
      opacity: 0.20;
   }
   .logo-principal {
      width: 280px;
      height: auto;
   }
}
/* hoja changomas*/
/* SECCION MASCOTAS */
.contenedor-mascotas {
  display:flex;
  flex-direction:column;
  width:100%;
  max-width:1200px;
  margin:0 auto;
}
.header-titulo {
  align-self:flex-start;
  margin:40px 0;
  margin-left:20px;
}
.header-titulo h2 {
  font-family:'Gilroy',sans-serif;
  font-size:25px;
  font-weight:500;
  color:#fff;
  border:2px solid #fff;
  border-radius:60px;
  padding:15px 35px;
  text-align:center;
  margin-top:40px;
}
.imagenes-mascotas {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  width:100%;
  margin:0 auto;
  padding:0 20px;
  box-sizing:border-box;
}
.img-celular {
  width:100%;
  max-width:280px;
  height:auto;
}
.img-flyer {
  width:100%;
  max-width:380px;
  height:auto;
}
/* SECCION A4 */
.contenedor-carteles {
  display:flex;
  flex-direction:column;
  width:100%;
  max-width:1200px;
  margin:80px auto 0;
  box-sizing:border-box;
}
.header-titulo-a4 {
  display:flex!important;
  justify-content:flex-end!important;
  width:100%;
  margin-bottom:25px;
}
.header-titulo-a4 h2 {
  font-family:'Gilroy',sans-serif;
  font-size:25px;
  font-weight:500;
  color:#fff;
  border:2px solid #fff;
  border-radius:60px;
  padding:15px 45px;
  text-align:center;
  margin:0;
}
.imagenes-carteles {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:50px;
  width:100%;
  padding:0 20px;
  box-sizing:border-box;
}
.img-cartel {
  width:100%;
  max-width:397px;
  height:auto;
}
/* SECCION AIRE LIBRE */
.contenedor-catalogo {
  display:flex;
  flex-direction:column;
  width:100%;
  max-width:1400px;
  margin:80px auto 0;
  box-sizing:border-box;
}
.header-titulo-catalogo {
  align-self:flex-start;
  margin:40px 0;
  margin-left:20px;
}
.header-titulo-catalogo h2 {
  font-family:'Gilroy',sans-serif;
  font-size:25px;
  font-weight:500;
  color:#fff;
  border:2px solid #fff;
  border-radius:60px;
  padding:15px 35px;
  text-align:center;
  margin-top:40px;
}
.img-catalogo {
  width:100%;
  max-width:1000px;
  height:auto;
  margin:auto;
}
/* CARRUSEL BANNER / NEWS / REDES */
.contenedor-carrusel {
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:20px;
}
.titulo-seccion-piezas {
  font-family:'Gilroy',sans-serif;
  font-size:25px;
  font-weight:500;
  color:#fff;
  padding:15px 45px;
  margin:50px 0 25px;
  text-align:center;
}
.columna-carrusel ul {
  display:flex;
  gap:15px;
  padding:10px 0;
  list-style:none;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:thin;
}
.columna-carrusel ul li {
  flex:0 0 70%;
  scroll-snap-align:center;
}
.columna-carrusel ul li img {
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
}

/* IPAD + CELULAR */
@media (max-width:1024px) {
  .imagenes-mascotas,
  .imagenes-carteles {
    flex-direction:column;
    gap:25px;
  }
  .img-flyer,
  .img-cartel {
    max-width:90%;
  }
  .img-celular {
    max-width:65%;
  }
  .img-catalogo {
    max-width:85%;
  }
  .header-titulo,
  .header-titulo-a4,
  .header-titulo-catalogo {
    width:100%;
    align-self:center;
    justify-content:center!important;
    margin:30px 0;
    text-align:center;
    box-sizing:border-box;
  }
  .header-titulo h2,
  .header-titulo-a4 h2,
  .header-titulo-catalogo h2 {
    width:fit-content;
    max-width:90%;
    font-size:21px;
    padding:12px 20px;
    margin:0 auto;
    text-align:center;
    box-sizing:border-box;
  }
   .contenedor-carrusel {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }
  .titulo-seccion-piezas {
    font-size: 20px;
    padding: 10px;
    margin: 30px 0 20px;
  }
  .columna-carrusel ul {
    gap: 12px;
    padding: 5px 0 15px;
  }
  .columna-carrusel ul li {
    flex: 0 0 92%;
  }
  .columna-carrusel ul li img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/* =========================
  hoja fotografia
========================= */
@font-face {
   font-family: 'Gilroy';
   src: url('fuentes/Gilroy-ExtraBold.woff2') format('woff2');
   font-weight: 800;
}
body{
  background:#000;
  color:#fff;
  font-family:'Gilroy',sans-serif;
}
/* SECCIONES */
section{
  margin-bottom:150px;
}
/* TITULOS DE CATEGORIAS */
.categoria{
  width:fit-content;
  margin:0 auto 35px;
  padding:15px 35px;
  border:2px solid #fff;
  border-radius:60px;
  color:#fff;
  font-family:'Gilroy',sans-serif;
  font-size:25px;
  font-weight:500;
  text-align:center;
}
/* ESPACIO DESPUES DEL BANNER */
.carrusel-subte{
  margin-top:120px;
}
/* CARRUSEL */
.carrusel{
  position:relative;
  overflow:hidden;
  width:1050px;
  height:700px;
  margin:0 auto;
}
/* FLECHAS */
.flecha{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
  width:45px;
  height:45px;
  border:none;
  border-radius:50%;
  background:rgba(0,0,0,.5);
  color:#fff;
  font-size:35px;
  cursor:pointer;
}
.anterior{
  left:20px;
}
.siguiente{
  right:20px;
}
.flecha:hover{
  background:rgba(0,0,0,.75);
}
/* PUNTITOS */
.carrusel label{
  position:relative;
  display:inline-block;
  width:14px;
  height:14px;
  border-radius:50%;
  border:2px solid #fff;
  margin-right:8px;
  cursor:pointer;
  background:transparent;
  z-index:20;
  top:calc(100% - 40px);
  left:20px;
}
/* PUNTITO ACTIVO */
.carrusel input:checked + label{
  background:#fff;
}
/* SLIDES */
.slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  transform:translateX(-100%);
  transition:transform .4s ease;
  z-index:1;
}
/* IMAGENES */
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
/* MOVER LAS DEMAS */
.carrusel input:checked ~ .slide{
  transform:translateX(100%);
}
/* MOSTRAR LA ACTIVA */
.carrusel input:checked + label + .slide{
  transform:translateX(0);
}
/* TABLET */
@media(max-width:1024px){
  .carrusel{
    width:90%;
    height:auto;
    aspect-ratio:1050 / 700;
  }
  .categoria{
    font-size:22px;
    padding:13px 30px;
    margin-bottom:30px;
  }
  .carrusel-subte{
    margin-top:100px;
  }
  .carrusel-subte,
  .carrusel-books,
  .carrusel-fiesta,
  .carrusel-producto{
    margin-bottom:80px;
  }
}
/* CELULAR */
@media(max-width:600px){
  .categoria{
    max-width:85%;
    font-size:19px;
    padding:12px 22px;
    white-space:normal;
  }
  .carrusel{
    width:92%;
    aspect-ratio:1050 / 700;
  }
  .carrusel-subte{
    margin-top:80px;
  }
  .flecha{
    width:40px;
    height:40px;
    font-size:30px;
  }
  .anterior{
    left:10px;
  }
  .siguiente{
    right:10px;
  }
}
/* =========================
  hoja redes sociales
========================= */
@font-face {
   font-family: 'Gilroy';
   src: url('fuentes/Gilroy-ExtraBold.woff2') format('woff2');
   font-weight: 800;
}
body{
  background:#000000;
  color:white;
  font-family:'Gilroy' sans-serif;
}
/*seccion redes bierland*/
.contenedor-bierland {
   max-width: 1200px;
   margin: 60px auto;
   padding: 0 20px;
}
.titulo1bierland {
   width: 100%;
   display: flex;          
   justify-content: center; 
   align-items: center;     
   margin-top: 100px;
   margin-bottom: 60px;
}
.titulo-seccion-redes1 {
   font-family: 'Gilroy', sans-serif;
   font-size: 25px;
   font-weight: 500;
   color: #ffffff;
   border: 2px solid #ffffff;
   border-radius: 60px;
   padding: 15px 35px;
   margin-top: 40px;      
   display: inline-block;          
   margin-left: auto;       
   margin-right: auto;      
   text-align: center;
}
.imagenes-bierland {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 30px;
}
.imagenes-bierland img  {
   width: auto;
   max-width: 280px; 
   height: 550px;
   object-fit: contain;
}
/*seccion redes bierland- celular y posteos*/
.contenedor-bierland2 {
   max-width: 1200px;
   margin: 40px auto;
   padding: 0 20px;
}
.contenedor-feed {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 40px;
}
.feed-celular {
   width: 100%;
   max-width: 280px;
   height: auto;
}
.feed-posteos {
   width: 100%;
   max-width: 650px;
   height: auto;
}
/* RESPONSIVE CELULAR */
@media (max-width: 768px) {
   .imagenes-bierland {
      flex-direction: column;
      align-items: center;
      gap: 20px;
   }
   .imagenes-bierland img {
      max-width: 250px;
      height: 500px;
      margin: 0 auto;
   }
   .contenedor-feed {
      flex-direction: column;
      align-items: center;
      gap: 30px;
   }
   .feed-celular {
      max-width: 250px;
   }
   .feed-posteos {
      max-width: 650px;
   }

}
/*seccion redes nuria*/
.contenedor-nuria {
   max-width: 1200px;
   margin: 30px auto;
   padding: 0 20px;
}
.titulo2nuria {
   max-width: 600px;
   margin-top: 70px;
   margin-bottom: 60px;
   margin-left: auto;  
   text-align: right;
}
.titulo-seccion-redes2 {
   font-family:'Gilroy', sans-serif;
   font-size: 25px;
   font-weight: 500;
   color: white;
   padding: 20px 0;
   display: inline-block;
   line-height: 1.3;
}
.imagen-nuria{
   display: flex;
   justify-content: center;
   width: 100%;
}
.img-nuria {
   width: 100%;
   max-width: 1100px; 
   height: auto;
   object-fit: contain;
}
/*seccion redes calzinari*/
.contenedor-calzinari {
   max-width: 1200px;
   margin: 80px auto;
   padding: 0 20px;
}
.titulo3calzinari {
   align-self: flex-start;
   margin-top: 70px;
   margin-bottom: 60px;
}
.titulo-seccion-redes3 {
   font-family:'Gilroy', sans-serif;
   font-size: 25px;
   font-weight: 500;
   color: white;
   padding: 20px 45px;
   display: inline-block;
   line-height: 1.3;
}
.imagen-calzinari {
   display: flex;
   justify-content: center;
   width: 100%;
}
.img-calzinari {
   width: 100%;
   max-width: 1100px; 
   height: auto;
   object-fit: contain;
}
/*carrusel calzinari*/
.contenedor-calzinari2 {
   max-width: 1200px;
   margin: 20px auto;
   padding: 0 20px;
}
.contenedor-posteos {
   width: 100%;
   overflow: hidden;
}
.contenedor-posteos ul {
   display: flex;
   gap: 30px;               
   list-style: none;
   padding: 0;
   margin: 0;
   overflow-x: auto;        
   scroll-snap-type: x mandatory;
   scroll-behavior: smooth;
}
.contenedor-posteos ul::-webkit-scrollbar {
   height: 6px;
}
.contenedor-posteos ul::-webkit-scrollbar-track {
   background: #222222;
   border-radius: 10px;
}
.contenedor-posteos ul::-webkit-scrollbar-thumb {
   background: #ffffff;
   border-radius: 10px;
}
/* Cada ítem del carrusel */
.contenedor-posteos li {
   flex: 0 0 auto;         
   scroll-snap-align: center; 
}
/* Las imágenes por separado */
.contenedor-posteos img {
   width: 100%;
   max-width: 350px;        
   height: auto;
   object-fit: contain;
   border-radius: 20px;     
}
/*posteos Bellizzi*/
.contenedor-bellizzi {
   max-width: 1200px;
   margin: 40px auto;
   padding: 0 20px;
}
.titulo4bellizzi{
   width: 100%;
   display: flex;          
   justify-content: center; 
   align-items: center;     
   margin-top: 100px;
   margin-bottom: 60px;
}
.titulo-seccion-redes4 {
   font-family: 'Gilroy', sans-serif;
   font-size: 25px;
   font-weight: 500;
   color: #ffffff;
   border: 2px solid #ffffff;
   border-radius: 60px;
   padding: 15px 35px;
   margin-top: 40px;      
   display: inline-block;          
   margin-left: auto;       
   margin-right: auto;      
   text-align: center;
}
.bloque-multimedia-bellizzi { /*para que posteo y video esten siempre al lado*/
   display: flex;
   gap: 20px;                
   justify-content: center;
   align-items: center;
   flex-wrap: nowrap;         
   width: 100%;
}
.imagen-bellizzi {
   flex: 2;                   
   min-width: 0;              
}
.contenedor-video-bellizzi {
   flex: 1;                   
   min-width: 0;              
}
.img-bellizzi,
.video-bellizzi {
   width: 100%;
   height: auto;
   object-fit: contain;      
   border-radius: 20px;       
   display: block;
}
@media (max-width: 1024px) {
  .bloque-multimedia-bellizzi {
    flex-direction: column;
  }
  .imagen-bellizzi,
  .contenedor-video-bellizzi {
    width: 75%;
  }
  .titulo-seccion-redes4 {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .imagen-bellizzi {
    width: 85%;
  }
  .contenedor-video-bellizzi {
    width: 55%;
  }
}
@media (max-width: 400px) {
  .titulo4bellizzi,
  .titulo4calzinari {
    width: 100%;
  }
  .titulo4bellizzi .titulo-seccion-redes4,
  .titulo4calzinari .titulo-seccion-redes4 {
    width: 280px;
    max-width: 85%;
    line-height: 1.2;
    padding: 12px 20px;
    box-sizing: border-box;
  }
}
/* =========================
  hoja branding
========================= */

@font-face {
   font-family: 'Gilroy';
   src: url('fuentes/Gilroy-ExtraBold.woff2') format('woff2');
   font-weight: 800;
}
body{
  background:#000000;
  color:white;
  font-family:'Gilroy' sans-serif;
}
.contenedor-astrop,
.contenedor-infra,
.contenedor-lorem,
.contenedor-zave{
  max-width: 1300px; margin: 0 auto;
  padding: 100px 0;
} 
.titulo1astrop{
   text-align:center;
   margin-bottom:60px;
}
.titulo-seccion-marca1{
   font-family: 'Gilroy', sans-serif;
   font-size: 25px;
   font-weight: 400;
   width: fit-content;
   white-space: nowrap;
   margin: 0 auto 30px;
   padding: 15px 50px;
   border: 2px solid #fff;
   border-radius: 60px;
   color: #fff;
}
.titulo1astrop h4 {
   font-family: 'Gilroy', sans-serif;
   font-size: 17px;
   line-height: 1.4;
   font-weight: 400;
   color: #fff;
   margin: 0;
}  
.titulo3lorem,
.titulo1astrop{
   width: 700px;
   max-width: 90%;
   margin: 0 auto;
   color: #fff;
   font-size: 17px;
   line-height: 1.4;
   margin-bottom: 50px;
}
/* GALERÍA */
.imagenes-astrop,
.imagenes-infra,
.imagenes-lorem{
   width:1204px;
   margin:0 auto;
   display:grid;
   grid-template-columns:repeat(2, 587px);
   gap:30px;
   justify-content:center;
}
/* Portada */
.img-portada1,
.img-portada2,
.img-portada3{
   width:1204px;
   height:500px;
   grid-column:1 / 3;
   object-fit:cover;
   border-radius:40px;
}
.img-aplicaciones,
.img-aplicaciones_infra,
.img-aplicaciones_lorem{
   width:587px;
   height:340px;
   object-fit:cover;
   border-radius:20px;
}
/* Posteos */
.img-aplicaciones:nth-last-child(-n+2){
   width:587px;
   height:700px;
   object-fit:cover;
   border-radius:20px;
}
/* infra */
.titulo2infra{
   align-self: flex-start;
   margin-top: 70px;
   margin-bottom: 60px;
}
.titulo3lorem{
   max-width: 600px;
   margin-top: 70px;
   margin-bottom: 60px;
   margin-right: 10px; 
   text-align: right;
}
.titulo-seccion-marca2,
.titulo-seccion-marca3{
   font-family:'Gilroy', sans-serif;
   font-size: 25px;
   font-weight: 500;
   color: white;
   padding: 20px 0;
   display: inline-block;
   line-height: 1.3;
}

/* TABLET + MOBILE */
@media (max-width: 768px){
  .contenedor-astrop,
  .contenedor-infra,
  .contenedor-lorem,
  .contenedor-zave{
    width:90%;
    padding:60px 0;
  }
  .titulo1astrop,
  .titulo3lorem{
    width:100%;
    max-width:100%;
    margin:0 auto 35px;
    text-align:center;
  }
  .titulo-seccion-marca1{
    font-size:18px;
    padding:10px 25px;
    white-space:normal;
  }
  .titulo1astrop h4{
    font-size:14px;
  }
  .titulo2infra,
  .titulo3lorem{
    margin:40px auto;
    text-align:center;
  }
  .titulo-seccion-marca2,
  .titulo-seccion-marca3{
    font-size:20px;
    padding:10px 0;
  }
  /* GALERÍAS */
  .imagenes-astrop,
  .imagenes-infra,
  .imagenes-lorem{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:20px;
  }
  .img-portada1,
  .img-portada2,
  .img-portada3,
  .img-aplicaciones,
  .img-aplicaciones_infra,
  .img-aplicaciones_lorem,
  .img-aplicaciones:nth-last-child(-n+2){
    width:100%;
    height:auto;
    object-fit:contain;
    border-radius:20px;
  }
}
/*  hoja uxui */
/* el contendor lo tenes junto a contendor-revista*/
.contenedor-abogados {
   max-width: 1300px;
   margin: 0 auto;
   padding: 150px 0 100px;
}
.titulozave,
.tituloabogados {
   text-align: center;
}
.titulo-seccion-zave2 {
   margin-top: 70px !important;
   font-size: 19px
}
.titulo-seccion-zave2{
   text-align:center;
   margin-bottom:60px;
}
.titulo-seccion-zave1,
.titulo-seccion-abogados {
   font-family: "Gilroy ExtraBold", sans-serif;
   font-size: 25px;
   color: #fff;
   padding: 20px 50px;
   border: 2px solid #fff;
   border-radius: 50px;
   display: inline-block;
   margin-bottom: 25px;
}
.titulozave h4 {
   color: #fff;
   font-family: 'Gilroy', sans-serif;
   font-size: 25px;
   font-weight: 300;
   line-height: 1.2;
   margin: 0 auto 25px;
}
.imagenes-zave,
.imagenes-abogados {
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 100%;
}
.imagenes-zave img,
.imagenes-abogados img {
   width: 100%;
   max-width: 1100px;
   height: auto;
   object-fit: contain;
   margin-bottom: 40px;
   border-radius:20px;
}
.bloque-chatbot-zave {
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: 150px;
   width: 100%;
}
.imagen-chatbot {
   width: 100%;
   display: flex;
   justify-content: center;
}
.imagen-chatbot img {
   width: 60%;
   max-width: 500px;
   height: auto;
   display: block;
}
/* Fila de celulares */
.celulares-abogados {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 40px;
   width: 100%;
}
.celulares-abogados img {
   width: 45%;
   max-width: 500px;
   height: auto;
   object-fit: contain;
}
@media (max-width: 600px) {

  .titulo-seccion-zave1,
  .titulo-seccion-abogados {
    font-size: 18px;
    padding: 12px 15px;
    white-space: normal;
  }

  .titulozave h4,
  .titulo-seccion-zave2 {
    font-size: 17px;
  }

}
/* =========================
  hoja editorial
========================= */
@font-face {
   font-family: 'Gilroy';
   src: url('fuentes/Gilroy-ExtraBold.woff2') format('woff2');
   font-weight: 800;
}

body{
  background:#000000;
  color:white;
  font-family:'Gilroy' sans-serif;
}
/*seccion revista parti y ayd*/
.contenedor-revista {
   display: flex;
   flex-direction: column;
   width: 100%;
   max-width: 1300px;
   margin: 0 auto;
   padding: 0 20px;
   box-sizing: border-box;
}
.titulo1 {
   align-self: flex-start;
   margin-top: 100px;
   margin-bottom: 60px;
}
.titulo-seccion-revista1 {
   font-family:'Gilroy', sans-serif;
   font-size: 25px;
   font-weight: 500;
   color: white;
   border: 2px solid white;
   border-radius: 999px;
   padding: 20px 45px;
   display: inline-block;
   line-height: 1.3;
}
.imagenes-revista-parati-ayd {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   gap: 80px;
   width: 100%;
}
.img-parati {
   width: 100%;
   max-width: 680px;       
   height: auto;            
   object-fit: contain;
}
.img-ayd {
   width: 100%;
   max-width: 480px;
   height: auto;
   object-fit: contain;
}
@media (max-width: 1024px) {
  .imagenes-revista-parati-ayd {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
/*seccion revista budget*/
.contenedor-3revistas {
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 100%;
   max-width: 1600px;
   margin: 0 auto;
   padding: 0;
   box-sizing: border-box;
}
.titulo2 {
   align-self: flex-end;
   text-align: right;
   margin-top: 120px;
   max-width: 600px;
   margin-bottom: 60px;
}
.titulo-seccion-revista2 {
   font-family:'Gilroy', sans-serif;
   font-size: 25px;
   font-weight: 500;
   color: white;
   padding: 20px 0;
   display: inline-block;
   line-height: 1.3;
}
.imagenes-revista-budget {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   margin-top: 0 auto;
}
.img-budget {
   display: block;
   width: 100%;
   max-width: 1100px;     
   height: auto;       
}
/*para celular*/
@media (max-width: 768px) {
   .titulo2 {
      align-self: center; 
      text-align: center;
   }
   .titulo-seccion-revista2 {
      text-align: center;
      font-size: 20px;
   }
}
/*seccion video*/
.titulo3 {
   align-self: flex-start;
   margin-top: 120px;
   margin-bottom: 60px;
}
.titulo-seccion-revista3 {
   font-family:'Gilroy', sans-serif;
   font-size: 25px;
   font-weight: 500;
   color: white;
   padding: 20px 45px;
   display: inline-block;
   line-height: 1.3;
}
.contenedor-video-revista {
   position: relative;
   width: 100%;
   max-width: 1300px; 
   height: 700px;    
   margin: 40px auto; 
   overflow: hidden;  
   border-radius: 12px; 
}
.video-revista, 
.video-zave {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}
/* Adaptación para pantallas de celulares */
@media (max-width: 768px) {
    .contenedor-video-revista {
        height: 350px; 
        margin: 20px auto;
    }
}
/* ==========================================
   EFECTO  REUTILIZABLE (Escala)
   ========================================== */
.efecto-escala {
   transition: transform 0.4s ease; /* Hace que el movimiento sea suave */
   cursor: pointer;                 /* Pone la manito al pasar el mouse */
}
.efecto-escala:hover {
   transform: scale(1.1); /* Se agranda un 10% */
   z-index: 10;           /* Evita que quede abajo de otros elementos al crecer */
}
/* ==========================================
   EFECTO  REUTILIZABLE (desplazamientos laterales)
   ========================================== */
.efecto-mover-x {
   transition: transform 0.5s ease; /* Transición suave */
   cursor: pointer;
}
.efecto-mover-x:hover {
   /* Se mueve 20px hacia la derecha */
   transform: translateX(20px); 
}
.efecto-moverx {
   transition: transform 0.5s ease; /* Transición suave */
   cursor: pointer;
}
.efecto-moverx:hover {
   /* Se mueve 20px hacia la izquierda */
   transform: translateX(-20px); 
}
/* ==========================================
   EFECTO REUTILIZABLE: "Todos menos yo" (Desenfoque)
   ========================================== */
/* 1. Transición suave de tarjetas */
.efecto-desenfoque-hijo {
   transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
   cursor: pointer;
}
/* 2. Cuando pasamos el mouse por el CONTENEDOR, TODOS los hijos se desenfocan */
.efecto-desenfoque-padre:hover .efecto-desenfoque-hijo {
   opacity: 0.4;         /* Se vuelven más transparentes */
   filter: blur(4px);    /* Se desenfocan un poco */
}
/* 3. El hijo que tiene el mouse encima recupera su estado y resalta */
.efecto-desenfoque-padre:hover .efecto-desenfoque-hijo:hover {
   opacity: 1;
   filter: blur(0);
   transform: scale(1.05); /* sutil aumento para romper más el fondo */
}
/* TEXTOS INTERIORES + HERO */
@media(max-width: 600px){
  .hero p,
  .carrusel h4,
  .categoria,
  .header-titulo h2,
  .header-titulo-a4 h2,
  .header-titulo-catalogo h2,
  .titulo-seccion-piezas,
  .titulo1astrop h4,
  .titulo3lorem,
  .titulo-seccion-marca1,
  .titulo-seccion-marca2,
  .titulo-seccion-marca3,
  .titulo-seccion-zave1,
  .titulo-seccion-zave2,
  .titulo-seccion-abogados,
  .titulozave h4,
  .titulo-seccion-redes1,
  .titulo-seccion-redes2,
  .titulo-seccion-redes3,
  .titulo-seccion-redes4,
  .titulo-seccion-revista1,
  .titulo-seccion-revista2,
  .titulo-seccion-revista3 {
   font-size:13px;
   line-height:1.5;
   text-align:center;
   word-break:normal;
   overflow-wrap:normal;
   hyphens:none;
  }
}