/* === ESTILO GENERAL === */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
main {
  padding: 20px;
}
/*Estilo del menu de navegacion*/
/* --- Navegación Principal --- */
/* === Navbar base === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #8dd8dc;
  padding: 10px 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex-wrap: wrap;
  font-family: 'Segoe UI', sans-serif;
  z-index: 999;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #2b7b80;
}

/* Estilo general del dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
  list-style: none;
  margin: 0;
  padding: 10px;
}

/* Mostrar en hover en escritorio */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🔑 ajusta columnas */
    gap: 10px;
    width: 600px;          /* ancho del mega menú */
    max-height: 400px;     /* alto máximo */
    overflow-y: auto;      /* scroll si hay demasiadas */
  }
}

/* Enlaces dentro del menú */
.dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
}

/* En móvil: el menú aparece como lista vertical con scroll */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    max-height: 300px;  /* 🔑 scroll interno */
    overflow-y: auto;
    display: none;
    grid-template-columns: 1fr; /* lista simple */
    width: 100%;
  }

  .dropdown.open .dropdown-menu {
    display: block; /* el script ya abre/cierra con .open */
  }
}


/* === Barra de búsqueda === */
.search-box {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-box input {
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid #aaa;
  outline: none;
  font-size: 14px;
}

.search-box button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* === Botón de menú hamburguesa === */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* === Responsive === */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #2b7b80;
    padding: 10px 0;
    border-top: 1px solid #ccc;
  }

  .nav-links.active {
    display: flex;
  }

  .search-box {
    width: 100%;
    margin-top: 10px;
  }

  .dropdown-menu {
    position: static;
    background: none;
    box-shadow: none;
    padding-left: 15px;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
}
/* === RESPONSIVE (celulares y tablets) === */
@media (max-width: 768px) {
  header {
      flex-direction: column;
      align-items: flex-start;
  }

  nav ul {
      flex-direction: column;
      width: 100%;
  }

  nav ul li {
      margin: 10px 0;
  }

  .intro-text, .intro-image,
  .about-text, .about-image {
      flex: 1 1 100%;
      text-align: center;
  }

  .intro-text {
      padding: 10px;
  }

  .about-text {
      padding: 10px;
  }
}
/* === MENÚ HAMBURGUESA CON ANIMACIÓN === */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: black;
}

.nav-menu {
  transition: max-height 0.4s ease-in-out;
  overflow: hidden;
  max-height: 0;
}

/* Mostrar menú cuando está activo */
.nav-menu.active {
  max-height: 300px; /* suficiente para mostrar todos los enlaces */
}

@media (max-width: 768px) {
.menu-toggle {
  display: block;
}

.nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: #bdeaec;
  padding: 10px 0;
  border-top: 1px solid #ccc;
}

.nav-links.active {
  display: flex;
}

.dropdown-menu {
  position: static;
  box-shadow: none;
  background: transparent;
}

.dropdown:hover .dropdown-menu {
  display: none;
}

.dropdown.open .dropdown-menu {
  display: block;
}
}
@media (min-width: 769px) {
  .nav-menu {
      max-height: none !important;
      overflow: visible;
  }

  .nav-menu ul {
      flex-direction: row;
      justify-content: flex-end;
  }

  .menu-toggle {
      display: none;
  }
}

/*Estilos para la seccion de pie de pagina*/
footer {
  background-color: #f9f9f9;
  padding: 2rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}


.footer-top blockquote {
  font-size: 1.5rem;
  font-weight: 300;
  max-width: 100%;
  line-height: 1.5;
  margin: 0;
  white-space: wrap; /* 🔥 evita salto de línea */
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li,
.footer-column p {
  font-size: 1rem;
  margin: 0.3rem 0;
}

.footer-bottom {
  text-align: center;
  font-size: 0.95rem;
  font-weight: bold;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%;
  }
}
/* === Footer QR === */
.footer-qr {
  text-align: center;
}

.footer-qr h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.footer-qr .qr-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border: 2px solid #000;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
  transition: transform 0.3s ease;
}

.footer-qr .qr-image:hover {
  transform: scale(1.05);
}

/* Ajuste del grid de columnas del footer */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  align-items: start;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-qr {
    margin-top: 20px;
  }

  .footer-qr .qr-image {
    width: 90px;
    height: 90px;
  }
}

/* CONTENEDOR DE LOS QR */
.qr-container{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:nowrap; /* 🔥 evita que se bajen */
}

