@font-face {
  font-family: "FamGothamBlack"; /* Nombre personalizado de la fuente */
  src: url("../assets/fuentes/Gotham-Black.otf") format("opentype"); /* Ruta y formato */
}
@font-face {
  font-family: "FamGothamLight"; /* Nombre personalizado de la fuente */
  src: url("../assets/fuentes/Gotham-Light.otf") format("opentype"); /* Ruta y formato */
}
@font-face {
  font-family: "FamGothamThin"; /* Nombre personalizado de la fuente */
  src: url("../assets/fuentes/Gotham-Thin.otf") format("opentype"); /* Ruta y formato */
}
@font-face {
  font-family: "FamGothamBookItalic"; /* Nombre personalizado de la fuente */
  src: url("../assets/fuentes/Gotham-BookItalic.otf") format("opentype"); /* Ruta y formato */
}
@font-face {
  font-family: "FamGothamBold"; /* Nombre personalizado de la fuente */
  src: url("../assets/fuentes/Gotham-Bold.otf") format("opentype"); /* Ruta y formato */
}
@font-face {
  font-family: "FamGothamMedium"; /* Nombre personalizado de la fuente */
  src: url("../assets/fuentes/Gotham-Medium.otf") format("opentype"); /* Ruta y formato */
}
:root {
  --gotham-Black-font: "FamGothamBlack", sans-serif;
  --gotham-Bold-font: "FamGothamBold", sans-serif;
  --gotham-Light-font: "FamGothamLight", sans-serif;
  --gotham-Thin-font: "FamGothamThin", sans-serif;
  --gotham-Medium-font: "FamGothamMedium", sans-serif;
  --gotham-bookitalic-font: "FamGothamBookItalic", sans-serif;
  --bebas-font: "Bebas Neue", sans-serif;
  --color-blue-strong: #002c46;
  --color-black: #424547;
  --color-gray: #888888;
  --color-orange-strong: #e96123;
  --color-orange-light: #f06632;
  --color-footer: #484b4d;
  --color-yellow: #e1a62b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}
/*header*/
header,
.header-comp,
.footer-comp,
footer {
  width: 100%;
  max-width: 1920px;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-blue-strong);
  padding: 20px;
}
.header-container-left,
.desktop-menu,
.phone1,
.phone1 a,
.phone2,
.phone2 a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.phones {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
}
.header-container-left {
  flex-direction: column;
  position: relative;
}
.header-container-left p {
  position: absolute;
  width: 100%;
  display: flex;
  color: white;
  font-family: var(--gotham-Light-font);
  font-size: 1rem;
  bottom: 0px;
  left: 70px;
}
.header-container-left img {
  width: 350px;
}
.header-container-left a {
  display: flex;
  width: 100%;
}
.header-container-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.phone1,
.phone2 {
  justify-content: end;
}
.phone1 a,
.phone2 a {
  gap: 10px;
}
/* .phone1 a, .phone2 a {
  justify-content: end;
} */
.phone1 span,
.phone2 span {
  color: white;
  font-family: var(--gotham-Bold-font);
  font-size: 1.2rem;
  font-weight: bold;
}
.phone1 a img,
.phone2 a img {
  width: 35px;
  height: 35px;
}

.menu,
nav,
.menu ul {
  width: 100%;
  display: flex;
  align-items: center;
}
.menu ul {
  justify-content: space-evenly;
  text-decoration: none;
  list-style: none;
}
.menu ul li a {
  color: white;
  text-decoration: none;
  font-family: var(--gotham-Thin-font);
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
.menu ul li a:hover,
.menu-active {
  border-bottom: 5px solid var(--color-yellow);
  padding-bottom: 3px;
}
.toggle-menu,
.mobile-menu,
.menu--show {
  display: none;
}
.flecha-submenu {
  width: 20px;
}
.submenu {
  position: relative;
}
.dropdown-menu {
  display: none;
}

.menu li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 3;
  background-color: white;
  border-radius: 10px;
  box-shadow: 4px 6px 10px 5px rgba(0, 0, 0, 0.5);
}

