:root {
  --blanco: #FFF;
  --cafeBase: #BB854B;
  --gris: #E6E6E6;
  --grisOscuro: #0B0E0D;
  --grisClaro: #FAFAFA;
  --mainText: #252B42;
  --secondText: #737373;
  --price: #23856D;
  --cafeFuerte: #211413;
  --mutted: #BDBDBD;
  --text-button-second: #2A2B2C;
  --title-second: #252B42;
  --frase: #5E0808;
  --cafeBackground: #bb854bc5;
  --grisNav: #0b0e0db2;
  --grisCaption: #C0C0C0;
  --rojoMain: #E20611;
  --grisMain: #D4DADE;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer {
  padding: 0;
  margin: 0;
}

nav {
  padding: 0;
  margin: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;

}

.banner-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 76px;
  line-height: 85px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 61px;
  line-height: 68.5px;
}

h2 {
  font-weight: 700;
  font-size: 49px;
  line-height: 55px;
  letter-spacing: 2px;
}

h3 {
  font-weight: 500;
  font-size: 31px;
  line-height: 40px;
  letter-spacing: 3px;
}

h4 {
  font-weight: 500;
  font-size: 31px;
  line-height: 40px;
  letter-spacing: 1px;
}

h5 {
  font-weight: 300;
  font-size: 25px;
  line-height: 25px;
  letter-spacing: 1px;
}

.subtitle {
  font-weight: 400;
  font-size: 31px;
  line-height: 40px;
  letter-spacing: 3px;
}

.subtitle02 {
  font-weight: 400;
  font-size: 25px;
  line-height: 40px;
  letter-spacing: 2px;
}

.subtitle03 {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.link01 {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 2px;
  color:var(--grisOscuro);
  cursor:pointer;
}

.link01:hover {
  font-weight: 700;
  font-size: 20px;
  color: var(--cafeBase);
}


.link03 {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 2px;
  color:var(--cafeBase);
  cursor:pointer;
}

.link03:hover {
  font-weight: 700;
  font-size: 20px;
  color: var(--cafeFuerte);
}

.link02 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  cursor:pointer;
}

.link02:hover {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: var(--cafeBase);
}

.link04 {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 2px;
  color:var(--grisOscuro);
  cursor:pointer;
}

.link04:hover {
  font-weight: 700;
  font-size: 17px;
  color: var(--cafeBase);
}
input {
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
}

.caption {
  font-weight: 400;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 3px;
  color: var(--grisCaption);
}

button {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 3px;
}

.tiny {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 3px;
}


.primary-large-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3%;
  text-align: center;
  background-color: var(--grisOscuro);
  color: var(--blanco);
  padding: 10px 20px;
  transition: background-color 0.3s;
  border: none;

}

.primary-large-btn:hover {
  background-color: var(--rojoMain);
}

.second-large-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3%;
  text-align: center;
  background-color: var(--cafeBase);
  color: var(--blanco);
  padding: 10px 20px;
  transition: background-color 0.3s;
  padding-left: 3rem;
  padding-right: 3rem;
  border: 3px solid var(--blanco);
  border-style: double;
  margin-top: 2rem;
  width: 80%;
}

.second-large-btn:hover {
  background-color: var(--grisOscuro);
  color: var(--blanco);
  font-weight: 700;
}

.third-large-btn {
  background: none;
  /* Sin relleno de fondo */
  padding: 10px 20px;
  /* Ajusta el relleno según tus necesidades */
  position: relative;
  /* Para posicionar las bolitas */
  border-style: double;
  border-width: 4px;
  border-color: var(--blanco);
  margin-top: 1rem;
  transition: border-color 0.3s;
}

/* Estilo de la bolita en el lado derecho */
.third-large-btn::before,
.third-large-btn::after {
  content: '';
  width: 10px;
  /* Tamaño de las bolitas */
  height: 10px;
  background-color: var(--blanco);
  /* Color de las bolitas */
  border-radius: 50%;
  /* Hace que las bolitas sean redondas */
  position: absolute;
  top: 50%;
  /* Alinea las bolitas verticalmente en el centro */
  transform: translateY(-50%);
  /* Alinea las bolitas verticalmente en el centro */
}

/* Estilo de la bolita en el lado derecho */
.third-large-btn::after {
  right: -8px;
  /* Posición con respecto al botón */
}

/* Estilo de la bolita en el lado izquierdo */
.third-large-btn::before {
  left: -8px;
  /* Posición con respecto al botón */
}

.third-large-btn:hover {
  border-color: var(--rojoMain);
  color: var(--rojoMain);

}

.third-large-btn::before:hover,
.third-large-btn::after:hover {
  background-color: var(--rojoMain);
  /* Color de las bolitas */
}


.ftco-navbar-light {
  background-color: rgba(0, 0, 0, 0.226)737;
  z-index: 3;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 991.98px) {
  .ftco-navbar-light {
    background: var(--grisNav) !important;
    position: relative;
    top: 0;
    padding: 10px 15px;
  }
}

.ftco-navbar-light .navbar-brand {
  color: #000;
  text-transform: uppercase;
}

.ftco-navbar-light .navbar-brand:hover,
.ftco-navbar-light .navbar-brand:focus {
  color: #000;
}

@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-brand {
    color: #fff;
  }
}

@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-nav {
    padding-bottom: 10px;
  }
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
  font-size: 14px;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: var(--blanco);
  position: relative;
  opacity: 1 !important;
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: var(--blanco);
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  z-index: -1;
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover {
  color: var(--blanco);
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover:before {
  visibility: visible;
  background-color: var(--blanco);
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
    padding-left: 0;
    padding-right: 0;
    padding-top: .7rem;
    padding-bottom: .7rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover {
    color: var(--blanco);
  }

  .ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover:before {
    display: none;
  }
}

.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu {
  border: none;
  background: var(--blanco);
  -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
  -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
  box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
  border-radius: 4px;
  padding: 0;
}

.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu .dropdown-item {
  font-size: 16px;
  color: #000;
}

.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu .dropdown-item:hover,
.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu .dropdown-item:focus {
  background: var(--cafeBackground);
  color: #fff;
}

@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu {
    background: var(--grisNav);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
  }

  .ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
  }
}

