@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/centurygothic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

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

.wow {
  visibility: hidden;
}

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

html {
  font-size: 10px;
}

:root {
  /*movile*/
  --font-Lato: "Lato", sans-serif;
  --font-Arial: Arial, Helvetica, sans-serif;

  --font-opensans: "Open Sans", sans-serif;
  --font-Oswald: "Oswald", sans-serif;
  --font-Montserrat: "Montserrat", sans-serif;
  --font-Verdana: Verdana, sans-serif;

  /*
--font-Poppins: "Poppins", sans-serif;
--font-Inter: "Inter", sans-serif;
--font-Baloo2: "Baloo 2", sans-serif;


--font-Roboto: "Roboto", sans-serif;
--font-Myriad: "Myriad Pro", sans-serif;

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.main-header {
  width: 100%;
}

.top-bar {
  width: 100%;
  position: relative;
  z-index: 10;
}

.top-bar::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
  pointer-events: none;
}

.top-bar .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar-inner {
  display: flex;
  align-items: stretch;
}

.top-bar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px 20px 0;
  background-color: #ffffff;
}

.top-bar-logo img {
  height: 100px;
  width: auto;
}

.top-bar-right {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin-left: 60px;
  padding-left: 60px;
  border-radius: 0 0 0 50px;
  background-color: #008fca;
  flex: 1;
  position: relative;
}

.top-bar-info::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100vw;
  background-color: #008fca;
}

.top-bar-site,
.top-bar-address {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-address {
  margin-left: 50px;
}

.top-bar-site i,
.top-bar-address i {
  color: #008fca;
  font-size: 1.8rem;
  background-color: #ffffff;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.top-bar-site span,
.top-bar-site a,
.top-bar-address span,
.top-bar-address a {
  color: #ffffff;
  font-size: 15px;
  font-family: var(--font-Arial);
  text-decoration: none;
}

.top-bar-site a:hover,
.top-bar-address a:hover {
  text-decoration: underline;
}

.top-bar-phone {
  text-decoration: none;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-left: 60px;
  padding-left: 60px;
  background-color: #ffffff;
  flex: 1;
}

.top-bar-phones {
  display: flex;
  align-items: center;
  gap: 50px;
}

.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  font-size: 15px;
  font-family: var(--font-opensans);
}

.top-bar-phone i {
  color: #ffffff;
  font-size: 1.5rem;
  background-color: #00adef;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.top-bar-email {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-email i {
  color: #ffffff;
  font-size: 1.5rem;
  background-color: #00adef;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.top-bar-email a {
  color: #333333;
  font-size: 15px;
  font-family: var(--font-opensans);
  text-decoration: none;
}

.top-bar-email a:hover,
.top-bar-phone:hover {
  color: #0a9dc7;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.top-bar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background-color: #00adef;
  color: #ffffff;
  font-size: 2.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.top-bar-social a:hover {
  background-color: #4ecff3;
}

.top-bar-social a .fa-facebook,
.top-bar-social a .fa-facebook-f {
  margin-bottom: -8px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  width: 100%;
  max-width: 1300px;
  flex: 1;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 637px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-pagination {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-pagination-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
}

.swiper-pagination-hero {
  position: static !important;
  display: flex !important;
  justify-content: flex-end;
  gap: 8px;
  pointer-events: all;
}

.swiper-pagination-hero .swiper-pagination-bullet {
  width: 56px;
  height: 9px;
  border-radius: 0;
  background-color: #ffffff;
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.swiper-pagination-hero .swiper-pagination-bullet-active {
  background-color: #00adef;
}

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

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
}

.nav-menu-wrapper {
  background-color: rgba(180, 180, 180, 0.4);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 70px;
  background-color: #9ca3a8;
  position: relative;
}

.nav-menu::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100vw;
  background-color: #9ca3a8;
}

.nav-menu::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 190px;
  background-color: #9ca3a8;
  border-radius: 0 0 0 50px;
}

.nav-menu li a {
  display: block;
  padding: 23px 0;
  width: 87px;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-family: var(--font-Oswald);
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nav-menu li a.active,
.nav-menu li a:hover {
  background-color: #fff;
  font-weight: 700;
  color: #008fca;
}

.hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  max-width: 900px;
  align-self: flex-start;
}

.hero-title {
  font-size: 50px;
  font-weight: 900;
  color: #ffffff;
  font-family: var(--font-Montserrat);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  font-family: var(--font-Montserrat);
  margin-bottom: 15px;
}
q .hero-subtitle span {
  font-weight: 600;
}

.hero-desc {
  font-size: 22px;
  color: #ffffff;
  font-family: var(--font-Montserrat);
  margin-bottom: 10px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-products {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 171px;
  height: 43px;
  padding: 0;
  background-color: #ffffff;
  color: #005f82;
  font-size: 17px;
  font-family: "Century Gothic", sans-serif;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #ffffff;
  border-radius: 0 8px 0;
  transition: all 0.3s ease;
}

.btn-products:hover {
  background-color: transparent;
  color: #ffffff;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 171px;
  height: 43px;
  padding: 0;
  background-color: #00adef;
  color: #ffffff;
  font-size: 17px;
  font-family: "Century Gothic", sans-serif;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #00adef;
  border-radius: 0 8px 0;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: transparent;
  color: #ffffff;
}

/*categories bar*/
.categories-bar {
  background-color: #ffffff;
  padding: 0 0 30px;
  position: relative;
  z-index: 1;
}

.categories-inner {
  display: flex;
  justify-content: center;
  gap: 35px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 5px;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
  transform: translateY(-40px);
  margin-bottom: -30px;
}

.cat-card {
  background-color: #00adef;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 17px 10px;
  gap: 12px;
  flex: 1;
  cursor: pointer;
}

.cat-card img {
  width: 120px;
  height: auto;
}

.cat-card span {
  color: #ffffff;
  font-family: var(--font-Oswald);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/*top footer*/
.top-footer {
  background-color: #2a2a2a;
  padding: 0;
  position: relative;
  z-index: 1;
}

.tf-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.tf-logo {
  width: 348px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.tf-logo img {
  width: 348px;
  height: 449px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  margin: -10px 0;
}

.tf-triangle {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 1;
}

.tf-triangle-top-right {
  top: -10px;
  right: -9px;
  border-right: 9px solid transparent;
  border-bottom: 11px solid #313131;
}

.tf-triangle-top-left {
  top: -10px;
  left: -9px;
  border-left: 9px solid transparent;
  border-bottom: 11px solid #313131;
}

.tf-triangle-bottom-right {
  bottom: -10px;
  right: -9px;
  border-right: 9px solid transparent;
  border-top: 11px solid #313131;
}

.tf-triangle-bottom-left {
  bottom: -10px;
  left: -9px;
  border-left: 9px solid transparent;
  border-top: 11px solid #313131;
}

.tf-cols {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-left: 90px;
}

.tf-col {
  text-align: center;
}

.tf-title {
  color: #ffffff;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: left;
}

.tf-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: 7px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
}

.tf-item i {
  color: #ffffff;
  margin-top: 4px;
  flex-shrink: 0;
}

.tf-item .fa-phone-alt {
  transform: scaleX(-1);
}

.tf-item span,
.tf-item a {
  color: #cccccc;
  text-decoration: none;
  line-height: 1.6;
  text-align: left;
}

.tf-item a:hover {
  color: #ffffff;
}

.tf-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.tf-social a {
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.tf-social a:hover {
  opacity: 0.7;
}

/*footer*/
.main-footer {
  background-color: #00adef;
  padding: 32px 0;
}

.main-footer .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px;
}

.footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.main-footer .footer-separator {
  background: transparent;
}

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

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

.footer-left {
  order: 0;
}

.footer-left p {
  color: #ffffff;
  font-size: 11px;
  font-family: var(--font-Inter);
  margin: 0;
  text-align: left;
}

.footer-right {
  order: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-right span {
  color: #ffffff;
  font-size: 11px;
  font-family: var(--font-Inter);
}

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

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

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

a#toTop {
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  position: fixed;
  background: #000;
  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;
}

/*inicio*/

#intro {
  display: flex;
  width: 100%;
  min-height: 500px;
  padding: 80px 0;
}

#intro .images {
  width: 46%;
  flex-shrink: 0;
  max-height: 600px;
  padding-left: 30px;
  padding-bottom: 30px;
}

