* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.1;
  overflow-x: hidden;
}

html {
  font-size: 10px;
}

:root {
  --font-opensans: "Open Sans", sans-serif;
  --font-Myriad: "Myriad Pro", sans-serif;
  --font-Oswald: "Oswald", sans-serif;
  --font-Lato: "Lato", sans-serif;
  --font-Montserrat: "Montserrat", sans-serif;
  --font-Inter: "Inter", sans-serif;

  /*
--font-Arial: Arial, Helvetica, sans-serif;
--font-Verdana: Verdana, sans-serif;
--font-Poppins: "Poppins", sans-serif;
--font-Ubuntu: "Ubuntu", sans-serif;
--font-RobotoCondensed: "Roboto Condensed", sans-serif;
--font-BebasNeue: "Bebas Neue", sans-serif;
--font-Roboto: "Roboto", sans-serif;
--font-AbrilFatface: "Abril Fatface", serif;
--font-Quicksand: "Quicksand", sans-serif;
--font-Nunito: "Nunito", sans-serif;
--font-Helvetica: "Helvetica", Arial, sans-serif;
--font-LenguajeSpartan: "League Spartan", sans-serif;
--font-Quicksand: "Quicksand", sans-serif;
--font-JosefinSans: "Josefin Sans", sans-serif;
*/
}

.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px;
}

/*header*/

.main-header {
  position: relative;
  height: 800px;
  overflow: hidden;
}

.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #eaeaea;
  z-index: 10;
}

body:not(.page-index) .main-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(0, 102, 204, 0.5);
  z-index: 10;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-background .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-background .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(6, 61, 159, 0.7);
  z-index: 3;
  padding: 0 0;
  height: 80px;
}

.main-nav .header-decoration {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

.main-nav .header-decoration img {
  display: block;
  height: auto;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.header-logo-container {
  flex: 0 0 auto;
  z-index: 10;
  position: relative;
  left: 20px;
}

.header-logo-container img {
  display: block;
  height: auto;
  max-height: 150px;
  margin-top: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  margin-left: auto;
  margin-right: 50px;
}

.nav-menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-opensans);
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.nav-menu li a:hover {
  opacity: 0.8;
}

.nav-menu li a.active {
  opacity: 1;
  font-weight: 800;
}

.nav-separator {
  width: 1px;
  height: 18px;
  background: linear-gradient(
    to bottom,
    transparent,
    #ffffff 20%,
    #ffffff 80%,
    transparent
  );
}

.nav-right {
  flex: 0 0 auto;
  margin-right: 50px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 23px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 21px;
  font-family: var(--font-opensans);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whatsapp-btn i {
  font-size: 18px;
}

.whatsapp-btn:hover {
  background-color: #ffffff;
  color: #1e468c;
}

.hero-content {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  z-index: 5;
}

.hero-content .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  text-align: left;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 48px;
  font-family: var(--font-Oswald);
  font-weight: 200;
  text-shadow: 0px 0px 50px rgba(0, 0, 0, 1), 0px 0px 100px rgba(0, 0, 0, 1),
    0px 0px 150px rgba(0, 0, 0, 0.9);
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.hero-title {
  color: #b1bfff;
  font-size: 70px;
  font-family: var(--font-Oswald);
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-shadow: 5px 5px 60px rgba(0, 0, 0, 1), 10px 10px 120px rgba(0, 0, 0, 1),
    15px 15px 180px rgba(0, 0, 0, 0.9);
  position: relative;
  z-index: 1;
}

.hero-btn {
  display: inline-block;
  padding: 16px 30px;
  background-color: rgb(42, 68, 191, 0.9);
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-family: var(--font-Lato);
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.hero-btn:hover {
  background-color: #2d5bb3;
}

.hero-arrows {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 30px;
  margin-right: 150px;
}

.arrow-prev,
.arrow-next {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  color: rgba(53, 53, 53, 0.5);
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-prev:hover,
.arrow-next:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

/*footer*/
.main-footer {
  background-color: #191919;
  padding: 2rem 0;
}

.main-footer .container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-privacy {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-privacy:hover {
  opacity: 0.8;
}

.footer-left p {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: var(--font-Verdana);
  margin: 0;
  text-align: center;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-right span {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: var(--font-Verdana);
}

.tecweb-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.tecweb-logo img {
  height: 20px;
  width: auto;
}

.tecweb-logo span {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: Arial, sans-serif;
}

/*inicio*/

#welcome {
  background-color: #ffffff;
  padding: 200px 0;
}

#welcome .content {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

#welcome .subtitle {
  color: #2c4d9c;
  font-size: 30px;
  font-family: var(--font-Lato);
  font-weight: 400;
  margin-bottom: 10px;
}

#welcome .title {
  color: #585858;
  font-size: 50px;
  font-family: var(--font-Lato);
  font-weight: 800;
  margin-bottom: 12px;
}

#welcome .line {
  width: 183px;
  height: 1px;
  background-color: #c7c7c7;
  margin: 0 auto 12px;
}

#welcome .text {
  color: #666666;
  font-size: 15px;
  font-family: var(--font-opensans);
  font-weight: 400;
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto;
}

#products {
  background-image: url("../images/inicio/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 0;
  position: relative;
}

#products .container {
  position: relative;
  z-index: 2;
}