.menu li:hover .dropdown-menu ul {
  margin: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.menu li:hover .dropdown-menu ul li {
  width: 350px;
  margin-bottom: 5px;
  padding: 5px;
}
.menu li:hover .dropdown-menu ul li a {
  color: black;
  text-decoration: none;
  font-family: var(--gotham-Thin-font);
  font-size: 1.2rem;
  font-weight: bolder;
  letter-spacing: 0.1rem;
}

.menu li:hover .dropdown-menu ul li:hover {
  background-color: var(--color-orange);
  border-radius: 10px;
}

.menu li:hover .dropdown-menu ul li:hover a {
  color: black;
  font-weight: bold;
}

/*=============== DIVISOR ===============*/
/*divisor*/
.divisor {
  width: 100%;
  max-width: 1920px;
  height: 30px;
  background-color: black;
}

.divisor2 {
  width: 100%;
  max-width: 1920px;
  height: 30px;
  background-color: var(--color-blue-strong);
}

/*divisor*/

/*=============== SLIDER ===============*/
/* slider hero */
.hero {
  width: 100%;
  height: 500px;
  max-width: 1920px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #ffffff);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, #00ffdd);
}

.mySwiper2.desktop {
  display: flex;
}

.mySwiper2.mobile {
  display: none;
}

/* slider hero */

/*=============== CONTENIDO DENTRO DEL SLIDER ===============*/
/*Contenido del hero*/
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5e5f7;
  width: 100%;
  height: 500px;
  position: absolute;
  z-index: 1;
  padding: 0 100px 0 100px;
  background: transparent;
}

.bg-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.txt-slider {
  width: 36%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: slideInLeft 1s ease-out forwards;
  text-shadow: 7px 7px 6px rgb(106 78 1 / 50%);
}

.txt-slider p {
  font-size: 3rem;
  font-family: var(--gotham-Bold-font);
  color: #ffffff;
  text-align: center;
  /*   font-weight: bold; */
}

.txt-slider p span {
  font-size: 2.6rem;
  font-family: var(--gotham-Bold-font);
  font-weight: bold;
  color: #ffffff;
  text-align: left;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.img-slider {
  width: 1024px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  animation: slideInRight 1s ease-out forwards;
  padding: 15px;
}
.img-slider img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.btn-cotizacion {
  width: 80%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: var(--color-blue-strong);
  font-family: var(--gotham-Bold-font);
  font-size: 1.5rem;
  margin-top: 30px;
  text-decoration: none;
  border-radius: 15px;
  letter-spacing: 0.05rem;
}

.btn-cotizacion:hover {
  background-color: var(--color-blue-strong);
  color: var(--color-yellow);
}

/* contenido del hero */

/*=============== catálogo ===============*/
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  padding: 0 100px;
}
.container-catalogo {
  width: 100%;
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.catalogo-item {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  position: relative;
}
.catalogo-item:first-child {
  height: 130px;
  background-color: white;
}
.catalogo-item img {
  width: 100%;
  height: 250px;
  position: absolute;
  object-fit: cover;
  z-index: 1;
}
.catalogo-item:hover img {
  animation: cat-item 0.2s linear forwards;
}

@keyframes cat-item {
  0% {
    border: 0px solid var(--color-yellow);
  }
  100% {
    border: 20px solid var(--color-yellow);
  }
}
@keyframes cat-itemM {
  0% {
    border: 0px solid var(--color-yellow);
  }
  100% {
    border: 8px solid var(--color-yellow);
  }
}
.catalogo-item h2:first-child {
  font-family: var(--gotham-Bold-font);
  color: var(--color-blue-strong);
  text-shadow: none;
  font-size: 5rem;
  z-index: 2;
}
.catalogo-item h2 {
  font-family: var(--gotham-Bold-font);
  color: white;
  z-index: 2;
  text-shadow: 7px 7px 6px rgb(0 0 0 / 50%);
}
.catalogo-item a {
  width: 15%;
  margin-top: 20px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: var(--gotham-Bold-font);
  font-size: 2rem;
  border-radius: 20px;
  background: var(--color-yellow);
  color: var(--color-blue-strong);
  z-index: 2;
}
.catalogo-item a:hover {
  background: white;
  color: var(--color-blue-strong);
}
.categoria-oculta {
  display: none;
}
.container-btn-catalogo {
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: black;
}
.btn-vermas {
  width: 12%;
  height: 60px;
  border-radius: 20px;
  font-family: var(--gotham-Bold-font);
  font-size: 2rem;
  font-weight: 500;
}
.btn-vermas:hover {
  background: var(--color-yellow);
  color: white;
}
.btn-vermas:focus {
  background: var(--color-yellow);
  color: white;
}
/*=============== /catálogo ===============*/

/*=============== nuestros provedores ===============*/
.container-proveedores {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  height: 200px;
}

.container-proveedores img {
  width: 150px;
  margin: 0 20px;
  transition: 0.5s;
  cursor: pointer;
}

/* .container-proveedores img:not(:hover) {
  filter: grayscale(100%);
} */

.container-proveedores .scroll {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #fff 20%,
    #fff 80%,
    transparent
  );
}

.container-proveedores .scroll div {
  white-space: nowrap;
  animation: animate 60s linear infinite;
}

