:root {
  /* Colores */
  --primary: #893ccc;
  --secondary: #d25400;
  --white-color: #FFFFFF;

  /* Typografia */
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  /* Margenes */
  --mr-1: 20px;
}

/* ============= Base ============= */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: var(--bs-font-sans-serif);
  font-size: 16px;
  margin: 0;
  top: 0;
  padding: 0;
}

body.overflow__hidden {
  overflow: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  text-align: left;
  letter-spacing: 0px;
  line-height: 1;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

address {
  font-style: inherit;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
}

h1,
h2,
h2,
h3,
h4,
p,
figure {
  margin: 0;
  padding: 0;
}

h1,
h2,
h2,
h3,
h4 {
  line-height: 1.2;
  text-align: left;
  letter-spacing: 0px;
  font-weight: 500;
}

p {
  line-height: 1.5;
  letter-spacing: 0px;
}

/* ============= Reusable Classes ============= */
.grid__container {
  max-width: 1700px;
  display: grid;
  margin: 0 var(--mr-1);
}

.grid__container-section {
  max-width: 1305px;
  display: grid;
  margin: 0 var(--mr-1);
}

@media(min-width: 1275px) {

  .grid__container-section,
  .grid__container {
    margin: 0 auto;
  }
}

.body__container {
  position: relative;
}

/* ============= Header ============= */
.hamburger {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 51;
  height: 160px;
  display: flex;
  justify-content: flex-end;
}

.orange__header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 51;
  display: flex;
  justify-content: flex-end;
  background-color: #d25400;
  height: 120px;
}

.orange__header.show__menu-header,
.header.show__menu-header {
  z-index: 53;
}

.orange__header .navbar__logo {
  margin-bottom: -40px;
}

.header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 90px;
}

.navbar {
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.navbar__list {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 50px;
}

.navbar__item {
  position: relative;
  height: fit-content;
  width: fit-content;
  margin: 0;
  transition: all 0.3s ease;
}

.navbar__link {
  font-size: 18px;
  text-align: left;
  color: var(--white-color);
  font-family: var(--bs-font-sans-serif);
}

.navbar__login {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-align: left;
  color: var(--white-color);
  border: 4px solid #9246a2;
  border-radius: 20px;
  padding: 2px 20px;
  min-width: 110px;
}

.navbar__login:hover {
  background-color: #9246a2;
}

.title {
  position: relative;
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: 6px;
}

.title--center {
  text-align: center;
  position: relative;
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: 6px;
  margin: 0 auto;
}

.title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 3px;
  width: 60px;
}

.title--center::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translate(-50%, 0);
  height: 3px;
  width: 60px;
}

.title.orange,
.title--center.orange {
  color: var(--secondary);
}

.title.orange::before,
.title--center.orange::before {
  background-color: var(--secondary);
}

.title.purple,
.title--center.purple {
  color: var(--primary);
}

.title.purple::before,
.title--center.purple::before {
  background-color: var(--primary);
}

.btn-purple {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 24px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  background-color: var(--primary);
  border: 0px;
  outline: none;
  border-radius: 20px;
  margin: 0 auto;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  min-height: 32px;
}

.btn-purple:hover {
  color: white;
  background-color: var(--secondary);
}

.mostrar-nav {
  display: none;
}

.footer .grid__container-section {
  width: 100%;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  padding-top: 10px;
  height: 30px;
  margin-bottom: 30px;
}

.footer__nav li button,
.footer__nav li a {
  font-size: 14px;
  color: #969390;
  text-decoration: none;
}

.footer__nav li {
  display: flex;
  align-items: center;
}

.footer__nav li button:hover,
.footer__nav li a:hover {
  color: #9246a2;
}

.footer__nav li .separar-datos {
  height: 25px;
  width: 2px;
  background-color: #666564;
}

.boton-email-container .boton-email {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 40px;
  border: 5px solid #9246a2;
  border-radius: 20px;
  cursor: pointer;
}

.boton-email-container .boton-email:hover {
  background-color: #9246a2;
  color: white;
}

.info-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 980px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.info-container li {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
}

.info-container li img {
  width: 100px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.info-text-container {
  text-align: center;
}

.info-text-container h3 {
  font-size: 16px;
  font-weight: 600;
  color: #9246a2;
  margin-bottom: 10px;
  text-align: center;
}

.info-text-container p a,
.info-text-container p {
  font-size: 13px;
  color: #969390;
}

.info-text-container p a:hover {
  text-decoration: underline;
  color: var(--primary);
}

/*footer*/
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
  color: white;
}