#products .title {
  color: #ffffff;
  font-size: 60px;
  font-family: var(--font-Montserrat);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;

  position: relative;
}

#products .title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 183px;
  height: 1px;
  background-color: #ffffff;
}

#products .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

#products .btn {
  background-color: rgba(32, 55, 172, 0.8);
  color: #ffffff;
  font-size: 24px;
  font-family: var(--font-Lato);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  padding: 30px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

/* #products .btn:hover {
  background-color: rgba(44, 77, 156, 1);
} */

#values {
  display: flex;
  width: 100%;
  gap: 30px;
  padding: 30px;
}

#values .item {
  flex: 1;
  position: relative;
  overflow: hidden;
}

#values .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#values .label {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(44, 77, 156, 0.9);
  color: #ffffff;
  font-size: 36px;
  font-family: var(--font-Lato);
  font-weight: 600;
  width: 378px;
  height: 86px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*nosotros*/
#about {
  background-color: #ffffff;
  padding: 200px 0;
}

#about .content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

#about .title {
  color: #4a4a4a;
  font-size: 48px;
  font-family: var(--font-Lato);
  font-weight: 800;
  margin-bottom: 20px;
}

#about .line {
  width: 183px;
  height: 8px;
  background-color: #2c4d9c;
  margin: 0 auto 30px;
  border-radius: 25px;
}

#about .text {
  color: #616161;
  font-size: 16px;
  font-family: var(--font-opensans);
  font-weight: 400;
  line-height: 1.8;
  max-width: 1100px;
  margin: 0 auto;
}

#about .text strong {
  color: #4a4a4a;
  font-weight: 700;
}

#gallery {
  background-image: url("../images/nosotros/bluebg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  gap: 30px;
  padding: 80px 40px;
}

#gallery .item {
  flex: 1;
}

#gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*servicios*/

#services {
  background-color: #ffffff;
  padding: 175px 0;
}

#services .content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

#services .title {
  color: #585858;
  font-size: 48px;
  font-family: var(--font-Lato);
  font-weight: 800;
  margin-bottom: 20px;
}

#services .line {
  width: 183px;
  height: 8px;
  background-color: #2c4d9c;
  margin: 0 auto 20px;
  border-radius: 25px;
}

#services .text {
  color: #666666;
  font-size: 16px;
  font-family: var(--font-opensans);
  font-weight: 400;
  line-height: 1.8;
}

#banner {
  background-color: #002dba;
  padding: 60px 0;
}

#banner .container {
  text-align: center;
}

#banner .text {
  color: #ffffff;
  font-size: 24px;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  margin-bottom: 5px;
}