.ftco-navbar-light .navbar-nav>.nav-item.cta>a {
  color: black;
  background: var(--blanco);
  border-radius: 0px;
}

@media (max-width: 767.98px) {
  .ftco-navbar-light .navbar-nav>.nav-item.cta>a {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-nav>.nav-item.cta>a {
    color: var(--grisOscuro);
    background: var(--blanco);
    border-radius: 4px;
  }
}

.ftco-navbar-light .navbar-nav>.nav-item.active>a {
  color: #000;
}

.ftco-navbar-light .navbar-nav>.nav-item.active>a:before {
  visibility: visible;
  background-color: var(--blanco);
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-nav>.nav-item.active>a {
    color: var(--blanco);
  }

  .ftco-navbar-light .navbar-nav>.nav-item.active>a:before {
    display: none;
  }
}

.ftco-navbar-light .navbar-toggler {
  color: var(--blanco);
  border: none;
  cursor: pointer;
  padding-right: 0;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .1em;
}

.ftco-navbar-light .navbar-toggler:focus {
  outline: none !important;
}

.navbar {
  background-color: #00000041;
  border: none;
  position: fixed;
  width: 100%;
  transition: background-color 0.3s ease-in-out;
}

.content-banner {
  color: var(--gris);
  position: absolute;
  top: 30%;
  z-index: 2;

}

.content-banner h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0.2px;
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.banner-title {
  font-size: 76px;
  line-height: 85px;
  font-weight: 700;
  color: var(--blanco);
  font-family: 'Playfair Display', serif;
}

.btn-banner {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 5%;
  color: var(--blanco);
}


.circle-icon {
  width: 30px;
  /* Ajusta el tamaño del círculo según tus necesidades */
  border-color: var(--blanco);
  height: 30px;
  border-radius: 25%;
  /* Hace que el div sea un círculo */
  display: flex;
  justify-content: center;
  align-items: center;
}

.icons {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  /* Centrar horizontalmente */

}
#suscribete{
  margin-top: 8rem;
}


@media (max-width: 768px) {
  .img-home {
    object-fit: none;
    /* Controla cómo se ajusta la imagen al contenedor */
    object-position: 0px -50px;
    /* Controla la posición de la imagen en el contenedor */
    width: 100%;
    /*Ancho del contenedor (ajusta según tus necesidades) */
    height: 680px;
    /* Altura del contenedor (ajusta según tus necesidades) */
    transform: scale(1);
    /*Aplica un zoom al 120% de forma estática*/
    filter: blur(2px) grayscale(0.1) contrast(110%);

  }
  #suscribete{
    margin-top: 1rem;
  }
}

.copyright {
  margin-top: 3rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;

}

.sites {
  color: var(--grisbajo);
  margin-bottom: 2rem;
}

.opciones {
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

footer {
  margin: 0;
  padding: 0;
}



.menu-footer {
  list-style: none;
  columns: 2;
}


.menu-footer ul li {
  list-style: none;
}

.footer {
  background-image: url('../img/footer2.png');
  background-size: 1508px 882px;
  background-position: -70px -65px;
  width: 100%;
  height: 760px;
  position: relative;
  bottom: 0;
  margin: 0;
  padding: 0;
  /* border: none; */
  color: var(--blanco);
  filter: blur(8);
}


.footer-options {
  background-color: var(--grisOscuro);
  color: var(--blanco);
  height: 370px;
  justify-content: space-between;
  padding: 2rem;
}

.tiendas-logos {
  padding: 2rem;
}

.row.tiendas-logos {
  margin-left: 0;
  margin-right: 0;
}

.footer-options h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  /* letter-spacing: 0.1px;
    margin-top: 3rem;
    margin-left: 3rem; */
}

.footer-options li {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.2px;
  /* margin-left: 1rem; */
}

.contacto-opciones h6 {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.2px;
}

.contacto-opciones h5 {
  margin-left: 0;
}

.opcion-contacto {
  display: flex;
  margin-top: 1rem;
}

.opcion-contacto svg {
  margin-right: 1rem;
}

footer {
  bottom: 0;
}

@media (max-width:768px) {
  .footer p {
    margin: 1rem;
  }

  .newlestter {
    display: flex;
    margin: 1.5rem;
  }

  .footer-options {
    height: 100%;
  }

  .footer {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0px 0px;
    height: 900px;
    width: 100%;
    position: relative;
    bottom: 0;
    margin: 0;
    padding: 0;
    color: var(--blanco);
  }

  .contacto-opciones {
    left: 50px;
  }

}

.dropdown-menu-right .dropdown-item {
  color: var(--mainText);
}

.dropdown-menu-right .dropdown-item:hover {
  background-color: var(--cafeBase);
  color: var(--blanco);
}

.tiendas {
  background-color: var(--grismuybajo);
}

.title-section {
  color: var(--text);
  font-size: 30px;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.footer h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  color: var(--blanco);
  letter-spacing: 0.2px;
}

.footer p {
  margin-top: 1rem;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--blanco);
}