#intro .grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  grid-template-rows: 180px 1fr 180px;
  gap: 25px;
  overflow: hidden;
  height: 100%;
}

#intro .cell {
  overflow: hidden;
  min-height: 0;
  min-width: 0;
  border-radius: 10px;
}

#intro .cell.top-left {
  grid-row: 1;
  grid-column: 1;
}

#intro .cell.top-right {
  grid-row: 1 / 3;
  grid-column: 2;
}

#intro .cell.bottom-left {
  grid-row: 2 / 4;
  grid-column: 1;
}

#intro .cell.bottom-right {
  grid-row: 3;
  grid-column: 2;
}

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

#intro .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 70px;
}

#intro .welcome {
  font-size: 18px;
  color: #555555;
  font-family: var(--font-opensans);
  margin-bottom: 30px;
}

#intro .title {
  font-size: 40px;
  font-weight: 800;
  color: #00adef;
  font-family: var(--font-Montserrat);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0;
}

#intro .desc .bold {
  font-weight: 800;
  color: #3a3a3a;
}

#intro .desc {
  font-size: 18px;
  color: #3a3a3a;
  font-family: var(--font-opensans);
  line-height: 2;
  font-weight: 500;
  margin-bottom: 35px;
}

#intro .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 42px;
  background-color: #00adef;
  color: #ffffff;
  font-size: 16px;
  font-family: "Century Gothic", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  align-self: flex-end;
  border-radius: 0 8px 0 8px;
  margin-right: 200px;
}