#banner .highlight {
  color: #ffffff;
  font-size: 24px;
  font-family: var(--font-Montserrat);
  font-weight: 700;
}

#features {
  background-image: url("../images/nosotros/lamina-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

#features .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 80px;
}

#features .image {
  flex: 0 0 55%;
}

#features .image img {
  width: 100%;
  display: block;
}

#features .list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-left: 25px;
}

#features .item {
  display: flex;
  align-items: center;
  gap: 20px;
}

#features .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

#features .text {
  color: #ffffff;
  font-size: 24px;
  font-family: var(--font-Montserrat);
  font-weight: 600;
}

#carousel {
  background-image: url("../images/nosotros/carrusel/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

#carousel .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

#carousel .swiper {
  overflow: hidden;
}

#carousel .swiper-slide img {
  width: 100%;
  display: block;
}

#carousel .btn-prev,
#carousel .btn-next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: transform 0.3s ease;
}

#carousel .btn-prev {
  left: -18px;
}

#carousel .btn-next {
  right: -18px;
}

#carousel .btn-prev img,
#carousel .btn-next img {
  width: 101px;
  height: 101px;
  display: block;
}

/*contacto*/

#contact {
  background-color: #ffffff;
  padding: 100px 0;
}

#contact .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

#contact .header {
  text-align: center;
  margin-bottom: 50px;
}

#contact .title {
  color: #4a4a4a;
  font-size: 48px;
  font-family: var(--font-Lato);
  font-weight: 800;
  margin-bottom: 20px;
}

#contact .line {
  width: 183px;
  height: 8px;
  background-color: #2c4d9c;
  margin: 0 auto 20px;
  border-radius: 25px;
}

#contact .subtitle {
  color: #616161;
  font-size: 16px;
  font-family: var(--font-opensans);
  font-weight: 400;
}

#contact .form {
  max-width: 1300px;
  margin: 0 auto;
}

#contact .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 5px;
  align-items: start;
}

#contact .field {
  width: 100%;
}

#contact .field input {
  width: 100%;
  padding: 25px 20px;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  font-size: 14px;
  font-family: var(--font-Inter);
  color: #757575;
  box-sizing: border-box;
}

#contact .field input:focus {
  outline: none;
  border-color: #2c4d9c;
}

#contact .field-full {
  margin-bottom: 30px;
}

#contact .field-full textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  font-size: 14px;
  font-family: var(--font-opensans);
  color: #757575;
  resize: vertical;
  box-sizing: border-box;
  min-height: 150px;
  max-height: 200px;
}

#contact .field-full textarea:focus {
  outline: none;
  border-color: #2c4d9c;
}

#contact .captcha {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

#contact .buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

#contact .btn-reset,
#contact .btn-submit {
  padding: 12px 20px;
  font-size: 11px;
  font-family: var(--font-Inter);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#contact .btn-reset {
  background-color: #002dba;
  color: #ffffff;
}

#contact .btn-reset:hover {
  background-color: #1e3a7a;
}

#contact .btn-submit {
  background-color: #002dba;
  color: #ffffff;
}

#contact .btn-submit:hover {
  background-color: #1e3a7a;
}

#info {
  background-color: #efefef;
  padding: 60px 0;
}

#info .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

#info .card {
  background-color: #f7f7f7;
  padding: 40px 0px;
  text-align: center;
  border-radius: 10px;
}

#info .card:nth-child(1) .icon {
  width: 108px;
  height: 109px;
  margin: 0 auto 25px;
  display: block;
}

#info .card:nth-child(2) .icon {
  width: 65px;
  height: 124px;
  margin: 0 auto 25px;
  display: block;
}

#info .card:nth-child(3) .icon {
  width: 133px;
  height: 96px;
  margin: 25px auto 25px;
  display: block;
}
#info .title {
  color: #0231b5;
  font-size: 24px;
  font-family: var(--font-Montserrat);
  font-weight: 700;
  margin-bottom: 15px;
}