.newlestter {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.button-register {
  background-color: var(--cafeBase);
  color: var(--blanco);
  height: 58px;
  width: 117px;
  border-right: 1px solid var(--gris);
  border-top: 1px solid var(--gris);
  border-bottom: 1px solid var(--gris);
  border-left: none;
  text-align: center;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.2px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.input-newlestter {
  width: 600px;
  height: 58px;
  border-left: 1px solid var(--gris);
  border-top: 1px solid var(--gris);
  border-bottom: 1px solid var(--gris);
  border-right: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  text-align: start;
  background-color: #F9F9F9;
}

.btn-banner {
  background: none;
  /* Sin relleno de fondo */
  padding: 10px 20px;
  /* Ajusta el relleno según tus necesidades */
  position: relative;
  /* Para posicionar las bolitas */
  border-style: double;
  border-width: 4px;
  border-color: var(--blanco);
  margin-top: 1rem;
}

/* Estilo de la bolita en el lado derecho */
.btn-banner::before,
.btn-banner::after {
  content: '';
  width: 10px;
  /* Tamaño de las bolitas */
  height: 10px;
  background-color: var(--blanco);
  /* Color de las bolitas */
  border-radius: 50%;
  /* Hace que las bolitas sean redondas */
  position: absolute;
  top: 50%;
  /* Alinea las bolitas verticalmente en el centro */
  transform: translateY(-50%);
  /* Alinea las bolitas verticalmente en el centro */
}

/* Estilo de la bolita en el lado derecho */
.btn-banner::after {
  right: -8px;
  /* Posición con respecto al botón */
}

/* Estilo de la bolita en el lado izquierdo */
.btn-banner::before {
  left: -8px;
  /* Posición con respecto al botón */
}

/* .slide{
    height: 680px;
  } */

/* Sección de aplicaciones */
.apps {
  display: flex;
  justify-content: space-between;
  width: 80%;
}

.app {
  height: 65px;
  border: 1px solid var(--mutted);
  border-radius: 10px;
  padding: 10px;
}

@media(max-width:768px) {
  .apps {
    margin-bottom: 3rem;
  }
}

.google {
  background-color: var(--cafeFuerte);
}

.btn-second {
  height: 59px;
  font-family: 'Poppins', 'sans-serif';
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3%;
  padding-left: 3rem;
  padding-right: 3rem;
  color: var(--text-button-second);
  background-color: var(--cafeBase);
  border: 3px solid var(--blanco);
  /* border-radius: 10px; */
  border-style: double;
  margin-top: 2rem;
  width: 80%;
}

.apps-info h5 {
  font-family: 'Montserrat', 'sans-serif';
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.1px;
  color: var(--title-second);

}

.apps-info p {
  font-family: 'Montserrat', 'sans-serif';
  font-weight: 400px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--secondText);
  margin-bottom: 3rem;
}

.apps-info {
  width: 80%;
}

.apps-section h3 {
  font-family: 'Montserrat', 'sans-serif';
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.2px;
  margin-top: 1rem;
  margin-bottom: 2rem;

}

.title-best-sellers {
  font-family: 'Montserrat', 'sans-serif';
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.1px;
  margin-top: 2rem;
}

@media(max-width:768px) {
  .title-best {
    text-align: center;
  }
}

.product-title {
  font-family: 'Montserrat', 'sans-serif';
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.1px;
  color: var(--mainText);
}

.grs {
  font-family: 'Montserrat', 'sans-serif';
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: var(--secondText);
}

.price {
  font-family: 'Montserrat', 'sans-serif';
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: var(--price);
}

.product-card {

  border: none;

}

.best-sellers {
  background-color: var(--grisClaro);
  margin: 2rem;
}

.product-card-best {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: none;
  padding: 2rem;
}

.products-row {
  margin-top: 0;
  margin-bottom: 2rem;
  padding: 0;
}

.title-items {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 14;
  line-height: 24px;
  letter-spacing: 0.2px;
  position: absolute;
  top: 830px;
  left: 150px;
}

.subtitle-items {
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 14;
  line-height: 24px;
  letter-spacing: 0.2px;
  position: absolute;
  top: 860px;
  left: 150px;
}

@media(max-width:768px) {
  .title-items {

    top: 800px;
    left: 70px;
  }

  .subtitle-items {

    top: 830px;
    left: 70px;
  }
}

.navbar-products {
  position: relative;
  background-color: transparent;
  margin: 0;
  padding: 0;

}

.navbar-products h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: var(--mainText);

}

.navbar-products h6 {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: var(--secondText);
}

.paginate {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;

}

.page a {
  border: 1px solid var(--gris);
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: var(--secondText);
  text-decoration: none;
  margin: 5px;
  transition: background-color 0.3s;
}

.page a:hover {
  color: var(--blanco);
  background-color: var(--grisOscuro);
}

@media (max-width:768px) {
  .paginate {
    justify-content: center;

  }
}

.btn-secondary {
  color: var(--blanco);
  background-color: var(--grisOscuro);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 5%;
  font-family: 'Poppins', sans-serif;
  padding: 1rem 2rem 1rem 2rem;
  border: 3px solid var(--blanco);
  border-style: double;
  margin-bottom: 2rem;
}


.banner-title.dark {
  font-size: 76px;
  line-height: 85px;
  font-weight: 700;
  color: var(--grisOscuro);
  font-family: 'Playfair Display', serif;
}


.dark {
  border-color: var(--grisOscuro);
  color: var(--grisOscuro);
}

.third-large-btn.dark {
  color: var(--grisOscuro);
}

/* Estilo de la bolita en el lado derecho */
.dark::before,
.dark::after {
  background-color: var(--grisOscuro);
  /* Color de las bolitas */
}

.content-banner.dark {
  color: var(--grisOscuro);

}

@media (max-width:768px) {

  .content-banner.dark {
    text-align: center;
  }

  .banner-title.dark {
    font-size: 50px;
    line-height: 85px;
    font-weight: 700;
    color: var(--grisOscuro);
    font-family: 'Playfair Display', serif;
  }

  .btn-banner.dark {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 5%;
    color: var(--grisOscuro);
  }
}

.title-article h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.1px;
  color: var(--mainText);
}

.article p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--secondText);
}

.article.dark p {
  font-weight: 700;
  line-height: 24px;
}

.link-article {
  font-size: 14px;
  font-weight: 700;
  color: var(--cafeBase);
  line-height: 24px;
  text-decoration: none;
  transition: 0.3s color ease-in-out;
}

.link-article:hover {
  text-decoration: none;
}

.decoration {
  width: 25%;
  margin: 0;
  border: 4px solid var(--cafeBase);
  margin-bottom: 2.5rem;
}

.section-title {
  font-weight: 700;
  font-size: 58px;
  line-height: 80px;
  letter-spacing: 0.2px;
  color: var(--mainText);
}

.paragraph {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--secondText);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.article-content h6 {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.2px;
}

.article-content p {
  font-size: 14px;
  list-style: 16px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--secondText);
}

.article-parts {
  display: flex;
  justify-content: space-between;
}

.article-parts img {
  margin-right: 1rem;
}

.nuestro-proceso {
  margin-top: 8rem;
  margin-bottom: 8rem;
}


.carousel-content {
  color: var(--blanco);
  position: relative;
  top: -400px;
}

.carousel-title {
  font-weight: 700;
  font-size: 58px;
  line-height: 80px;
  letter-spacing: 0.2px;
}

.carousel h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 50px;
  letter-spacing: 0.2px;
}

.tueste {
  display: flex;
}

