:root {
    --primary-color: #2c3e50;
    --secondary-color: #f3701f;
    --light-color: #ecf0f1;
    --dark-color: #34495e;
    --text-color: #333;
    --text-light: #7f8c8d;
    --font-family-base: "Montserrat", sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 800;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body {
  
     font-family: var(--font-family-base);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
}
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

  
.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 20px;
}

.montserrat-medium {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  font-size: 18px;
   align-items: center;
}

 .montserrat-textos {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #070707;
  align-items: center;
  text-align: justify; /* Esto hace que el texto sea justificado */
}


.montserrat-textoscentrada {
 
 
  font-weight: 400;
 

  align-items: center;
   font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  font-style: normal;
  color: #070707;
  font-size: 22px;
  text-align: center;
  
}
.montserrat-textosBlancos {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  align-items: center;
  
}

.montserrat-letranegra {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold); /* ¡Aquí está la clave! */
  font-style: normal;
  color: #070707;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.montserrat-h1 {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold); /* ¡Aquí está la clave! */
  font-style: normal;
  color: #070707;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
      font-size: 2.8rem;
}
.montserrat-centrada {
 font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  font-style: normal;
  color: #070707;
  font-size: 22px;
  text-align: center;
}

.seccion-centrada {
  text-align: center;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}
.montserrat-modelos {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold); /* ¡Aquí está la clave! */
  font-style: normal;
 
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-texto-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px; /* espacio entre el logo y el texto */
  flex-wrap: wrap; /* por si en pantallas pequeñas necesita acomodarse */
  margin-bottom: 15px;
}

 a {
  text-decoration: none; /* Quita el subrayado */
  color: inherit;        /* Hereda el color del padre */
  outline: none;         /* Quita el contorno azul al enfocar */
}

 a:focus,
 a:active {
  outline: none;
  box-shadow: none; /* Por si algún navegador aplica sombreado */
}

/*partes*/

    .containerE {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }

    .breadcrumb {
      font-size: 14px;
      color: #666;
      margin-bottom: 10px;
    }

    .product-title {
      font-size: 24px;
      font-weight: bold;
    }

    .product-info {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 20px;
      align-items: flex-start;
    }

    .product-img {
      flex: 1 1 300px;
    }

    .product-img img {
      width: 100%;
      max-width: 400px;
    }

    .product-details {
      flex: 1 1 400px;
    }

    .code {
      background: #f5f5f5;
      padding: 10px;
      margin: 10px 0;
      border-left: 4px solid orange;
    }

    .description {
      background: #f5f5f5;
      padding: 10px;
      border-left: 4px solid orange;
    }

    .quote-button {
      background: #f07f1a;
      color: white;
      padding: 10px 20px;
      border-radius: 20px;
      border: none;
      font-size: 16px;
      margin-top: 15px;
      cursor: pointer;
    }

    .quote-button:hover {
      background: #3838387e;
    }

    .section-title {
      text-align: center;
      margin-top: 60px;
      margin-bottom: 20px;
      font-weight: bold;
      position: relative;
      text-transform: uppercase;
    }

    .section-title::after {
      content: '';
      width: 60px;
      height: 3px;
      background: orange;
      display: block;
      margin: 10px auto 0 auto;
    }

    .related-products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      padding: 20px;
    }

    .product-card {
      text-align: center;
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 15px;
      transition: 0.3s;
    }

    .product-card img {
      width: 100%;
      height: 150px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .category-label {
      background: #f07f1a;
      color: white;
      font-size: 12px;
      padding: 5px;
      display: inline-block;
      margin-bottom: 8px;
    }

    .product-name {
      font-weight: bold;
      font-size: 14px;
    }
    .breadcrumb-highlight {
  display: inline-block;
  background-color: #383838; /* color amarillo brillante */
  color: #000;               /* texto negro para contraste */
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.breadcrumb-highlight:hover {
  background-color: #ffda44;
  transform: scale(1.05);
}

/*elementos de equipos delñ grid elementos y medidas*/
.capacidades {
  text-align: center;
  width: 60%;
  margin: 0 auto;
}

.capacidades p {
  margin: 0;
  padding: 5px;
  display: inline-block;
  width: 100%;
}

.capacidades p:nth-child(odd),
.medidas-texto p:nth-child(odd) {
  background: #f07f1a;
  color: white;
}

.capacidades p:nth-child(even),
.medidas-texto p:nth-child(even) {
  background: #fff;
  color: #333;
}
.responsive-banner {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
}
  h1 {
      color: white;
      font-size: 40px;
      text-transform: uppercase;
    }
.h1Banner {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: none;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  text-align: right;
  padding: 10px 15px;
  
  border-top-left-radius: 10px;
  max-width: 60%; /* Reduce el ancho para que no abarque toda la imagen */
  line-height: 1.2;
  word-wrap: break-word;
}

/* Tablets */
@media (max-width: 768px) {
  .h1Banner {
    font-size: .3rem;
    padding: 6px 10px;
    max-width: 50%; /* Aún más compacto */
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .h1Banner {
    font-size: 0.85rem;
    padding: 5px 8px;
    max-width: 45%;
  }
}


@media (max-width: 768px) {
  .h1Banner {
    font-size: .5rem;
  }
}

@media (max-width: 480px) {
  .h1Banner {
    font-size: 1rem;
  }
}



/* Para el párrafo que contiene la descripción */
.product-description {
  max-width: 1200px;      /* Ancho máximo */
  margin: 0 auto 2rem;   /* Centra el párrafo horizontalmente y agrega margen abajo */
  text-align: justify;   /* Justifica el texto */
  line-height: 1.6;      /* Mejor lectura */
  font-size: 1.1rem;     /* Tamaño legible */
}
.contenedor-botones-reed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 250px;
  margin: 0 auto;
}

.boton-reed {
  width: 100%;
  box-sizing: border-box;
}
strong {
  color: #585757; /* Puedes cambiar el color */
 
}
/* TITULAR H1 PARA PREGUNTAS FRECUENTES - ADAPTABLE */
.montserrat-h1 {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  font-style: normal;
  color: #070707;
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin-bottom: 20px;
}

/* RESPONSIVE - TABLETS */
@media (max-width: 768px) {
  h1.montserrat-h1 {
    font-size: 2rem !important;
    text-align: center;
    flex-direction: column;
  }
}

/* RESPONSIVE - MÓVILES PEQUEÑOS */
@media (max-width: 480px) {
  h1.montserrat-h1 {
    font-size: 1.6rem !important;
    text-align: center;
    flex-direction: column;
  }
}
   .titulo-industrial h2 {
      font-size: 28px;
      font-weight: 800;
      line-height: 1.3;
      text-align: right;
      margin: 0;
    }