#info .data {
  color: #5f5f5f;
  font-size: 18px;
  font-family: var(--font-Montserrat);
  font-weight: 600;
}

#info .data a {
  color: #5f5f5f;
  text-decoration: none;
  transition: color 0.3s ease;
}

#info .data a:hover {
  text-decoration: underline;
}

#info .separator {
  color: #0231b5;
  font-size: 30px;
}

#location {
  background: #002dba;
  padding: 50px 0;
}

#location .location-info {
  text-align: center;
}

#location .location-info i {
  font-size: 20px;
  color: #ffffff;
  margin-right: 10px;
}

#location .location-info span {
  font-family: var(--font-Montserrat);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

#contact-map .map-container {
  width: 100%;
  height: 580px;
}

#contact-map .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/*producto*/

#products-grid {
  background-color: #ffffff;
  padding: 100px 0 80px;
}

#products-grid .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#products-grid .header {
  text-align: center;
  margin-bottom: 80px;
}

#products-grid .title {
  color: #4a4a4a;
  font-size: 48px;
  font-family: var(--font-Lato);
  font-weight: 800;
  margin-bottom: 20px;
}

#products-grid .line {
  width: 183px;
  height: 8px;
  background-color: #2c4d9c;
  margin: 0 auto;
  border-radius: 25px;
}

#products-grid .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

#products-grid .product-item {
  padding: 25px 30px;
  text-align: center;
  position: relative;
}

#products-grid .product-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 85%;
  background-color: #d0d0d0;
}

#products-grid .product-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 1px;
  background-color: #d0d0d0;
}

#products-grid .product-item:nth-child(4n)::after {
  display: none;
}

#products-grid .product-item:nth-child(n + 9)::before {
  display: none;
}

#products-grid .logo {
  width: 80px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
}

#products-grid .name {
  color: #4a4a4a;
  font-size: 24px;
  font-family: var(--font-Lato);
  font-weight: 800;
  margin-bottom: 25px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#products-grid .btn {
  display: inline-block;
  padding: 8px 30px;
  background-color: #2647a8;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-Lato);
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

#products-grid .btn:hover {
  background-color: #1e3a7a;
}

#product-details {
  background-color: #ffffff;
  padding: 80px 0;
}

#product-details .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#product-details .tabs {
  display: flex;
  margin-bottom: 60px;
}

#product-details .tab-left {
  flex: 0 0 300px;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  background-color: #2644a4;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  text-align: center;
}

#product-details .tab-right {
  flex: 1;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  background-color: #eeeeee;
  color: #7a7a7a;
  border-radius: 0 50px 50px 0;
}

#product-details .content {
  display: flex;
  align-items: center;
  gap: 40px;
}

#product-details .features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 40px;
}

#product-details .feature-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

#product-details .icon {
  width: 42px;
  height: 36px;
  flex-shrink: 0;
}

#product-details .text {
  color: #7a7a7a;
  font-size: 16px;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  line-height: 1.6;
}

#product-details .image {
  flex: 0 0 403px;
  margin-right: 80px;
}

#product-details .image img {
  width: 100%;
  display: block;
}

#product-galvalum {
  background-color: #ffffff;
  padding: 80px 0;
}

#product-galvalum .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#product-galvalum .tabs {
  display: flex;
  margin-bottom: 60px;
}

#product-galvalum .tab-left {
  flex: 0 0 300px;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  background-color: #2644a4;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  text-align: center;
}

#product-galvalum .tab-right {
  flex: 1;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  background-color: #eeeeee;
  color: #7a7a7a;
  border-radius: 0 50px 50px 0;
}

#product-galvalum .content {
  display: flex;
  align-items: center;
  gap: 90px;
}

#product-galvalum .image {
  flex: 0 0 403px;
  margin-left: 80px;
}

#product-galvalum .image img {
  width: 100%;
  display: block;
}

#product-galvalum .features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#product-galvalum .feature-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