.title-tueste {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #1c1c1c;
}

.info-tueste {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--secondText);
}

.tueste {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.frase {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.2px;
  color: var(--frase);
  margin-bottom: 8rem;
}

/* cafe aaron */

.btn-third {
  background-color: transparent;
  color: var(--blanco);
  border-radius: 5px;
  padding: 1rem 2rem 1rem 2rem;
  border: 1px solid var(--blanco);
}

.image-container {
  position: relative;
}

.cafe-1 .overlay-cafe {
  position: absolute;
  top: 50%;
  left: 0;
  background-color: rgba(139, 69, 19, 0.7);
  /* Fondo café transparente */
  color: white;
  /* Color del texto */
  padding: 4rem;
  width: 70%;
}

.cafe-2 .overlay-cafe {
  position: absolute;
  top: 42%;
  left: 0;
  background-color: rgba(139, 69, 19, 0.7);
  /* Fondo café transparente */
  color: white;
  /* Color del texto */
  padding: 2rem;
  width: 60%;
}

.cafe-3 .overlay-cafe {
  position: absolute;
  top: 37%;
  left: 0;
  background-color: rgba(139, 69, 19, 0.7);
  /* Fondo café transparente */
  color: white;
  /* Color del texto */
  padding: 1rem 2rem 1rem 2rem;
  width: 60%;
}

.cafe-1 .overlay-cafe h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.1px;
  margin-bottom: 3rem;
}

.cafe-2 .overlay-cafe h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.2px;
}

.cafe-3 .overlay-cafe h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.2px;
}

.cafe {
  margin-bottom: 8rem;
  margin-top: 8rem;
}

.site-wrap:before {
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  position: absolute;
  z-index: 2003;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}


.search-wrap {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--grisOscuro);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .5s all ease;
  -o-transition: .5s all ease;
  transition: .5s all ease;
}

.search-wrap .container {
  position: relative;
  height: 100%;
}

.search-wrap.active {
  opacity: 1;
  visibility: visible;
}

.search-wrap .form-control {
  position: absolute;
  top: 50%;
  width: 85%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  z-index: 3;
  font-size: 20px;
}
.search-wrap .search {
  z-index: 4;
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--cafeBase);
  color: var(--blanco);
  border: 1px solid var(--blanco);
  padding: 12px;
  border-radius: 10px;
  outline: none;

}
@media (max-width: 768px) {
  .search-wrap .form-control {
    font-size: 14px;
    width: 60%;
  }
  .search-wrap .search {
    padding: 8px;
    border-radius: 10px;
    outline: none;
  
  }
}

.search-wrap .search-close {
  z-index: 4;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.search-wrap .search-close span {
  font-size: 30px;
}



.js-search-close i {
  color: var(--blanco);
}

.form-control:focus {
  border-color: var(--cafeFuerte);
  /* Cambia el color del borde al obtener el foco */
  outline: 0;
  /* Elimina el contorno al obtener el foco (usando outline: none) */
  box-shadow: 0 0 0 0.2rem var(--cafeBase);
  /* Agrega un efecto de sombra al obtener el foco */
}

.products-icon-nav i {
  color: #000;
}

.imgs-valores {
  display: flex;
}

.imgs-valores img {
  width: 50%;
  height: 300px;
  object-fit: cover;
}

.img-historia img {
  width: 100%;
  height: 600px;
  object-fit: cover;

}

.nuestros-valores {
  margin-bottom: 8rem;
}

.nuestra-historia {
  margin-bottom: 8rem;
}

@media (max-width:768px) {
  .article-parts {
    display: block;
  }
}

.content-banner2 {
  color: var(--gris);
  position: absolute;
  text-align: center;
  top: 30%;
  z-index: 2;

}

.carousel {
  margin: 0px;
  padding: 0px;
}

.image-background {
  margin-top: 8rem;
  background-image: url('../img/cardamomo-bg.png');
  position: relative;
  width: 100%;
  height: 800px;
  background-attachment: cover;
}





.content-image {

  display: flex;
  align-items: center;
  padding: 2rem;
}


.textos-cafe {
  z-index: 2;
  color: var(--blanco);
  height: 100%;
}

/* .textos-cafe-contenedor {

  display: flex;
  flex-direction: column;
  gap: 16px;
} */

.textos-cafe-contenedor{
  max-width: 220px;
  word-wrap: break-word;
  margin-right: 3rem auto;
}
.texto-cafe-contenedor-btn{
  max-width:450px;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 3rem auto;
  height: 100%;
}
.textos-cafe h6 {
  font-size: 25px;
}
.contenedor-textos{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.contenedor-textos2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}

@media(max-width:767px){
  .contenedor-textos{
    width: 100%;
  }
  .contenedor-textos2{
    position: absolute;
    left: 100%;
    width: 100%;
  }
  .textos-cafe{
    height: auto;
    margin-top:1.5rem;
  }

  .texto-cafe-contenedor-btn h3{
    font-size: 20px;
  }
  .texto-cafe-contenedor-btn p{
    font-size: 14px;
  }
  .h-100{
    height: auto !important;
  }

  .textos-cafe-contenedor h6{
    font-size: 14px;

  }
  .textos-cafe-contenedor p{
    font-size: 12px;
    line-height: 15px;
  }
  .textos-cafe-contenedor{
    text-align: center;
  }
}


.card-cafe {
  border: none;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.frase2 {
  margin-top: 3rem;
}

.caracolillo {
  display: flex;
  margin-bottom: 5rem;
  margin-top: 5rem;
}

.caracolillo h2 {
  position: absolute;
  color: var(--blanco);
  
  justify-items: flex-end;
  margin-left: 2rem;
}

.caracolillo h6 {
  position: absolute;
  color: var(--blanco);
  bottom: 10%;
  justify-items: flex-end;
  margin-left: 2rem;
}


.caracolillo a {
  color: var(--blanco);
  text-decoration: none;
}

.calidad {
  position: absolute;
  align-items: center;
  justify-content: center;
  border: none;
  top: 35%;
  background-color: var(--blanco);
  width: 60%;
  padding: 1rem;
  left: 5%;
  box-shadow: 2px 2px 10px var(--secondText);
  z-index: 2;
}

.content-calidad {
  display: flex;
}

.card-calidad {
  border: none;
  width: 80%;
}

.contacto h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  color: var(--mainText);
}

.contacto h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 21.5px;
  color: black;
}