.footer__bottom {
  background-color: #893ccc;
  width: 100%;
}

.footer__bottom>p {
  font-size: 14px;
}

footer hr {
  margin: 0px auto;
  width: 80%;
  color: white;
  background-color: white;
}

.terms_conditions {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 5px;
}

.terms_conditions p {
  font-size: 14px;
}

footer .terms_conditions a {
  font-size: 14px;
  margin: 10px 30px;
}

footer a {
  text-decoration: none;
  color: white;
}

.terms_conditions .separador-terms {
  height: 25px;
  width: 1px;
  align-self: center;
  background-color: white;
  color: white;
}

footer a:hover {
  color: #d25400;
  text-decoration: none;
}

footer p {
  margin: 15px;
}

.input-search {
  position: relative;
  width: fit-content;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  height: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  margin-left: 20px;
}

.input-search .icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 20px;
  left: 15px;
  font-size: 2rem;
  color: #707070;
}

.input-search input {
  font-size: 1.4rem;
  padding: 5px 10px 5px 40px;
  color: black;
  outline: 0;
  border: 0;
  border-radius: 20px;
  background-color: #e4e4e4;
}

/* whatsapp */
.container-boton-whatsapp {
  position: fixed;
  display: flex;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #25d366;
  border-radius: 50px;
  right: 20px;
  bottom: 20px;
  box-shadow: 0px 0px 8px 1px #bec3be;
  z-index: 10;
}

.container-boton-whatsapp button {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  border: 0;
}

.container-boton-whatsapp button img {
  width: 40px;
  height: 40px;
}