@keyframes animate {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.container-proveedores .scroll:hover div {
  animation-play-state: paused;
}
/*=============== /nuestros provedores ===============*/

/*=============== contacto ===============*/
.container-contacto {
  width: 100%;
  max-width: 1920px;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-blue-strong);
  font-family: var(--gotham-Bold-font);
  padding: 50px 100px;
}
.contacto-mapa {
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacto-info {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding-top: 10px;
}
.contacto-info {
  font-size: 2.5rem;
}
.img-ubicacion {
  width: 100px;
  margin-bottom: 20px;
}
.mapa {
  width: 650px;
  height: 450px;
  border: 5px solid white;
  border-radius: 25px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.info-contacto {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.info-contacto a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color: white;
}
.txt-span {
  font-size: 1.5rem;
}
.img-contacto {
  width: 40px;
  height: 40px;
}
/*=============== /contacto ===============*/
/*=============== whatsapp ===============*/
.btn-wsp {
  width: 85px;
  height: 85px;
  background: #25d366;
  position: fixed;
  border-radius: 50%;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  left: 40px;
  background-image: url(../assets/icons/whatsapp_white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 64px 64px;
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.75);
}

.btn-wsp:hover {
  background: #ffffff;
  background-image: url(../assets/icons/whatsapp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 64px 64px;
}
/*=============== -whatsapp ===============*/
/* secciones */
.sec-titulo {
  width: 100%;
  max-width: 1920px;
  height: 150px;
  background: var(--color-yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-family: var(--gotham-Bold-font);
  color: var(--color-blue-strong);
}
/*=============== footer ===============*/
footer,
.footer-comp {
  height: 300px;
  background: black;
}
.footer-logo,
.foorer-menu,
.foorer-politicas,
.foorer-redes {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo {
  width: 350px;
  height: 300px;
}
.menu-navegation {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu-navegation .menu-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
  gap: 15px;
}
.menu-navegation ul li {
  list-style: none;
}
.menu-navegation ul li a {
  text-decoration: none;
  color: white;
  font-family: var(--gotham-Light-font);
  font-size: 1.2rem;
}
.menu-navegation ul li a:hover {
  border-bottom: 5px solid var(--color-yellow);
  padding-bottom: 3px;
}
.foorer-redes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.foorer-redes p {
  font-family: var(--gotham-Light-font);
  font-weight: 700;
  color: white;
}
.menu-redes {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.menu-redes img {
  width: 45px;
  height: 45px;
}
.foorer-menu .menu-navegation ul li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  top: -345px;
  z-index: 3;
  background-color: white;
  border-radius: 10px;
  box-shadow: 4px 6px 10px 5px rgba(0, 0, 0, 0.5);
}

.menu li:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 3;
  background-color: white;
  border-radius: 10px;
  box-shadow: 4px 6px 10px 5px rgba(0, 0, 0, 0.5);
}

.foorer-menu .menu-navegation ul li:hover .dropdown-menu ul {
  margin: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.foorer-menu .menu-navegation ul li:hover .dropdown-menu ul li {
  width: 350px;
  margin-bottom: 5px;
  padding: 5px;
}
.foorer-menu .menu-navegation ul li:hover .dropdown-menu ul li a {
  color: black;
}

.foorer-menu .menu-navegation ul li:hover .dropdown-menu ul li:hover {
  background-color: var(--color-orange);
  border-radius: 10px;
}

.foorer-menu .menu-navegation ul li:hover .dropdown-menu ul li:hover a {
  color: black;
  font-weight: bold;
}

/*=============== /footer ===============*/

/*=============== BREAKPOINTS ===============*/
@media screen and (min-width: 250px) and (max-width: 767px) {
  .header-comp,
  header {
    height: auto;
    padding: 10px;
  }
  .toggle-menu,
  .mobile-menu {
    display: flex;
  }
  .toggle-menu img {
    width: 50px;
    height: 50px;
  }
  .desktop-menu {
    display: none;
  }
  .mobile-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-container-right {
    margin-top: 10px;
  }
  .header-container-left {
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 20px;
  }
  .header-container-left p{
    left: 50px;
  }
  .header-container-left img {
    margin: 0;
  }
  .header-container-left .imglogo {
    width: 250px;
  }
  .phones {
    flex-direction: column;
    justify-content: left;
    gap: 20px;
  }
  
  .phone1,
  .phone1 a,
  .phone2,
  .phone2 a {
    justify-content: start;
  }
  .menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .menu li:hover .dropdown-menu {
    left: -30px;
  }
  .foorer-menu .menu-navegation ul li:hover .dropdown-menu {
    left: -80px;
  }
  /*Hero - slider*/
  .slider-container {
    padding: 5px;
    height: 100%;
    flex-direction: column-reverse;
    justify-content: space-evenly;
  }

  .img-slider {
    width: 100%;
    height: 100%;
  }

  .txt-slider {
    width: 100%;
    padding: 10px;
    gap: 2px;
  }
  .img-slider img {
    width: 450px;
    padding: 0 40px;
  }

  .txt-slider p {
    font-size: 1.5rem;
  }

  .btn-cotizacion {
    width: 80%;
    margin-bottom: 30px;
  }

  .swiper-pagination {
    margin-bottom: 10px;
  }
  /* categorias */
  main {
    width: 100%;
    padding: 0;
  }
  .catalogo-item h2:first-child {
    font-size: 2.5rem;
  }
  .catalogo-item h2 {
    font-size: 1.5rem;
  }
  .catalogo-item:first-child {
    height: 60px;
  }
  .catalogo-item,
  .catalogo-item img {
    height: 130px;
  }
  .catalogo-item:hover img {
    height: 130px;
    animation: cat-itemM 0.2s linear forwards;
  }
  .catalogo-item a {
    width: 35%;
    font-size: 1rem;
  }
  .btn-vermas {
    width: 40%;
    font-size: 1.5rem;
    height: 60px;
  }
  /* contacto */
  .container-contacto {
    flex-direction: column-reverse;
    padding: 10px;
    height: auto;
  }
  .img-ubicacion {
    width: 60px;
    margin-top: 10px;
  }
  .mapa {
    height: 450px;
    margin-bottom: 15px;
  }
  .contacto-info {
    font-size: 1.5rem;
  }
  .txt-span {
    font-size: 1.2rem;
  }
  /* footer */
  footer,
  .footer-comp {
    flex-direction: column;
    height: auto;
    gap: 40px;
  }
  .footer-logo,
  .foorer-menu,
  .foorer-politicas,
  .foorer-redes {
    width: 100%;
  }
  .logo {
    height: 90px;
  }
  .menu-navegation {
    flex-direction: row;
    justify-content: left;
  }
  .sec-titulo {
    font-size: 1rem;
    height: 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
  header, .header-comp, .footer-comp, footer{
    height: auto;
    padding: 0;
  }
  .toggle-menu,
  .mobile-menu {
    display: flex;
  }
  .toggle-menu img {
    width: 50px;
    height: 50px;
  }
  .desktop-menu {
    display: none;
  }
  .mobile-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-container-right {
    margin-top: 50px;
  }
  .header-container-left {
    justify-content: space-between;
    flex-direction: row;
     margin-bottom: 20px;
  }
  .header-container-left p{
    padding-bottom: 10px;
  }
  .header-container-left img {
    margin: 0;
  }
  .phones {
    justify-content: left;
    gap: 20px;
  }
  .phone1,
  .phone2 {
    justify-content: start;
  }
  .menu ul {
    align-items: flex-start;
  }
  /*Hero - slider*/
  .slider-container {
    padding: 5px;
    height: 350px;
  }

  .img-slider {
    width: 100%;
    height: 100%;
  }

  .txt-slider {
    width: 100%;
    padding: 10px;
    gap: 2px;
  }

  .txt-slider p,
  .txt-slider p span {
    font-size: 2rem;
  }

  .btn-cotizacion {
    width: 80%;
    margin-bottom: 30px;
  }

  .swiper-pagination {
    margin-bottom: 10px;
  }
  /* categorias */
  .catalogo-item h2:first-child,
  .catalogo-item h2 {
    font-size: 1rem;
  }
  .catalogo-item {
    text-align: center;
  }
  .catalogo-item a,
  .btn-vermas {
    width: 80%;
  }
  /* contacto */
 /*  .container-contacto {
    flex-direction: column-reverse;
  } */
  .container-contacto {
    padding: 10px;
  }
  .mapa {
    height: 450px;
  }
  .contacto-info {
    font-size: 2rem;
  }
  .txt-span {
    font-size: 1.5rem;
  }
  /* footer */
  footer {
    flex-direction: column;
    height: auto;
    gap: 40px;
  }
  .footer-logo,
  .foorer-menu,
  .foorer-politicas,
  .foorer-redes {
    width: 100%;
  }
  .logo {
    height: 200px;
  }
}
@media screen and (min-width: 1367px) and (max-width: 1919px) {
  .toggle-menu {
    display: none;
  }
  .slider-container {
    gap: 100px;
  }
  /*  .img-slider img{
    width: 700px;
  } */
  .txt-slider p {
    font-size: 2.2rem;
  }
}