.contacto .nota {
  font-weight: 400;
  font-size: 20px;
  line-height: 21.5px;
  color: var(--frase);
}

.contacto .direccion {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  font-style: italic;
  color: #000;
}

.cafe a {
  color: var(--blanco);
  text-decoration: none;
}

.text-info-card {
  width: 200px;
}

.content-modal {
  display: flex;
  margin-top: 2rem;
  justify-content: space-between;
  width: 60%;
  margin-left: 5rem;
}

.nav-tabs {
  justify-content: space-between;
  text-align: center;
  border: none;
}

.nav-tabs .nav-item .nav-link {
  color: var(--mainText);
}

.nav-tabs .nav-item .nav-link:hover {
  border: none;
}

.nav-tabs .nav-item .nav-link.active {
  color: var(--cafeBase);
  border: none;
}


.link-banner {
  color: var(--blanco);
  text-decoration: none;
}

.link-article:hover {
  color: var(--cafeFuerte);
  text-decoration: none;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 3;
}

.actions-btn button {
  margin: 1rem;
}

.proceso-logos {
  display: flex;
}

.navbar {
  z-index: 4;
}

.text-caracolillo{
  position: relative;
}

.caracolillo-1 h2, .caracolillo-1 h6, .caracolillo-2 h2, .caracolillo-2 h6{
  position: absolute;
}

.text-caracolillo h2{
  top: 55%;
}

/* Estilos para móvil */
@media(max-width:767px) {
  .menu-footer {
    columns: 1;
    text-align: center;
  }

  .texto-cafe-contenedor-btn{
    height: auto;
  }
  .footer-options {
    text-align: center;
  }

  .contacto .opcion-contacto h6 {
    font-size: 16px;
  }

  .newlestter {
    display: grid;
    justify-content: center;
  }

  .proceso-logos {
    display: block;
  }

  .article-content h6 {
    font-size: 18px;
  }

  
  .newlestter input {
    border-radius: 10px;
    width: 100%;
  }

  .title-tueste {
    font-size: 18px;
  }

  .info-tueste {
    font-size: 16px;
    text-align: justify;
  }

  .button-register {
    margin-top: 2rem;
    border-radius: 10px;
    width:100%;
  }


  .content-banner {
    top: 170px;
    text-align: center;
  }

  .content-banner h4 {
    font-size: 18px;
  }

  .shop-form-container {
    display: block;
  }

  .article {
    text-align: justify;
  }

  .section-title {
    font-size: 55px;
  }

  .paragraph {
    font-size: 18px;
  }

  .banner-title {
    font-size: 50px;
  }

  .apps{
    display:block;
  }
  .app{
    margin-bottom: 1rem;
  }

  .opcion-contacto{
    justify-content: center;
  }
  .primary-large-btn {
    padding: 0.5rem;
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .article p {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 24px;
  }

  .article-content p {
    font-size: 17px;
    letter-spacing: 2px;
    line-height: 24px;
  }

  .valores h2 {
    font-size: 22px;
  }

  .valores p {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 24px;
  }

  .content-banner2 {
    top: 120px;
  }



  .cafe-1 .overlay-cafe {
    top: 0%;
    width: 100%;
    height: 100%;
    padding: 20px;
  }

  .cafe-1 .overlay-cafe h3 {
    margin-top: 5rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .cafe-1 img,
  .cafe-2 img,
  .cafe-3 img {
    width: 100%;
  }

  .cafe-2 img,
  .cafe-3 img {
    margin-bottom: 2rem;
  }

  .cafe-2 .overlay-cafe {
    top: 0%;
    width: 100%;
    height: 85%;
    padding: 20px;
  }

  .cafe-2 .overlay-cafe h3 {
    margin-top: 2rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .cafe-3 .overlay-cafe {
    top: 0%;
    width: 100%;
    height: 85%;
    padding: 20px;
  }

  .cafe-3 .overlay-cafe h3 {
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .cafe {
    margin-top: 3rem;
  }

  .content-image {
    display: block;
  }

  .caracolillo {
    display: block;
    margin-bottom: 2rem;
  }

  .caracolillo img {
    margin-bottom: 2rem;
  }


  .content-calidad {
    display: flex;
  }

  .card-calidad {
    border: none;
    width: 80%;
  }

  .calidad {
    position: relative;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    border: none;
    background-color: var(--blanco);
    width: 90%;
    padding: 1rem;
    box-shadow: 2px 2px 10px var(--secondText);
    z-index: 2;
    margin-bottom: 0;
  }

  .contacto hr {
    width: 100%;
  }

  .form-check {
    margin-left: 1rem;
  }

  .contacto h4,
  .contacto h4.nota,
  .contacto h4.direccion,
  .contacto h6 {
    font-size: 18px;
    text-align: center;
  }

  .contacto h2 {
    text-align: center;
  }

  .content-calidad {
    display: block;
  }

  .text-caracolillo {
    justify-content: center;
    text-align: left;
  }

  .caracolillo-1 h2, .caracolillo-2 h2 {
    top: 19%;
    line-height: 25px;
  }

  .caracolillo-1 h6, .caracolillo-2 h6{
    bottom: 30%;
  }

  .banner-mobile {


    .content-banner h4 {
      font-weight: 400;
      font-size: 20px;
      line-height: 22px;
      letter-spacing: 0.2px;
      margin-top: 1rem;
      font-family: 'Montserrat', sans-serif;
    }

    .banner-title {
      font-size: 60px;
      line-height: 85px;
      font-weight: 700;
      color: var(--blanco);
      font-family: 'Playfair Display', serif;
    }

    .btn-banner {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      line-height: 24px;
      font-weight: 700;
      letter-spacing: 5%;
      color: var(--blanco);
    }





  }


  .banner-title.dark {
    font-size: 60px;
    line-height: 85px;
    font-weight: 700;
    color: var(--grisOscuro);
    font-family: 'Playfair Display', serif;
  }

  .btn-banner.dark {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 5%;
    color: var(--grisOscuro);
  }

  .btn-banner.dark {
    border-color: var(--grisOscuro);
  }

  .col-md-3,
  .col-md-4,
  .col-md-6 {
    margin-top: 2rem;
  }



}

.wraper {
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7987570028011204) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(0.5px);
  z-index: 1;
  position: absolute;
}

.wraper2 {
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7987570028011204) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(0.5px);
  z-index: 1;
  position: absolute;
}

.wraper3 {
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7987570028011204) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(0.5px);
  z-index: 1;
  position: absolute;
}

.wraper4 {
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.856) 0%, rgba(0, 0, 0, 0.26) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
  position: absolute;
}