#product-galvalum .icon {
  width: 42px;
  height: 36px;
  flex-shrink: 0;
}

#product-galvalum .text {
  color: #7a7a7a;
  font-size: 16px;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  line-height: 1.6;
}

#product-pintura {
  background-color: #ffffff;
  padding: 80px 0;
}

#product-pintura .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#product-pintura .tabs {
  display: flex;
  margin-bottom: 60px;
}

#product-pintura .tab-left {
  flex: 0 0 300px;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  background-color: #2644a4;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  text-align: center;
}

#product-pintura .tab-right {
  flex: 1;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  background-color: #eeeeee;
  color: #7a7a7a;
  border-radius: 0 50px 50px 0;
}

#product-pintura .content {
  display: flex;
  align-items: center;
  gap: 40px;
}

#product-pintura .features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 40px;
}

#product-pintura .feature-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

#product-pintura .icon {
  width: 42px;
  height: 36px;
  flex-shrink: 0;
}

#product-pintura .text {
  color: #7a7a7a;
  font-size: 16px;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  line-height: 1.6;
}

#product-pintura .image {
  flex: 0 0 403px;
  margin-right: 80px;
}

#product-pintura .image img {
  width: 100%;
  display: block;
}

#product-perfiles {
  background-color: #ffffff;
  padding: 80px 0;
}

#product-perfiles .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#product-perfiles .tabs {
  display: flex;
  margin-bottom: 60px;
}

#product-perfiles .tab-left {
  flex: 0 0 300px;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  background-color: #2644a4;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  text-align: center;
}

#product-perfiles .tab-right {
  flex: 1;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  background-color: #eeeeee;
  color: #7a7a7a;
  border-radius: 0 50px 50px 0;
}

#product-perfiles .diagram {
  text-align: center;
}

#product-perfiles .diagram img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

#product-perfiles-2 {
  background-color: #ffffff;
  padding: 80px 0;
}

#product-perfiles-2 .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#product-perfiles-2 .tabs {
  display: flex;
  margin-bottom: 60px;
}

#product-perfiles-2 .tab-left {
  flex: 0 0 300px;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  background-color: #2644a4;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  text-align: center;
}

#product-perfiles-2 .tab-right {
  flex: 1;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  background-color: #eeeeee;
  color: #7a7a7a;
  border-radius: 0 50px 50px 0;
}

#product-perfiles-2 .diagrams {
  text-align: center;
}

#product-perfiles-2 .diagrams img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#product-rollo {
  background-color: #ffffff;
  padding: 80px 0;
}

#product-rollo .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#product-rollo .tabs {
  display: flex;
  margin-bottom: 60px;
}

#product-rollo .tab-left {
  flex: 0 0 300px;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  background-color: #2644a4;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  text-align: center;
}

#product-rollo .tab-right {
  flex: 1;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  background-color: #eeeeee;
  color: #7a7a7a;
  border-radius: 0 50px 50px 0;
}

#product-rollo .description {
  margin-bottom: 50px;
}

#product-rollo .text {
  color: #7a7a7a;
  font-size: 16px;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  line-height: 1.8;
}

#product-rollo .images {
  display: flex;
  gap: 70px;
}

#product-rollo .image-item {
  flex: 1;
  position: relative;
}

#product-rollo .image-item img {
  width: 100%;
  display: block;
}

#product-rollo .caption {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #4a4a4a;
  font-size: 20px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  padding: 20px 40px;
  text-align: center;
  border-radius: 10px;
  width: 415px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#product-hojas-lisas {
  background-color: #ffffff;
  padding: 80px 0;
}

#product-hojas-lisas .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#product-hojas-lisas .tabs {
  display: flex;
  margin-bottom: 60px;
}

#product-hojas-lisas .tab-left {
  flex: 0 0 300px;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  background-color: #2644a4;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  text-align: center;
}

#product-hojas-lisas .tab-right {
  flex: 1;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  background-color: #eeeeee;
  color: #7a7a7a;
  border-radius: 0 50px 50px 0;
}

