@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import './footer.css';
@import './header.css';
@import './all.css';


/* 

  METODOLOGIA BEM

  // Block -> .card - card-container {}
  // Element -> .card__title {}
  // Modifier -> .card--title {}

*/


/*  */
.header-container--sticky {
  padding: 20px 0 !important;
}



/* header styles */
header {
  position: sticky;
  top: 0;
  background: var(--secondary-color);

  z-index: 999;
}

.header-container {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  transition: all .3s;
}

.header-container__logo__text {
  color: #fff;
  font-size: 22px;
}

/*  */
.header-fixed {
  background: red;
}

/*  */
.header-search {
  width: 50%;
  height: 100%;
  position: relative;
  /* overflow: hidden; */
  border-radius: 10px;
  border: 1px solid #eee;
}

/*  */
.header-search__options {
  position: absolute;
  width: 100%;
  height: auto;
  /* min-height: 100px; */
  top: 0;

  padding-top: 35px;
  background: #eee;
  border-radius: 10px;
  z-index: 3;

  display: none;
}
.header-search__options__container {
  padding: 10px;
  font-size: 13px;
}


.header-search__options--show {
  display: block;
}


.header-search__input {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  z-index: 4;
  border-radius: 10px;
  overflow: hidden;
}

.header-search__button {
  width: 15px;
  right: 20px;
  position: absolute;
  /* margin-right: 20px; */
  border: 0;
  background: none;
}

.header-search__button__input_icon {
  display: block;
  width: 100%;
}

.input-header__search {
  width: 100%;
  padding: 10px 20px;
  outline: 0;
  border: 0;
}


.button-header__search {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border: 0;
  padding: 10px 20px;
}



/*  */
.header-profile__image {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;

  background: #eee;
  overflow: hidden;
  border-radius: 50%;
  padding: 10px;
}

.header-profile__image--photo {
  width: 100%;
  display: block;
}

.header-profile__user__role {
  font-size: 14px;
  /* color: #ccc; */
}

.header-profile-container {
  display: flex;
  position: relative;
}

.header-profile-container__user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 0 10px;
  color: #fff;
  user-select: none;
}

.header-profile-container:hover .header-profile-container__options {
  display: flex;
  height: auto;
  top: 0;
}

.header-profile-container__options {
  transition: all .9s;
  overflow: hidden;
  display: none; /* none */
  position: absolute;
  margin-top: 50px;
  height: auto; /* 0 */
  position: absolute;
  right: 0;
  top: 0; /* -40px */
  width: 100%;
  background: #ffff;
  flex-direction: column;
  z-index: 5;
  color: #fff;
  border: 1px solid #eee;

  border-radius: 10px;
  overflow: hidden;
}


.header-profile-contaienr__options__header--title {
  color: #444;
  padding-top: 10px;
  padding-bottom: 5px;
}

.header-profile-container__option {
  transition: all .3s;
  padding: 20px;
}

.header-profile-container__option__link {
  color: #000;
  text-decoration: none;
  font-size: 13px;
}

/* header bottom */
header .header-bottom {
  background: #eee;
  /* position: sticky;
  top: 0; */
}

.header-bottom .header-bottom__container {
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-bottom .header-bottom__container p {
  font-weight: 300;
  font-size: 13px;
}

.header-bottom .header-bottom__container p span {
  font-weight: 400;
}

.header-profile {
  display: flex;
  align-items: center;
  gap: 20px;
}

/*  */
.header-profile-container__options-header {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 10px;

  color: #000;
  padding: 20px;
}
.bt-black {
  border-top: 1px solid #ccc;
}




/*  */
.header-menu-container {
  display: none;
}

.header-menu-container__icon {
  width: 20px;
  height: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header-menu-container__span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 10px;
}

/*  */
.main {
  padding: 50px 0;
  /* border: 1px solid red; */

  margin-bottom: 100px;
}

/* .main-banner, .main-banner__container {
    border: 1px solid red;
} */
.main-banner__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.main-banner__box {
  flex: 1 1 auto;
  height: 400px;
  background: #eee;

  border-radius: 20px;
  overflow: hidden;

  position: relative;
}

/*  */

/* .main-services {
    border: 1px solid red;
} */

.main-services__container__lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  /* height: 400px; */
}

.main-services__box {
  flex: 1 1 auto;
  width: 30%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;

  position: relative;
}

.main-services__box__thumbnail {
  width: 100%;
  height: 100%;
}

.main-services__box__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: all .3s;
}

.main-services__box:hover .main-services__box__image {
  transform: scale(1.2);
}

.main-services__box__description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 0) 100%);

  transition: all .3s;
}

.main-services__box:hover .main-services__box__description {
  padding: 30px 20px;
  ;
}

.main-services__box__description__title {
  color: #fff;
  font-size: 16px;
  font-weight: normal;
}

/*  */
/* .main-sell {
  border: 1px solid red;
} */
.main-sell__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  height: 200px;
  border-radius: 30px;
  background: #eee;
}