.name {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 1.3px;
  color: #555;
}

.form-field input {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  background: none;
  font-size: 14px;
  color: #666;
  padding: 10px;
}

.form-field {
  margin-bottom: 10px;
  border-radius: 20px;
  box-shadow: 8px 8px 8px #cbced1;
  border: 1px solid var(--grisCaption);
}

.form-field .fas {
  color: #555;
  margin-left: 1rem;
  margin-right: 1rem;
}

.opciones-modal {
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  display: flex;

}

.agradecimiento {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.agradecimiento img {
  margin-bottom: 2rem;
}

.agradecimiento h1,
h4 {
  margin-bottom: 2rem;

}

a:hover {
  color: var(--blanco);
  text-decoration: none;
}

.perfil {
  margin-top: 8rem;
  margin-bottom: 8rem;
  margin-left: 2rem;
  margin-right: 2rem;
}

.actions-icons-lg {
  width: 100px;
}

.actions-icons-md {
  width: 80px;
}

.actions-icons-sm {
  width: 60px;
}

.opciones-tabla {
  display: flex;
  justify-content: space-between;
}

.perfil .nav-item .nav-link.active {
  background-color: var(--cafeBase);
  color: var(--blanco);
}

.perfil .nav-link {
  color: var(--mainText);
}

/* Establece el color de fondo al hacer hover en las pestañas */
.perfil .nav-link:hover {
  background-color: var(--cafeBase);
  color: var(--blanco);
}

.text-caracolillo h2 {
  font-size: 25px;
}

.buttons-options-cart {
  margin-top: 3rem;
  justify-content: space-between;
  display: flex;
  margin-bottom: 8rem;
}

.overlay {
  position: absolute;
  bottom: 0;
  /* Cambiado de top a bottom para invertir el origen del overlay */
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0;
}

/* Estilos para los botones en el overlay */
.overlay .btn {
  background-color: #fff;
  color: #333;
  padding: 8px 16px;
  margin: 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.overlay .btn:hover {
  background-color: #333;
  color: #fff;
}

/* Ocultar el overlay al quitar el ratón */
.card:not(:hover) .overlay {
  opacity: 0;
  height: 0;
}

/* Mostrar el overlay al pasar el ratón sobre la tarjeta */
.card:hover .overlay {
  opacity: 1;
  height: 100%;
  /* Ajusta la altura para que el overlay aparezca de abajo hacia arriba */
}

.product-item:not(:hover) .overlay {
  opacity: 0;
  height: 0;
}

/* Mostrar el overlay al pasar el ratón sobre la tarjeta */
.product-item:hover .overlay {
  opacity: 1;
  height: 100%;
  /* Ajusta la altura para que el overlay aparezca de abajo hacia arriba */
}

/* Estilos para el carrito de compras */
.cart-container {
  position: absolute;
  top: 50px;
  /* Ajusta según la posición deseada */
  right: 200px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  /* Inicia oculto */
}

/* Estilos para los elementos del carrito */
.cart-items {
  list-style: none;
  padding: 0;
}

.cart-items li {
  margin-bottom: 5px;
}

/* Estilos para el botón de cerrar el carrito */
.close-cart {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
}

.close-cart:hover {
  background-color: #555;
}


.notifications {
  width: 350px;
  max-height: 300px;
  /* Establece la altura máxima deseada */
  overflow-y: auto;
  /* Agrega una barra de desplazamiento vertical cuando sea necesario */
}

.total-noti {
  position: absolute;
  background-color: #fb404b;
  border-radius: 70%;
  padding: 4px 6px;
  font-size: 10px;
  line-height: 10px;
  color: #ffffff;
  top: 3px;
  right: 0px;
}

.carrito .dropdown-toggle::after {
  content: none;
}

.slick-arrow {
  color: white;
  /* Color de la flecha */
  background-color: gray;
  /* Fondo redondo de color gris */
  border-radius: 50%;
  /* Hace que el fondo sea redondo */
  padding: 8px;
}

.product-card-best {
  width: 95%;
}

/* Cambia el color de fondo de las flechas al pasar el ratón por encima (opcional) */
.slick-arrow:hover {
  background: var(--cafeBase);
}

.prev-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: -15px;
}

.next-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -15px;
}

.container-404 {
  backdrop-filter: blur(8px);
  align-items: center;
  justify-items: center;
  width: 80%;
  text-align: center;
  margin: 5rem auto;
  padding: 3rem;
  height: auto;
  border: 1px solid var(--grisCaption);
  box-shadow: 8px 8px 15px var(--grisCaption), -8px -8px 15px var(--grisCaption);
}

.container-404 h1 {
  margin-bottom: 10rem;
  color: var(--blanco);
  font-size: 200px;
}

.container-404 h5 {
  margin-bottom: 3rem;
  color: var(--blanco);
}

.container-404 button {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .container-404 h1 {
    margin-bottom: 5rem;
    font-size: 100px
  }

  .body-404 {

    background-size: auto;
  }

  .notifications {
    width: 100%;
  }

  .notifications .primary-large-btn {
    width: 100%;
  }

  .navbar {
    list-style: none;
  }

  .navbar-toggler {
    color: var(--blanco);
  }

}

.section-404 {

  justify-content: center;
  justify-items: center;
  align-items: center;
}

.body-404 {

  background-image: url('../img/granos-cafe-banner.jpg');
  background-size: cover;
  background-position: top;
  object-fit: fill;
}

i .fa .fa-heart {
  color: var(--blanco);

}

i .fa .fa-heart:hover {
  color: red;

}


@media(max-width:767px) {
  .notifications .primary-large-btn {
    width: 100%;
  }

  .carousel-item img {
/*    object-fit: none;*/
    width:100%;
    height:500px
  }

  #textoCompleto1 {
    display: none;
    transition: 0.3s display ease-in-out;
  }

  #textoCompleto2 {
    display: none;
    transition: 0.3s display ease-in-out;
  }
}

