body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-height: 2700px;
}

.header {
  position: relative;
  height: 650px;
  overflow: hidden;
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-container {
  position: absolute;
  bottom: 0px;
  left: 25%;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.8) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  padding: 15px 400px;
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo {
  max-width: none;
  width: 500px;
  height: auto;
  margin-left: 0;
}

.product-info {
  text-align: center;
  padding: 10px;
}

.product-title {
  font-size: 2.4em;
  font-weight: bold;
  margin-bottom: 20px;
}

.product-description {
  text-align: left;
  font-size: 2em;
  margin-bottom: 20px;
  padding-left: 85px;
  padding-right: 30px;
}

.perfil-formatos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0px;
}

.formatos {
  align-self: baseline;
}

.perfil,
.formatos,
.guarantee-brands {
  flex: 1;
  text-align: center;
  margin: 0;
  padding: 0;
}

.perfil img,
.guarantee-brands img {
  width: 100px;
  margin: 10px;
}

.guarantee-brands {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.guarantee-brands .logo-macrolux {
  width: 150px !important;
  margin: 10px;
}

.formatos ul {
  font-size: 1.5rem;
  list-style: disc inside;
  padding: 0;
  text-align: left;
}

.formatos li {
  margin-bottom: 0px;
  padding-left: 4rem;
}

.benefits-image {
  width: 85%;
  margin: 20px 0;
}

.image-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.image-item {
  flex: 1;
  margin: 0 20px;
}

.image-item img {
  width: 100%;
  height: auto;
}

.color-applications {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 20px 0;
}

.colors,
.applications {
  flex: 1;
  text-align: center;
}

.colors h2 {
  margin-bottom: 0px;
}

.color-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
}

.color-item img {
  width: 600px;
  height: auto;
  margin-right: 20px;
}

.color-description p {
  margin: 0;
  text-align: left;
}

.applications h2 {
  margin-bottom: 35px;
}

.applications ul {
  font-size: 1.5em;
  list-style: disc;
  padding-left: 215px;
  text-align: left;
}

.color-overlay {
  position: absolute;
  top: 0;
  right: 3.5rem;
  width: 10%;
  height: 400px;
  background-color: rgba(
    69,
    117,
    162,
    0.5
  );
  pointer-events: none;
}

.installation {
  margin: 50px 0;
}

.installation-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.installation-image {
  position: relative;
  flex: 1;
}

.installation-image img {
  width: 90%;
  height: 450px;
  object-fit: cover;
}

.installation-image::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.7rem;
  transform: translateY(-50%);
  border-width: 50px;
  border-style: solid;
  border-color: transparent transparent transparent #4575a2;
}

.installation-text {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.5em;
  padding-left: 25px;
}

.installation-text h2 {
  text-align: center;
  margin-bottom: 35px;
  margin-top: 0;
}

.installation-text ol {
  padding-left: 20px;
}

.installation-text ol li {
  margin-bottom: 30px;
}

.installation-footer {
  text-align: left;
  margin-top: 20px;
  padding-left: 30px;
}

.installation-footer .installation-logo {
  width: 420px;
  height: 70px;
}


@media (max-width: 1140px) {
  
}


@media (max-width: 768px) {
  .container {
    max-width: 400px;
    padding: 0px;
    margin: 0 auto;
    padding: 0;
    min-height: 270px;
  }

  .header {
    height: auto;
  }

  .header-image {
    height: 230px;
  }

  .logo-container {
    padding: 5px 4px;
    left: 41%;
    width: 80%;
  }

  .logo {
    width: 220px;
    height: auto;
    max-width: none;
  }

  .product-info {
    padding: 0px 0;
  }

  .product-title {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 5px;
    margin-top: 10px;
  }

  .perfil-formatos {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  svg {
    max-width: 100px;
    max-height: 70px;
  }

  .formatos {
    align-self: baseline;
  }

  h2 {
    font-size: 0.8em;
  }

  .perfil,
  .formatos,
  .guarantee-brands {
    flex: 1;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  
  .perfil img,
  .guarantee-brands img {
    width: 40px;
    margin: 0px;
  }
  
  .guarantee-brands {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  
  .guarantee-brands .logo-macrolux {
    width: 65px !important;
    margin: 5px;
  }
  
  .formatos ul {
    font-size: 0.6rem;
    list-style: disc inside;
    padding: 0;
    text-align: left;
  }
  
  .formatos li {
    margin-bottom: 0px;
    padding-left: 1rem;
  }

  .product-description {
    font-size: 0.7em;
    text-align: center;
    padding: 0px 10px;
    margin-bottom: 10px;
    margin-top: 1px;
  }

  .benefits-image {
    width: 83%;
    margin: 0px 0;
  }

  .image-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    margin-bottom: 0px;
  }
  
  .image-item {
    flex: 1;
    margin: 0 6px;
  }
  
  .image-item img {
    width: 100%;
    height: auto;
  }


  .color-applications {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0px;
  }
  
  .colors,
  .applications {
    flex: 1;
    text-align: center;
  }
  
  .colors h2 {
    margin-bottom: 0px;
  }
  
  .color-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 8px;
  }
  
  .color-item img {
    width: 200px;
    height: 100px;
    margin-right: 0px;
  }
  
  .color-description p {
    margin: 0px;
    text-align: left;
  }
  
  .applications h2 {
    margin-bottom: 15px;
  }
  
  .applications ul {
    font-size: 0.7em;
    list-style: disc;
    padding-left: 60px;
    text-align: left;
  }

  .color-overlay {
    position: absolute;
    top: 0;
    right: 1.15rem;
    width: 10%;
    height: 150px;
    background-color: rgba(
      69,
      117,
      162,
      0.5
    );
    pointer-events: none;
  }

  .installation {
    margin: 20px 0;
  }
  
  .installation-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0px;
  }
  
  .installation-image {
    position: relative;
    flex: 1;
  }
  
  .installation-image img {
    width: 90%;
    height: 150px;
    object-fit: cover;
  }
  
  .installation-image::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.35rem;
    transform: translateY(-50%);
    border-width: 20px;
    border-style: solid;
    border-color: transparent transparent transparent #4575a2;
  }
  
  .installation-text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.6em;
    padding-left: 20px;
    padding-right: 5px;
  }
  
  .installation-text h2 {
    text-align: center;
    font-size: 0.8rem;
    margin-bottom: 0px;
    margin-top: 0;
  }
  
  .installation-text ol {
    padding-left: 0px;
  }
  
  .installation-text ol li {
    margin-bottom: 7px;
  }
  
  .installation-footer {
    text-align: left;
    margin-top: 5px;
    padding-left: 10px;
  }
  
  .installation-footer .installation-logo {
    width: 140px;
    height: auto;
  }

}