/* CADA QR */
.qr-item{
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* TEXTO DEBAJO DEL QR */
.qr-text{
  font-size:12px;
  margin-top:5px;
  color:#333;
}
/* ======= INTRO TEXTIL ======= */
.intro-textil {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #e6f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
}

.intro-textil-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.intro-textil-content h1 {
  font-size: 2.5rem;
  color: #007b7f;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.franja-titulo-textil{
  background:#91eba1; /* verde */
  padding:15px 20px;
  margin-bottom:25px;
}

/* Ajuste del h1 dentro de la franja */
.franja-titulo-textil h1{
  margin:0;
  color:#340163; /* texto blanco para contraste */
  font-size:2rem;
  text-transform:uppercase;
  letter-spacing:2px;
}
.intro-textil-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.intro-textil-imagen img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ======= RESPONSIVO ======= */
@media (max-width: 768px) {
  .intro-textil-content h1 {
    font-size: 2rem;
  }

  .intro-textil-content p {
    font-size: 1rem;
  }

  .intro-textil-imagen img {
    max-width: 100%;
  }
}
/* CONTENEDOR PRINCIPAL */
.intro-textil-main{
  display:flex;
  gap:30px;
  align-items:stretch; /* 🔥 esto es lo importante */
  max-width:1200px;
  margin:auto;
}

/* IMAGEN */
/* IMAGEN MÁS GRANDE */
.intro-textil-imagen{
  flex:1.6;
}

/* LISTA MÁS PEQUEÑA */
.maquinas-container{
  flex:1;
}

.intro-textil-imagen img{
  width:100%;
  height:100%;
  object-fit:cover; /* 🔥 llena sin deformar */
  border-radius:8px;
}
.maquinas-container{
  flex-direction:column;
  justify-content:space-between; /* distribuye mejor */
}

/* LISTA INTERNA */
/* LISTA */
.lista-maquinas{
  list-style:none;
  padding:0;
  margin:0;
}

/* ITEMS */
.lista-maquinas li{
  padding:6px 0;
  border-bottom:1px solid #e5e5e5;

  font-size:15px;
  line-height:1.4;

  display:flex;
  flex-direction:column;
}

/* MARCA */
.lista-maquinas strong{
  color:#3b755e;
  font-weight:700;
}

/* DESCRIPCIÓN */
.lista-maquinas span{
  color:#555;
  font-size:14px;
}
@media (max-width:900px){

  .intro-textil-main{
  flex-direction:column;
  }
  
  .maquinas-container{
  max-height:none;
  }
  
  }

  /* FRANJA IMAGEN */
.franja-imagen{
  width: 100%;
  margin:20px auto 0;
  padding:0 20px;
  text-align:center;
}

.franja-imagen img{
  width:100%;
  max-width:1200px; /* antes 672px */
  height:auto;

  display:block;
  margin:0 auto; /* 🔥 asegura centrado */

  border-radius:6px;
}
  /*------------Botones de seccion-------------*/
.opciones {
  padding: 5px 20px;
  background: #f4f6f8;
}

.opciones-container {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.opcion-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 420px;
  min-height: 160px;
  padding: 30px;

  background: linear-gradient(135deg, #ffffff, #f1f3f6);
  color: #1a1a1a;

  text-decoration: none;
  font-size: 26px;
  font-weight: 600;
  text-align: center;

  border-radius: 18px;
  border: 2px solid #d0d7de;

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  transition: all 0.35s ease;
}
.opcion-industrial:hover {

  background: #e5f0e7;
  color: #1a1a1a;

  border-color: #b7d3bb;

  transform: translateY(-8px) scale(1.03);

  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.opcion-textil:hover {

  background: #8dd8dc;
  color: #1a1a1a;

  border-color: #5bbec4;

  transform: translateY(-8px) scale(1.03);

  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
@media (max-width: 1024px){

  .opciones-container{
    gap:25px;
  }

  .opcion-btn{
    width:360px;
    min-height:140px;
    font-size:22px;
    padding:25px;
  }

}

/* ============================= */
/* CELULARES */
/* ============================= */

@media (max-width: 600px){

  .opciones-container{
    flex-direction:column;
    align-items:center;
    gap:20px;
  }

  .opcion-btn{
    width:100%;
    max-width:420px;
    min-height:120px;
    font-size:20px;
    padding:20px;
  }

}
/*--------------------Tarjetas marca/maquinas-----------------------*/
.categorias-textil {
  padding: 80px 20px;
  background: #f4f6f8;
}

.categorias-header {
  text-align: center;
  margin-bottom: 50px;
}

.categorias-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.categorias-header p {
  font-size: 18px;
  color: #555;
}

/* GRID */

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARTA */

.categoria-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);

  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.categoria-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

.categoria-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.categoria-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

/* BOTÓN */

.btn-vermas {
  display: inline-block;
  
  padding: 8px 18px; /* más pequeño */
  
  background: #8dd8dc;
  color: #1a1a1a;

  text-decoration: none;
  font-weight: 600;
  font-size: 14px;

  border-radius: 6px;

  transition: all 0.25s ease;

  align-self: center; /* CENTRAR dentro de la tarjeta */
}

.btn-vermas:hover {
  background: #6cc3c7;
  transform: scale(1.08);
}

@media (max-width: 1024px) {

  .categorias-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .categorias-grid {
    grid-template-columns: 1fr;
  }

}
/*----------------------------------*/
.catalogo-container{
  max-width:1200px;
  margin:60px auto;
  padding:20px;
}

/* GRID RESPONSIVO */
#catalogos-lista{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:40px;
  justify-items:center;
}

/* TARJETA */
.catalogo-item{
  background:white;
  padding:20px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  text-align:center;
  width:100%;
  max-width:320px;
  transition:0.3s;
}

.catalogo-item:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

/* IMAGEN MISMO TAMAÑO */
.catalogo-img-container{
  width:100%;
  height:380px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f4f6f8;
  border-radius:8px;
  overflow:hidden; /* evita que se salga */
}

/* IMAGEN CONTROLADA */
.catalogo-img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}


/* BOTÓN */
.btn-descargar{
  display:inline-block;
  margin-top:15px;
  padding:10px 20px;
  background:#8dd8dc;
  color:#1a1a1a;
  text-decoration:none;
  font-weight:600;
  border-radius:6px;
  transition:0.3s;
}

.btn-descargar:hover{
  background:#6cc3c7;
  transform:scale(1.05);
}
.catalogo-img{
  transition:0.3s;
}

.catalogo-item:hover .catalogo-img{
  transform:scale(1.05);
}
/* VISOR PDF */

.visor-pdf{

  margin-top:60px;
  background:white;
  
  border-radius:12px;
  
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  
  overflow:hidden;
  
  }
  
  .oculto{
  display:none;
  }
  
  /* HEADER */
  
  .visor-header{
  
  display:flex;
  justify-content:space-between;
  align-items:center;
  
  padding:12px 20px;
  
  background:#8dd8dc;
  
  font-weight:600;
  
  }
  
  /* BOTÓN CERRAR */
  
  #cerrar-pdf{
  
  background:none;
  border:none;
  
  font-size:18px;
  
  cursor:pointer;
  
  }
  
  /* PDF */
  
  #pdf-frame{
  
  width:100%;
  height:700px;
  
  border:none;
  
  }