#product-hojas-lisas .description {
  margin-bottom: 50px;
}

#product-hojas-lisas .text {
  color: #7a7a7a;
  font-size: 16px;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  line-height: 1.8;
}

#product-hojas-lisas .images {
  display: flex;
  gap: 70px;
}

#product-hojas-lisas .image-item {
  flex: 1;
  position: relative;
}

#product-hojas-lisas .image-item img {
  width: 100%;
  display: block;
}

#product-hojas-lisas .caption {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #4a4a4a;
  font-size: 20px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  padding: 20px 40px;
  text-align: center;
  border-radius: 10px;
  width: 415px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#product-lamina-galvanizada {
  background-color: #ffffff;
  padding: 80px 0;
}

#product-lamina-galvanizada .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#product-lamina-galvanizada .tabs {
  display: flex;
  margin-bottom: 60px;
}

#product-lamina-galvanizada .tab-left {
  flex: 0 0 355px;
  padding: 20px 0px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  background-color: #2644a4;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  text-align: center;
}

#product-lamina-galvanizada .tab-right {
  flex: 1;
  padding: 20px 30px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  background-color: #eeeeee;
  color: #7a7a7a;
  border-radius: 0 50px 50px 0;
}

#product-lamina-galvanizada .description {
  margin-bottom: 50px;
}

#product-lamina-galvanizada .text {
  color: #7a7a7a;
  font-size: 16px;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  line-height: 1.8;
}

#product-lamina-galvanizada .image-container {
  position: relative;
}

#product-lamina-galvanizada .image-container img {
  width: 100%;
  display: block;
}

#product-lamina-galvanizada .caption {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #4a4a4a;
  font-size: 20px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  padding: 20px 40px;
  text-align: center;
  border-radius: 10px;
  width: 903px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#product-lamina-acanalada {
  background-color: #ffffff;
  padding: 80px 0;
}

#product-lamina-acanalada .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#product-lamina-acanalada .tabs {
  display: flex;
  margin-bottom: 60px;
}

#product-lamina-acanalada .tab-left {
  flex: 0 0 420px;
  padding: 20px 0px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  background-color: #2644a4;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  text-align: center;
}

#product-lamina-acanalada .tab-right {
  flex: 1;
  padding: 20px 30px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  background-color: #eeeeee;
  color: #7a7a7a;
  border-radius: 0 50px 50px 0;
}

#product-lamina-acanalada .description {
  margin-bottom: 50px;
}

#product-lamina-acanalada .text {
  color: #7a7a7a;
  font-size: 16px;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  line-height: 1.8;
}

#product-lamina-acanalada .image-container {
  position: relative;
}

#product-lamina-acanalada .image-container img {
  width: 100%;
  display: block;
}

#product-lamina-acanalada .caption {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #4a4a4a;
  font-size: 20px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  padding: 20px 40px;
  text-align: center;
  border-radius: 10px;
  width: 903px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#product-lamina-v72 {
  background-color: #ffffff;
  padding: 80px 0;
}

#product-lamina-v72 .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#product-lamina-v72 .tabs {
  display: flex;
  margin-bottom: 40px;
}

#product-lamina-v72 .tab-left {
  flex: 0 0 420px;
  padding: 20px 0px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  background-color: #2644a4;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  text-align: center;
}

#product-lamina-v72 .tab-right {
  flex: 1;
  padding: 20px 40px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  background-color: #eeeeee;
  color: #7a7a7a;
  border-radius: 0 50px 50px 0;
}

#product-lamina-v72 .description {
  margin-bottom: 50px;
}

#product-lamina-v72 .text {
  color: #7a7a7a;
  font-size: 16px;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  line-height: 1.8;
}

#product-lamina-v72 .image-container {
  position: relative;
  margin-bottom: 60px;
}

#product-lamina-v72 .image-container img {
  width: 100%;
  display: block;
}