.btn-leer-mas {
  background-color: transparent;
  border: none;
  color: var(--cafeBase);
  transition: 0.3s color ease-in-out;
}

.btn-leer-mas:hover {
  color: var(--cafeFuerte);
}

.btn-leer-mas:focus {
  border: none;

  box-shadow: none;
}

.carousel-indicators {
  z-index: 5;
}

.btn-foto-usuario {
  display: block;
}

.btn-foto-usuario button {
  margin-top: 2rem;
}

.login .form-field input {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  background: none;
  font-size: 14px;
  color: #666;
  padding: 10px 15px 10px 10px;
}

.login .form-field {
  padding-left: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  box-shadow: 8px 8px 8px #cbced1;
}

.login .form-field .fas {
  color: #555;
}

.newlestter input {
  padding-left: 15px;
}

.newlestter input:focus {
  border-color: var(--cafeFuerte);
  /* Cambia el color del borde al obtener el foco */
  outline: 0;
  /* Elimina el contorno al obtener el foco (usando outline: none) */
  box-shadow: 0 0 0 0.2rem var(--cafeBase);
  /* Agrega un efecto de sombra al obtener el foco */
}

/* .navbar-light .navbar-toggler-icon{
    background-image: ;
  } */

.heart {
  /* font-size: 50px; */
  /* position: absolute; */
  cursor: pointer;
  z-index: 300;
  transition: transform 5s ease-in-out;
}

.heart:hover {
  color: red;
}

.fly {
  z-index: 300;
  color: red;
  transform: translateY(-1000px) scale(0);
}

.heart-before {
  color: red;
}

.tiendas-logos .col-md-4 img {
  width: 250px;
}

.carousel2 .content-banner {
  left: 0;
}

#textoCompleto1,
#textoCompleto2,
#texto-completo2,
#texto-completo3,
#historia-completa,
#historia-completa2,
#Charlas-texto1,
#Charlas-texto2,
#Charlas-texto3 {
  display: block;
}

.btn-leer-mas {
  display: none;
}

/* Estilos para tableta vertical */
@media (min-width: 768px) and (max-width: 991px) {
  .menu-footer {
    margin-bottom: 2rem;
  }

  .search-wrap .form-control {
    font-size: 18px;
    width: 75%;
  }
  .search-wrap .search {
    padding: 10px;
    border-radius: 10px;
    outline: none;
  
  }
  .content-banner.dark {
    top: 30%;
  }

  .content-banner {
    top: 30%;
  }

  .banner-title.dark {
    font-size: 60px;
  }

  .banner-title {
    font-size: 60px;
  }

  .content-banner button {
    font-size: 14px;
  }

  .content-banner.dark button {
    font-size: 14px;
  }

  .title-items {
    top: 540px;
    left: 65px;
    font-size: 12px;
  }

  .subtitle-items {
    top: 555px;
    left: 65px;
    font-size: 12px;
  }

  .apps-section .container .row .apps {
    display: block;
  }

  .app {
    margin-bottom: 10px;
  }

  .apps-section .container .row .col-md-7 {
    padding-top: 2rem;
  }

  .apps-section .container .row .col-md-7 img {
    object-fit: cover;
    height: 700px;
  }

  .notifications .primary-large-btn {
    width: 100%;
  }

  .footer-options {
    height: 550px;
  }

  .opciones {
    padding: 20px;
  }

  .navbar {
    list-style: none;
  }

  .article p {
    font-size: 16px;
  }

  .article-content p {
    font-size: 16px;
  }

  .nuestro-proceso .container .row {
    display: block;
  }

  .tiendas-logos .col-md-4 img {
    width: 200px;
  }



  .valores .row h2 {
    font-size: 30px;
    line-height: 34px;
    margin-top: 3rem;
  }

  .valores .row p {
    font-size: 18px;
    line-height: 22px;
    text-align: justify;
  }

  .article-content h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .article-content h5 {
    font-size: 25px;
    line-height: 36px;
  }

  .article-content p {
    font-size: 18px;
  }

  .imgs-valores img {
    height: auto;
  }


  .info-tueste {
    font-size: 18px;
    text-align: justify;
  }

  .title-tueste {
    font-size: 18px;
  }

  .content-banner2 {
    top: 50px;
    left: 0;
  }

  .proceso-logos {
    margin-top: 2rem;
  }

  .nuestro-proceso .paragraph {
    font-size: 18px;
    line-height: 22px;
  }

  .article-content h6 {
    font-size: 20px;
  }

  .article-content {
    text-align: justify;
  }

  .cafe {
    margin-top: 3rem;
  }

  .cafe-1 .overlay-cafe {
    width: 105%;
    height: 100%;
    top: 0;
  }

  .cafe-2 .overlay-cafe {
    width: 100%;
    height: 100%;
    top: 0;
  }

  .cafe-3 .overlay-cafe {
    width: 100%;
    height: 100%;
    top: 0;
  }

  .cafe-1,
  .cafe-2,
  .cafe-3 {
    text-align: center;
  }

  .modal-body p {
    font-size: 18px;
    line-height: 24px;
  }

  p {
    font-size: 18px;
  }

  .caracolillo-1 h6 {
    top: 660px;
  }

  .caracolillo-2 h6 {
    top: 660px;
  }

  .modal-body p ul li {
    font-size: 18px;
  }


  .content-calidad {
    display: flex;
  }

  .card-calidad {
    border: none;
    width: 80%;
  }

  .calidad {
    position: relative;
    align-items: center;
    justify-content: center;
    top: -80px;
    left: 0;
    border: none;
    background-color: var(--blanco);
    width: 90%;
    padding: 1rem;
    box-shadow: 2px 2px 10px var(--secondText);
    z-index: 2;
    margin-bottom: 0;
  }

  .form-group,
  .form-control {
    font-size: 18px;
  }

  .text-muted {
    font-size: 18px;
  }

  .card-body h6 {
    font-size: 18px;
  }

  th,
  td {
    font-size: 18px;
  }

  li {
    font-size: 18px;
  }

  .tab-content {
    font-size: 18px;
  }

  .tabla-caracteristicas {
    margin-bottom: 3rem;
  }

  .content-banner h4 {
    margin-top: 0.5rem;
  }

  .btn-banner {
    margin-top: 0.5rem;
  }

  .content-banner h4 {
    margin-bottom: 0;

  }

  .title-article {
    font-size: 20px;
    line-height: 22px;
  }

  #textoCompleto1 {
    display: none;
  }

  #textoCompleto2 {
    display: none;
  }

  #texto-completo2 {
    display: none;
  }

  #texto-completo3 {
    display: none;
  }

  #historia-completa {
    display: none;
  }

  #historia-completa2 {
    display: none;
  }

  #Charlas-texto1 {
    display: none;
  }

  #Charlas-texto2 {
    display: none;
  }

  #Charlas-texto3 {
    display: none;
  }

  .btn-leer-mas {
    display: block;
  }

  .content-banner h4 {
    line-height: 22px;
    margin-top: 0.5rem;
  }
}