.container-popup {
  position: fixed;
  box-shadow: 0px 0px 8px 1px #bec3be;
  width: 200px;
  height: 190px;
  background-image: url(../../images/bg-whatsapp.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 30px;
  top: 50%;
  left: 100;
  right: 13%;
  visibility: hidden;
}

.container-popup.active {
  visibility: visible;
}

.header-container {
  display: flex;
  justify-content: flex-end;
  background-color: #128c7e;
  height: 40px;
  border-radius: 25px 25px 0 0;
}

.header-container p {
  margin: 0;
  margin-right: 16px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

.header-container p:hover {
  color: #cdc9c9;
}

.main-container {
  display: flex;
  align-items: flex-end;
  height: 100px;
}

.main-container p {
  font-size: 13px;
  color: black;
  background-color: white;
  margin-left: 10px;
  padding: 5px;
  margin-bottom: 8px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 1px 1px 16px 5px #bec3be;
}

.boton-whatsapp {
  display: flex;
  justify-content: center;
  align-content: center;
  height: 40px;
  width: 180px;
  margin-left: 8px;
  border-radius: 20px;
  background-color: #075e54;
  box-shadow: 1px 1px 16px 5px #bec3be;
}

.boton-whatsapp img {
  align-self: center;
  margin-right: 6px;
  width: 25px;
  height: 25px;
}

.boton-whatsapp a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: white;
  text-decoration: none;
}

.alert {
  padding: 20px;
  background-color: green;
  color: white;
  width: 60%;
  margin: 5px;
}

.word-counter {
  color: #000;
  font-size: 11px;
  margin-left: 4px;
}

.main__container {
  width: 100%;
}

/* ============= Social Network ============= */

.main-social-container {
  position: fixed;
  left: 5%;
  top: 35%;
  z-index: 10;
}

.main-social-container .social-list-container a {
  width: fit-content;
}

.main-social-container .social-list-container a img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.linea-social {
  width: 5px;
  height: 150px;
  background: #6d00bd;
  border-radius: 20px;
}

.linea-social {
  width: 5px;
  height: 150px;
  background: #6d00bd;
  border-radius: 20px;
}

.social-list-container li {
  width: 45px;
  height: 45px;
}

.social-list-container {
  margin-left: -20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-top: 24px;
  height: 150px;
}

.hidden__desktop {
  display: none;
}

.navbar__item.hidden__mobile {
  display: flex;
}

@media (width <=1800px) {
  .grid__container {
    max-width: 1400px;
  }
}

@media (width <=1500px) {
  .grid__container {
    max-width: 1305px;
  }
}

@media (width <=1400px) {
  .grid__container {
    max-width: 1200px;
  }
}

@media (width <=1150px) {
  .hidden__desktop {
    display: flex;
  }

  .navbar__item.hidden__mobile {
    display: none;
  }

  .body__container {
    overflow-x: hidden;
  }

  .orange__header .navbar__logo {
    margin-bottom: 0;
  }

  .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    width: 100%;
    background-color: rgb(255, 255, 255, 0.9);
    box-shadow: 0px 1px 9px 2px #00000024;
    transition: .5s;
    z-index: var(--z-fixed);
    height: calc(100% - 100px);
    overflow-y: auto;
    border-top: 1px solid #d25400;
  }

  .navbar::-webkit-scrollbar {
    width: 8px
  }

  .navbar::-webkit-scrollbar-thumb {
    background-color: #F5F5F5;
    border-radius: 6px
  }

  .header__content {
    padding: 0 20px;
  }

  .navbar__logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
  }

  .show__menu {
    top: 0;
    top: 100px;
  }

  .hamburger {
    position: relative;
    background-color: transparent;
    height: fit-content;
    width: 40px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
    transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hamburger.is-active {
    background-color: none;
  }

  ._layer {
    background: #9246a2;
    margin-bottom: 4px;
    border-radius: 5px;
    width: 40px;
    height: 7px;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
    transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
  }

  .hamburger.is-active .-top {
    -webkit-transform: translateY(200%) rotate(45deg) !important;
    -ms-transform: translateY(200%) rotate(45deg) !important;
    transform: translateY(200%) rotate(45deg) !important;
    width: 40px;
  }

  .hamburger.is-active .-mid {
    opacity: 0;
  }

  .hamburger.is-active .-bottom {
    -webkit-transform: translateY(-120%) rotate(135deg) !important;
    -ms-transform: translateY(-120%) rotate(135deg) !important;
    transform: translateY(-120%) rotate(135deg) !important;
  }

  .navbar__list {
    flex-direction: column;
    gap: 0;
  }

  .navbar__item {
    display: flex;
    justify-content: center;
    width: 240px;
    margin: 0 auto;
    padding: 20px;
    border-top: .5px solid #707070;
  }

  .navbar__link {
    color: #707070;
    font-weight: bold;
  }


  .btn__login {
    width: 240px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    border-top: .5px solid #707070;
  }


  .btn__login a {
    height: 100%;
    width: inherit;
    font-size: 18px;
    font-weight: bold;
    background-color: #9246a2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    border: 0;
    text-decoration: none;
    color: white;
  }

  .btn__login a:hover {
    background: #9246a2;
  }


  .header {
    height: 120px;
  }

  .mostrar-nav {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 10%;
    top: 30px;
  }

  .mostrar-nav img {
    width: 100%;
  }

  .header-nav-container nav {
    display: none;
  }

  .header-nav-container .show {
    display: block;
    top: 80px;
    transition: all 0.3s;
  }


  .header-nav-container {
    align-items: flex-end;
  }

  .navegador-datos li .separar-datos {
    height: 1px;
    width: 100px;
    background-color: #666564;
  }

  .navegador-datos li {
    margin: 5px;
  }

  .navegador-datos li a {
    font-size: 1.5rem;
  }

  .nav-datos-container nav {
    margin-top: 10px;
    height: 270px;
  }

  .nav-datos-container .navegador-datos {
    flex-direction: column;
    align-items: center;
  }



  .boton-pierdas {
    margin-bottom: 30px;
  }


  .boton-pierdas a {
    font-size: 2rem;
  }

  .services-services-container li {
    height: auto;
  }

  .main-social-container,
  .nav-datos-container {
    display: none;
  }

  .interactions-down {
    flex-direction: column;
    justify-content: center;
  }

  .interactions-down .tags {
    justify-content: center;
  }

  .footer .grid__container-section {
    width: fit-content;
  }
}



@media (width <=768px) {

  .boton-pierdas {
    width: 150px;
  }

  .boton-pierdas a {
    font-size: 2rem;
  }


  .container-popup {
    top: 50%;
  }

  .main-servicios-container .cards-servicios-container ul li {
    width: 2000px;
  }

  .contactanos-text {
    width: 75%;
  }


  .moneda-image-container img,
  .envio-image-container img {
    display: none;
  }


  .services-services-container li img {
    width: 100%;
  }

  .info-container {
    justify-content: center;
  }

  .footer__nav {
    display: none;
  }

}