/*Margenes para el contenido principal*/
.contenido-principal {
  padding: 0 20px;
}

@media (min-width: 768px) {
  .contenido-principal {
    padding: 0 95px;
  }
}
/*Estilos de la seccion de mandar correo para cotizacion*/
.cotizacion {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 80px 30px;
  background-color: #c0f9fc;
  font-family: 'Segoe UI', sans-serif;
}

.cotizacion-texto {
  flex: 1 1 400px;
  max-width: 500px;
}

.cotizacion-texto h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #3a3a3a;
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.cotizacion-texto p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #222;
}

form#cotizacion-form {
  flex: 1 1 350px;
  max-width: 400px;
  background: #f2ede9;
  padding: 30px 25px;
  border: 1px solid #b8b8b8;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

form#cotizacion-form input,
form#cotizacion-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #999;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

form#cotizacion-form textarea {
  border-radius: 20px;
  resize: none;
  padding: 15px 20px;
}

form#cotizacion-form button {
  width: 100%;
  padding: 16px;
  background-color: #ece9e5;
  border: none;
  font-weight: bold;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s ease;
}

form#cotizacion-form button:hover {
  background-color: #ddd;
}

@media (max-width: 768px) {
  .cotizacion {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  form#cotizacion-form {
    width: 100%;
  }
}



/* Estilos para la sección de ubicación */
#ubicacion {
margin-top: 60px;
padding-top: 20px;
}


/* Sección del mapa */
#ubicacion .container {
display: flex;
flex-wrap: wrap;
gap: 20px;
align-items: flex-start;
}

/* Contenedor del mapa */
#ubicacion .mapa {
flex: 1 1 400px;
min-width: 300px;
}

/* Hacer el iframe responsivo */
#ubicacion .mapa iframe {
width: 100% !important;   /* ocupa todo el ancho del contenedor */
height: 100%; 
min-height: 300px;        /* altura mínima en móviles */
border: none;
border-radius: 10px;      /* opcional: esquinas redondeadas */
}

/* Info al lado del mapa */
#ubicacion .info {
flex: 1 1 300px;
min-width: 250px;
}