.navbar-light .navbar-toggler-icon {
  background-image: none;
}

.fa.fa-bars {
  color: var(--blanco);
}

.navbar {
  z-index: 999;
}

.icon-perfil {
  padding: 1rem;
  border-radius: 50%;
  border: 1px solid var(--frase);
  margin-left: 1rem;
  color: var(--frase);
  transition: 0.3s color ease-in-out;
}

.icon-perfil:hover {
  color: var(--rojoMain);
  border: 1px solid var(--rojoMain);
}

.menu-footer a {
  text-decoration: none;
  color: var(--blanco);
}

.navbar-brand {
  position: relative;
  z-index: 100;
}

/* .navbar.nav-desk{
    position: sticky;
    top:0;
  } */



@media (min-width: 991px) and (max-width: 1200px) {

  .cafe-1 .overlay-cafe {
    bottom: 0;
    padding: 3.5rem;
  }

  .cafe-2 .overlay-cafe {
    bottom: 0;
  }

  .cafe-3 .overlay-cafe {
    bottom: 0;
  }

}


.ps-product .ps-product__title:hover{
  color:var(--cafeBase);
}

.btn-primary{
  background-color: var(--cafeBase);
  color: var(--blanco);
  border-color: var(--grisClaro);
}

.btn-primary:hover{
  background-color: var(--cafeFuerte);
  border-color: var(--grisClaro);
}

.ps-product .ps-product__badge{
  background-color: var(--frase);
}

.ps-product .ps-product__actions li a:hover{
  background-color: var(--cafeBase);
}

.catalogo{
  margin-top: 8rem;
}

.details{
  margin-top:8rem;
}

.ps-shopping-product .ps-product{
  margin:15px;
}

.ps-product-title{
  --max-lines:4;
  color:var(--grisOscuro);
  max-height: calc(1.2em * var(--max-lines));
    
}

.account-section{
  margin-top:8rem;
  margin-bottom: 8rem;
}

.ps-widget--account-dashboard .ps-widget__content ul li.active a{
  background-color:var(--cafeBase);
  color: var(--blanco);
}

.ps-widget--account-dashboard .ps-widget__content ul li a{
  transition: 0.3s background-color ease-in-out;
}
.ps-widget--account-dashboard .ps-widget__content ul li:hover a{
  background-color:var(--cafeFuerte);
}

.ps-widget--account-dashboard{
  border-radius: 10px;
}

.current{
  background-color: var(--blanco);
  color:var(--grisOscuro);
}

.SignIn{
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.content-sing-form{
  width: 50%;
}

textarea{
  resize: none;
}

.button.apply{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 3%;
  text-align: center;
  background-color: var(--grisOscuro);
  color: var(--blanco);
  padding: 10px 20px;
  transition: background-color 0.3s;
  border: none;
}
.button.apply:hover{
  background-color: var(--rojoMain);
}

.form-control:hover{
  border-color: var(--cafeFuerte);
}

.form-control:focus{
  border-color: var(--cafeFuerte);
  outline: none;
}

a{
  font-size: 16px;
  line-height: 18px;
  color: var(--grisOscuro);
  transition: 0.3s color ease-in-out;
}
a:hover{
  color: var(--cafeBase);
}

.products{
  margin-bottom:5rem;
}

.SignIn{
  justify-content: center;
  align-items: center;
}
.container-login{
  width: 80%;
}

.current{
  background-color: var(--blanco);
}

.btn-dir-cont .second-large-btn{
  padding-left:1.5rem;
}

#eliminarDireccion{
  transition: 0.3s all ease-in-out;
  color:#000000;
}
#eliminarDireccion:hover{
  color: var(--rojoMain);
}

.row.contenedor-direcciones{
  gap: 3rem;
}

.ps-cart--mini{
  padding-top:6px !important;
}

.container-banner{
  padding-left: 7rem;
  padding-right: 7rem;
}

@media(max-width:767px){
  
  .container-banner{
    padding-left:1rem;
  }

  .second-large-btn{
    padding-left: 5px;
    padding-right: 5px;
  }

}

.second-large-btn:focus{
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(146,103,65, 0.3);
}

.btn-primary:focus{
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(146,103,65, 0.3);
}
.btn-primary:active{
  background-color: var(--cafeFuerte);
}
.form-control:focus{
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(146,103,65, 0.3);
  border-color: var(--cafeBase) !important;
}

.wraper .form-field input:focus{
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(146,103,65, 0.3) !important;
  border-color: var(--cafeBase) !important;
}

.nav-tabs .nav-item .nav-link{
  color:var(--grisOscuro)
}

.nav-tabs:hover .nav-item:hover .nav-link:hover{
  color: var(--cafeBase);
}

#pagination button:focus{
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(146,103,65, 0.3);
}
button:focus{
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(146,103,65, 0.3);
  border-color: var(--cafeBase) !important;
}

textarea.form-control{
  padding: auto;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle{
  background-color: var(--cafeFuerte);
  border-color: var(--cafeBase) !important;
  box-shadow: 0 0 0 0.2rem rgba(146,103,65, 0.3);
}

.form-control:active{
  border-color: var(--cafeBase) !important;
}

.cart-table-body td.cart-item-name a{
  color: var(--cafeFuerte);
}

.section-rastreo{
  margin-top:8rem;
}