#intro .btn:hover {
  background-color: #008fca;
}

#intro-2 {
  width: 100%;
  height: 535px;
  background-image: url("../images/inicio/clinical.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 7px 5px -5px rgba(0, 0, 0, 0.5);
}

#intro-2 .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 930px;
  padding: 0 20px;
  margin-top: -150px;
}

#intro-2 .title {
  font-family: var(--font-Montserrat);
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

#intro-2 .title span {
  color: #00adef;
}

#intro-2 .line {
  width: 58px;
  height: 2px;
  background-color: #ffffff;
  margin-bottom: 20px;
}

#intro-2 .desc {
  font-family: var(--font-opensans);
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 2;
}

#intro-3 {
  width: 100%;
  background-color: transparent;
  padding-top: 0;
}

#intro-3 .images {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: -140px;
  padding: 0 20px;
  padding-bottom: 60px;
}

#intro-3 .img-wrap {
  position: relative;
  max-width: 323px;
  flex: 1;
  min-width: 0;
}

#intro-3 .img-wrap::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url("../images/inicio/shadow.png");
  background-size: 100% 100%;
  pointer-events: none;
}

#intro-3 .images img {
  width: 100%;
  max-width: 323px;
  height: auto;
  aspect-ratio: 323 / 471;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/*nosotros*/

#about {
  width: 100%;
  min-height: 650px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: -60px;
}

#about .container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
  margin-top: 80px;
}

#about .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

#about .title {
  font-family: var(--font-Montserrat);
  font-size: 40px;
  font-weight: 800;
  color: #00adef;
  text-transform: uppercase;
}

#about .desc {
  font-family: var(--font-opensans);
  font-size: 18px;
  color: #3a3a3a;
  font-weight: 500;
  line-height: 2;
}

#about .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #008fca;
  color: #ffffff;
  font-family: "Century Gothic", sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  padding: 8px 27px;
  border-radius: 19px;
  align-self: flex-end;
  transition: background-color 0.3s ease;
}

#about .btn:hover {
  background-color: #008fca;
}

#about .btn img {
  height: 26px;
  width: auto;
}

#about .image {
  position: absolute;
  left: 54%;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  overflow: hidden;
}

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

#about-2 {
  width: 100%;
  background-image: url("../images/nosotros/bg.webp");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

#about-2 .container {
  max-width: 1300px;
}

#about-2 .inner {
  display: flex;
  justify-content: center;
  gap: 80px;
}

#about-2 .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 525px;
}

#about-2 .col img {
  width: 194px;
  height: auto;
  margin-bottom: 25px;
}

#about-2 .title {
  font-family: var(--font-Montserrat);
  font-size: 40px;
  font-weight: 800;
  color: #00b5ff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

#about-2 .subtitle {
  font-family: var(--font-Montserrat);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 15px;
}

#about-2 .desc {
  font-family: var(--font-opensans);
  font-size: 16px;
  color: #ffffff;
  line-height: 1.2;
}

#about-3 {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
}

#about-3 .images {
  display: flex;
  justify-content: center;
  gap: 90px;
  max-width: 1765px;
  margin: 0 auto;
  padding: 0 20px;
}