.main-sell__content {
  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  width: 100%;
}

.main-sell__content__information {
  /* display: flex; */
  text-align: left;
}

.main-sell__link {
  background: blue;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
}

.main-sell__link:hover {
  background: rgb(2, 2, 160);
}

/*  */
/* .main-countries {
  border: 1px solid red;
} */
.main-countries__container__lists {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.main-countries__box {
  width: 33%;
  height: 200px;
  flex: 1 1 auto;
  border-radius: 20px;
  overflow: hidden;

  position: relative;
}

.main-countries__box:hover .main-countries__information {
  background: #00000070;
}

.main-countries__box:hover .main-countries__thumbnail__image {
  transform: scale(1.2);
}

.main-countries__information {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00000046;
  text-align: center;
  user-select: none;
  z-index: 2;
}

.main-countries__thumbnail {
  width: 100%;
  height: 100%;
  background: #eee;
}

.main-countries__thumbnail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all .4s;
}

.main-countries__information__country__text {
  color: #fff;
}

.main-countries__information__country__link {
  color: yellow;
  text-decoration: none;
  font-size: 14px;
}

/*  */

.main__header {
  margin-bottom: 20px;
}

.main-mb--20 {
  margin-bottom: 20px;
  /* border: 1px solid red; */
}

/*  */
.cards-list {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 20px;

  margin-top: 40px;
}
.card {
  width: 33%;
  max-width: 32%;
  flex: 1 1 auto;
  /* border: 1px solid red; */
}
.card__link {
  text-decoration: none;
  color: #000;
}
.card__thumbnail {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.card__thumbanil__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card__information {
  /* border: 1px solid red; */
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card__information__description {
  font-size: 14px;
}
.card__information__title {
  font-size: 15px;
  font-weight: 500;
}
.card__information__title__small {
  font-size: 12px;
  color: blue;
}



.card__featured {
  background: #eee;
  display: inline-block;
  padding: 5px 10px;
  width: 200px;
}
.card__featured__text {
  color: #444;
  font-size: 13px;
}

/*  */
.main-header {
  margin-bottom: 30px;
}
.page-filter__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.page-filter {
  max-width: 30%;
  min-height: 300px;
  background: #eee;
}
.page-filter__content {
  max-width: 70%;
  min-height: 100vh;
}
.page-filter__ls {
  flex: 1 1 auto;
}

/*  */
.view-product__price {
  font-size: 22px;
  color: #444;
}

.main-filter__lists-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  color: #000;
  cursor: pointer;
  user-select: none;
}
.main-filter__lists-option-label {
  text-transform: uppercase;
}
.main-filter__list-select {
  border: 0;
  outline: 0;
  background: none;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  width: 200px;
  padding: 10px;
}
.main-filter__list-option {
  color: #000;
  padding: 10px;
}


/*  */

@media screen and (max-width: 1155px) {
  .header-container__logo__text {
    font-size: 18px;
  }

  .header-search {
    width: 42%;
  }

  .header-profile-container__user {
    gap: 5px;
  }

  .header-profile__image {
    width: 40px;
    height: 40px;
  }

  .header-profile__user__name {
    font-size: 18px;
  }

  .header-profile__user__role {
    font-size: 12px;
  }
}


@media screen and (max-width: 800px) {
  .header-profile__user {
    display: none;
    background: red;
  }

  /*  */
  .header-container {
    padding: 10px 0;
    gap: 10px;
  }

  .header-container__logo {
    order: 1;
  }

  .header-search {
    border-radius: 100px;
    width: 100%;
    order: 3;
  }

  .header-profile {
    gap: 10px;
    order: 2;
  }

  .header-profile__image {
    width: 35px;
    height: 35px;
    padding: 5px;
  }

  .header-container__logo__text {
    font-size: 20px;
  }

  /*  */
  .header-profile-container__options {
    bottom: -100% !important;
    transition: all .4s;
    display: block !important;
    bottom: 0;
    left: 0;
    height: auto;
    position: fixed;
    top: unset !important;
  }


  /*  */
  .header-bottom {
    display: none;
  }

  /*  */
  .header-profile-container--movil {
    width: 100%;
    position: fixed;
    background: #eee;
    height: auto;
    top: unset !important;
    bottom: 0 !important;
    left: 0;
    padding: 20px 0;
    border: 0;
    margin-top: 0;
    /* display: block; */
  }

  /* .header-profile-container__options__lists {
      padding: 20px 10px;
  } */

  .header-profile-container__options__header {
    margin-bottom: 10px;
  }

  .header-profile-contaienr__options__header--title {
    color: #000;
    font-size: 18px;
  }

  /*  */
  .header-menu-container {
    display: block;
  }


  /*  */
  .main-services__box {
    height: 200px;
  }


  /*  */
  .card {
    width: 45%;
  }
}

@media screen and (max-width: 500px) {
  .main-services__box {
    width: 50%;
  }

  .main-services__box__description {
    padding: 30px 20px;
  }


  /*  */
  .card {
    width: 100%;
  }
}