/* Responsividad */
@media (max-width: 768px) {
#ubicacion .container {
  flex-direction: column; /* mapa arriba, texto abajo */
}
#ubicacion .mapa iframe {
  height: 250px; /* altura más reducida en móvil */
}
}
/*Diseño para la seccion nosotros*/
.nosotros-container {
  display: flex;
  flex-wrap: wrap;
  min-height: calc(100vh - 200px); /* ajusta según tu header/footer */
}

.nosotros-left {
  flex: 1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.nosotros-left img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.nosotros-left h1 {
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
  color: #222;
}

.nosotros-right {
  flex: 1;
  background-color: #c0f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.nosotros-texto {
  max-width: 600px;
}

.nosotros-texto h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.nosotros-texto hr {
  border: none;
  border-top: 1px solid #333;
  margin-bottom: 20px;
}

.nosotros-texto p {
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .nosotros-container {
    flex-direction: column;
  }

  .nosotros-left,
  .nosotros-right {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .nosotros-texto {
    padding: 0 10px;
  }

  .nosotros-left h1 {
    font-size: 2rem;
  }
}
/*Seccion de mision y vision*/
.mision-vision {
  background-color: #fff;
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.mision,
.vision {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.mision .texto,
.vision .texto {
  background-color: #c0f9fc;
  padding: 25px;
  border-radius: 4px;
  max-width: 500px;
  font-size: 1rem;
  text-align: center;
}

.mision img,
.vision img {
  width: 100px;
  height: auto;
  margin: 20px;
}

.separador {
  border: none;
  border-top: 1px solid #333;
  margin: 40px auto;
  width: 60%;
}

.mision h3,
.vision h3 {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: normal;
}

/* Responsivo */
@media (max-width: 768px) {
  .mision,
  .vision {
    flex-direction: column;
    text-align: center;
  }

  .mision img,
  .vision img {
    margin-bottom: 20px;
  }
}
/*----------------------------Botones en productos_textil--------*/
.catalogo-botones{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:40px;
  flex-wrap:wrap;
}

/* BOTON VOLVER */
.btn-volver{
  background:#6c757d;
  color:white;
  border:none;
  padding:12px 28px;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
  transition:all .3s ease;
}

.btn-volver:hover{
  background:#545b62;
  transform:translateY(-2px);
}

/* BOTON CONTACTO */
.btn-contacto{
  background:#0d6efd;
  color:white;
  padding:12px 28px;
  border-radius:6px;
  font-size:16px;
  text-decoration:none;
  transition:all .3s ease;
}

.btn-contacto:hover{
  background:#0b5ed7;
  transform:translateY(-2px);
}
/* Redes sociales */
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  margin: 8px 0;
}

.social-links a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

/* Colores oficiales */
.social-links a i.fa-instagram {
  color: #E4405F; /* Instagram */
}

.social-links a i.fa-facebook {
  color: #1877F2; /* Facebook */
}

.social-links a i.fa-linkedin {
  color: #0A66C2; /* LinkedIn */
}

/* Efecto hover → texto también toma el color del icono */
.social-links a:hover {
  color: inherit; /* evita cambio inesperado */
  font-weight: bold;
}
.catalogo-titulo{

  font-size:22px;
  font-weight:600;

  margin-bottom:15px;

  color:#222;

}


/* BOTÓN VER CATÁLOGO */

.btn-ver{

  display:inline-block;
  
  margin-top:15px;
  margin-bottom:8px;
  
  padding:10px 20px;
  
  background:#3b755e;
  color:white;
  
  border:none;
  border-radius:6px;
  
  font-weight:600;
  font-size:14px;
  
  cursor:pointer;
  
  transition:all .25s ease;
  
  }
  
  /* HOVER */
  
  .btn-ver:hover{
  
  background:#2f5d4a;
  
  transform:scale(1.05);
  
  box-shadow:0 5px 12px rgba(0,0,0,0.2);
  
  }
  /*Estilos de la seccion del carrusel*/
.productos {
  background-color: #f4f4f4;
  text-align: center;
  padding: 10px 20px;
}

.titulo {
  font-size: 2em;
  margin-bottom: 40px;
}

.carrusel-container {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.carrusel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  width: 100%;
} 

.item {
  min-width: 250px;
  flex-shrink: 0;
  text-align: center;
}

.item img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
}

.arrow {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

.info-btn {
  margin-top: 30px;
}

.info-btn button {
  padding: 12px 24px;
  background: black;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.info-btn button:hover {
  background: #333;
}

@keyframes scrollCarrusel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .item {
    min-width: 70%;
  }
}