#about-3 .img-wrap {
  flex: 1;
  min-width: 0;
}

#about-3 .img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/*contacto*/

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

#contact .container {
  max-width: 1300px;
}

#contact .title {
  font-family: var(--font-Montserrat);
  font-size: 72px;
  font-weight: 700;
  color: #00adef;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

#contact .desc {
  font-family: var(--font-opensans);
  font-size: 20px;
  color: #282828;
  margin-bottom: 50px;
}

#contact .form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

#contact .row {
  display: flex;
  gap: 25px;
}

#contact .row .field {
  flex: 1;
}

#contact .field input,
#contact .field textarea {
  width: 100%;
  background-color: #e0f6ff;
  border: none;
  padding: 20px 20px;
  font-family: var(--font-Verdana);
  font-size: 17px;
  color: #000;
  outline: none;
}

#contact .field textarea {
  min-height: 61px;
  max-height: 100px;
  margin-bottom: 30px;
}

#contact .field input::placeholder,
#contact .field textarea::placeholder {
  color: #959595;
}

#contact .bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  margin-top: 10px;
}

#contact .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 54px;
  background-color: #00adef;
  color: #ffffff;
  font-family: var(--font-Arial);
  font-size: 22px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact .btn:hover {
  background-color: #008fca;
}

#contact-2 {
  width: 100%;
  background-color: #00adef;
  padding: 40px 0;
  box-shadow: inset 0 7px 5px -5px rgba(0, 0, 0, 0.5);
}

#contact-2 .container {
  max-width: 1300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#contact-2 p {
  color: #ffffff;
  font-family: var(--font-Lato);
  font-size: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}

#contact-2 p i {
  font-size: 18px;
}

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

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

/*galeria*/

body.page-noticias .categories-bar {
  padding: 0;
}

#gallery .header {
  background-color: #3a3a3a;
  padding: 35px 0;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 7px 5px -5px rgba(0, 0, 0, 0.5);
}

#gallery .header .container {
  display: flex;
  justify-content: center;
}

#gallery .title {
  font-family: var(--font-Montserrat);
  font-size: 34px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}


#gallery .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 150px 20px;
}

#gallery .item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

#gallery .item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

#gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#gallery .item:hover img {
  transform: scale(1.04);
}

#gallery .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#gallery .item:hover .overlay {
  opacity: 1;
}

#gallery .zoom {
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

#gallery .zoom img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  display: block;
}

#gallery .item:hover .zoom {
  transform: scale(1);
}

#gallery .empty {
  font-family: var(--font-Lato);
  font-size: 16px;
  color: #999999;
  padding: 40px 20px;
  grid-column: 1 / -1;
  text-align: center;
}

/*productos*/

body.page-productos .categories-bar {
  padding: 0;
}

#products {
  width: 100%;
  background-color: #ffffff;
}

#products .header {
  background-color: #3a3a3a;
  padding: 35px 0;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 7px 5px -5px rgba(0, 0, 0, 0.5);
}

#products .header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#products .title {
  font-family: var(--font-Montserrat);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

#products .btn-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00adef;
  color: #ffffff;
  font-family: "Century Gothic", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 40px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

#products .btn-all:hover,
#products .btn-all.active {
  background-color: #2594bf;
}

#products .alphabet {
  background-color: #2594bf;
  padding: 24px 0;
}

#products .alpha-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

#products .alpha-list .alpha-item {
  font-family: var(--font-Oswald);
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px 4px 0 0;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
  position: relative;
}

#products .alpha-list .alpha-item::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

#products .alpha-list .alpha-item:hover,
#products .alpha-list .alpha-item.active {
  background-color: #fff;
  color: #535353;
}

#products .alpha-list .alpha-item:hover::after,
#products .alpha-list .alpha-item.active::after {
  opacity: 1;
}

#products .list {
  padding: 80px 0;
}

#products .list .container {
  max-width: 1100px;
}

#products .columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

#products .col {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

#products .col li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-Lato);
  font-size: 16px;
  color: #333333;
  padding: 5px 0;
}

#products .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 3px solid #2594bf;
  background-color: #ffffff;
  flex-shrink: 0;
}

#products .empty {
  font-family: var(--font-Lato);
  font-size: 16px;
  color: #999999;
  padding: 20px 0;
}