#product-lamina-v72 .caption {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #4a4a4a;
  font-size: 20px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  padding: 20px 0px;
  text-align: center;
  border-radius: 10px;
  width: 903px;
  height: auto;
  min-height: 79px;
}

#product-lamina-v72 .caption-text {
  margin-bottom: 25px;
}

#product-lamina-v72 .spec-item {
  font-size: 20px;
  margin-bottom: 25px;
}

#product-lamina-v72 .label {
  color: #1f479f;
  font-weight: 700;
}

#product-lamina-ondulada {
  background-color: #ffffff;
  padding: 0 0 80px;
}

#product-lamina-ondulada .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#product-lamina-ondulada .tabs {
  display: flex;
  margin-bottom: 40px;
}

#product-lamina-ondulada .tab-left {
  flex: 0 0 440px;
  padding: 20px 0px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  background-color: #2644a4;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  text-align: center;
}

#product-lamina-ondulada .tab-right {
  flex: 1;
  padding: 20px 30px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  background-color: #eeeeee;
  color: #7a7a7a;
  border-radius: 0 50px 50px 0;
}

#product-lamina-ondulada .description {
  margin-bottom: 50px;
}

#product-lamina-ondulada .text {
  color: #7a7a7a;
  font-size: 16px;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  line-height: 1.8;
}

#product-lamina-ondulada .image-container {
  position: relative;
  margin-bottom: 60px;
}

#product-lamina-ondulada .image-container img {
  width: 100%;
  display: block;
}

#product-lamina-ondulada .caption {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #4a4a4a;
  font-size: 20px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  padding: 20px 0px;
  text-align: center;
  border-radius: 10px;
  width: 903px;
  height: auto;
  min-height: 79px;
}

#product-lamina-ondulada .caption-text {
  margin-bottom: 25px;
}

#product-lamina-ondulada .spec-item {
  font-size: 20px;
  margin-bottom: 25px;
}

#product-lamina-ondulada .label {
  color: #1f479f;
  font-weight: 700;
}

#product-losacero {
  background-color: #ffffff;
  padding: 0 0 80px;
}

#product-losacero .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

#product-losacero .tabs {
  display: flex;
  margin-bottom: 60px;
}

#product-losacero .tab-left {
  flex: 0 0 300px;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 800;
  background-color: #2644a4;
  color: #ffffff;
  border-radius: 50px 0 0 50px;
  text-align: center;
}

#product-losacero .tab-right {
  flex: 1;
  padding: 20px 60px;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
  background-color: #eeeeee;
  color: #7a7a7a;
  border-radius: 0 50px 50px 0;
}

#product-losacero .intro {
  margin-bottom: 50px;
}

#product-losacero .intro .text {
  color: #7a7a7a;
  font-size: 16px;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  line-height: 1.8;
}

#product-losacero .intro .text strong {
  color: #4a4a4a;
  font-weight: 700;
}

#product-losacero .content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

#product-losacero .info {
  flex: 1;
}

#product-losacero .subtitle {
  color: #282828;
  font-size: 26px;
  font-family: var(--font-Montserrat);
  font-weight: 700;
  margin-bottom: 30px;
}

#product-losacero .features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#product-losacero .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

#product-losacero .icon {
  width: 42px;
  height: 36px;
  flex-shrink: 0;
}

#product-losacero .feature-item .text {
  color: #7a7a7a;
  font-size: 16px;
  font-family: var(--font-Montserrat);
  font-weight: 400;
  line-height: 1.6;
}

#product-losacero .image {
  flex: 0 0 600px;
}

#product-losacero .image img {
  width: 100%;
  display: block;
}


a#toTop {
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  position: fixed;
  background: #002dba;
  box-shadow: 0 0 3px 2px #fff;
  left: 40px;
  bottom: 65px;
  display: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  z-index: 20;
}

a#toTop::before {
  content: "\f077";
  font-family: FontAwesome;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 40px;
  text-align: center;
}
