/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Saira:wght@100..900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(220, 90%, 25%);
  --first-color-alt: hsl(166, 78%, 38%);
  --title-color: hsl(220, 90%, 22%);
  --text-color: hsl(166, 12%, 40%);
  --white-color: hsl(166, 100%, 99%);
  --dark-color: hsl(220, 100%, 22%);
  --body-color: hsl(196, 100%, 47%);
  --body-white-color: hsl(0, 0%, 100%);
  --body-first-color: hsl(166, 80%, 40%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", serif;
  --second-font: "Saira", serif;
  --biggest-font-size: 4.5rem;
  --big-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 9.5rem;
    --big-font-size: 4rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

input,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
button {
  outline: none;
  border: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--second-font);
  font-weight: var(--font-medium);
  line-height: 110%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 4rem;
}

.section_second {
  margin-top: -2rem;
}

.section__title {
  text-align: center;
  font-size: var(--big-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 2.5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--body-color);
  z-index: var(--z-fixed);
  transition: box-shadow .4s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__logo img {
  width: 9.5rem;
  /*antes 12rem*/
  height: auto;
  margin-top: 0rem;
  /*esto es nuevo*/
}

.nav__logo:hover {
  color: var(--first-color);
}

/*diseno logo lancero*/
.nav__logo__lancero {
  color: var(--white-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__logo__lancero img {
  width: 7.5rem;
  height: auto;
  margin-top: 0rem;
  position: relative;
  left: -11rem;
}

.nav__logo__lancero2 img {
  width: 7.5rem;
  height: auto;
  margin-top: 0rem;
  position: relative;
  left: -22.5rem;
}


.nav__logo__lancero:hover {
  color: var(--first-color);
}

/*fin de logo lancero*/


.nav__toggle,
.nav__close {
  display: flex;
  color: var(--white-color);
  font-size: 1.7rem;
  cursor: pointer;
}

/* Navigation for mobile devices */

@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    top: -120%;
    left: 0;
    background-color: var(--body-color);
    width: 100%;
    padding-block: 4rem;
    box-shadow: 0 8px 16px hsla(166, 85%, 8%, .3);
    transition: top .4s;
  }

  .nav__logo__lancero img {
    width: 7rem;
    height: auto;
    margin-top: 0rem;
    position: relative;
    left: -2rem;
  }
    .nav__logo__lancero2 img {
    width: 7rem;
    height: auto;
    margin-top: 0rem;
    position: relative;
    left: -2rem;
  }
}

.nav__list {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.nav__link {
  color: var(--white-color);
  font: var(--font-medium) var(--h1-font-size) var(--second-font);
  line-height: 110%;
  transition: color .4s;
}

.launch {
  background-color: var(--first-color);
  padding-top: 7px;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 7px;

}

.launch:hover {
  background-color: var(--body-color) !important;
  box-shadow: 0 8px 24px hsla(166, 85%, 8%, .2);
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  top: 0;
}

/* Add shadow header */
.shadow-header {
  box-shadow: 0 4px 16px hsla(166, 85%, 8%, .3);
}

/* Active link */
.active-link {
  color: var(--first-color);
}

.active-link#contact_link {
  color: var(--white-color);
}

/*=============== HOME ===============*/
.home {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.home__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: -1;
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 123, 255, 0.2);
  z-index: 0;
}

.home__container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home__title {
  color: var(--white-color);
  font-size: var(--biggest-font-size);
  font-weight: var(--font-semi-bold);
  text-align: center;

}

.home__images {
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
}

.home__shape {
  width: 280px;
  height: 280px;
  background-color: var(--first-color);
  border-radius: 50%;
  clip-path: inset(50% 0 0 0);
}

.home__images img {
  position: absolute;
}

.home__coffee {
  width: 290px;
  top: 3.2rem;
  /*antes -3.5rem*/
  rotate: 10deg;
}

.home__splash {
  max-width: initial;
  width: 350px;
  rotate: 10deg;
  left: -3rem;
  bottom: .5rem;
}

.home__bean-1,
.home__bean-2 {
  width: 40px;
}

.home__bean-1 {
  left: 1.5rem;
  top: 1.5rem;
}

.home__bean-2 {
  right: 3.5rem;
  bottom: 6.5rem;
  rotate: -90deg;
  filter: blur(2px);
}

.home__ice-1 {
  width: 70px;
  left: 1.5rem;
  bottom: 0.3rem;
  rotate: 16deg;
}

.home__ice-2 {
  width: 40px;
  top: 4rem;
  right: 1.25rem;
  rotate: 60deg;
}

.home__leaf {
  width: 105px;
  right: 4rem;
  bottom: 0rem;
  rotate: -15deg;
}

.home__sticker {
  position: absolute;
  width: 50px;
  right: .5rem;
  top: 29rem;
  rotate: 15deg;
}

.home__data {
  margin-top: 2.5rem;
  text-align: center;
}

.home__description {
  color: var(--white-color);
  margin-bottom: 1.5rem;
}

/*=============== BUTTON ===============*/
.button__ws {
  position: fixed;
  border-radius: 50%;
  left: 1rem;
  bottom: 5%;
  box-shadow: 0 4px 8px hsla(166, 85%, 8%, .4);
  color: var(--white-color);
  background-color: var(--white-color);
  padding: 6px;
  font-size: 1.25rem;
  z-index: 999;

}

.button__ws img {
  width: 3rem;
  height: auto;
}

.button {
  display: inline-flex;
  justify-content: center;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: background .4s, box-shadow -4s;
}

.button__product {
  margin-top: 20px;
  display: inline-flex;
  justify-content: center;
  background-color: var(--body-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: background .4s, box-shadow -4s;
  display: flex;
}

.button__product:hover {
  background-color: var(--first-color);
  box-shadow: 0 8px 24px hsla(166, 85%, 8%, .2);
}

.button:hover {
  background-color: var(--body-color);
  box-shadow: 0 8px 24px hsla(166, 85%, 8%, .2);
}

.button-dark {
  background-color: var(--dark-color);
}

.button-dark:hover {
  background-color: var(--dark-color);
}

/*=============== POPULAR ===============*/
.popular {
  background-color: var(--body-white-color);
}

.popular .section__title {
  color: var(--title-color);
}

.popular__swiper {
  padding-top: 1.5rem;
}

.popular__card {
  width: 330px;
  /*estaba en 270p*/
  display: grid;
  row-gap: 1.5rem;
}

/* Estilos específicos para las tarjetas en la sección de nosotros */
.swiper__nosotros .popular__card {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  width: 280px;
  /* Mismo ancho que tenían originalmente */
}

.swiper__nosotros .popular__card:hover {
  transform: none;
  box-shadow: none;
}

.swiper__nosotros .popular__data {
  padding: 1.5rem;
  margin: 0;
}

/* Estilos específicos para las tarjetas en la sección de contactos */
.contact .popular__card {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.contact .popular__card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.contact .popular__data {
  padding: 0 !important;
  margin: 0 !important;
}

.popular__images {
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
}

.popular__shape {
  width: 195px;
  height: 195px;
  background-color: var(--first-color);
  border-radius: 50%;
  clip-path: inset(50% 0 0 0);
}

.popular__images img {
  position: absolute;

}

.popular__coffee {
  width: 170px;
  top: 0.5rem;
  /*Esto se añadio para rotar las latas de atun un poco*/
  rotate: -25deg;
  transition: transform .5s .1s;
  /*fin*/
}

#aliados {
  /*Esto se añadio para rotar las latas de atun un poco*/
  rotate: 0deg !important;
  transition: transform .5s .1s;
  width: 15rem;
  height: auto;
  align-items: center;
  /*fin*/
}

.popular__bean-1 {
  width: 60px;
  top: 10rem;
  left: -0.5rem;
  transition: transform .5s .1s;
  rotate: -20deg;
}

.popular__bean-2 {
  width: 44px;
  right: -1rem;
  bottom: 2rem;
  rotate: 53deg;
  /*filter: blur(1px);*/
  transition: transform .5s .1s;
  top: 2rem;
}

.popular__data {
  text-align: center;
}

.popular__name {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: .5rem;
}

@media screen and (min-width: 1150px) {
  .popular__name {
    font-size: var(--h2-font-size);
  }
}

.popular__description {
  margin-bottom: 1.5rem;
}

.popular__card:hover .popular__coffee {
  transform: translate(-.5rem, -.25rem);
}

.popular__card:hover .popular__bean-1 {
  transform: translate(.5rem, -.25rem);
}

.popular__card:hover .popular__bean-2 {
  transform: translate(.5rem, -.25rem);
}

/* Swiper class */
.swiper {
  overflow: visible;
  margin-inline: initial;
}

/*=============== ABOUT ===============*/
.about__container {
  row-gap: 3rem;
}

.about__data {
  text-align: center;
}

.about .section__title,
.about__description {
  color: var(--white-color);
  margin-bottom: 1.5rem;
}

.about__images {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
}

.about__shape {
  width: 300px;
  height: 300px;
  background-color: var(--first-color);
  border-radius: 50%;
}

.about__images img {
  position: absolute;
}

.about__coffee {
  width: 190px;
  /*antes de 280px*/
  filter: drop-shadow(0 8px 16px hsla(166, 85%, 8%, .5));
}

.about__leaf-1,
.about__leaf-2 {
  width: 50px;
}

.about__leaf-1 {
  top: .5rem;
  left: 3.5rem;
  rotate: -105deg;
}

.about__leaf-2 {
  top: 7.75rem;
  right: 2.5rem;
  rotate: -15deg;
}

/*=============== PRODUCTS ===============*/
.products {
  background-color: var(--white-color);
}

.products .section__title {
  color: var(--dark-color);
}

.products__container {
  grid-template-columns: repeat(1, 1fr);
}

.products__card {
  position: relative;
  background-color: var(--dark-color);
  padding: 1rem 1.5rem 1.25rem;
}

.products__images {
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: center;
}

.products__shape {
  width: 200px;
  height: 200px;
  background-color: var(--body-color);
  border-radius: 50%;
  clip-path: inset(50% 0 0 0);
}

.products__images img {
  position: absolute;
}

.products__coffee {
  width: 170px;
  top: 20px;
  transition: transform .4s;
  rotate: -19.5deg;
}

.products__ice-1 {
  width: 65px;
  left: -1.5rem;
  bottom: 0;
  transition: transform .5s .1s;
  top: 10.5rem;
  rotate: -16deg;
}

.products__ice-2 {
  width: 50px;
  top: 1rem;
  right: -2.25rem;
  rotate: 31deg;
  transition: transform .5s .1s;
}

.products__data {
  margin-top: 2.25rem;
  text-align: center;
}

.products__name {
  color: var(--white-color);
  font-size: var(--h1-font-size);
  margin-bottom: .75rem;
}

.products__price {
  color: var(--first-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
}

.products__button {
  position: absolute;
  right: .5rem;
  bottom: 1.25rem;
  width: 32px;
  height: 32px;
  background-color: var(--body-color);
  color: var(--dark-color);
  font-size: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 4px 8px hsla(166, 85%, 8%, .4);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.products__card:hover .products__coffee {
  transform: translateY(-.25rem);
}

.products__card:hover .products__ice-1 {
  transform: translate(-.25rem, .25rem);
}

.products__card:hover .products__ice-2 {
  transform: translate(-.5rem, -.5rem);
}

/*=============== CONTACT ===============*/
.contact {
  background-color: var(--white-color);
}

.contact .section__title {
  color: var(--first-color);
}

.contact__container,
.container__info {
  row-gap: 2rem;
}

.contact__info {
  color: var(--first-color);
  text-align: center;
}

.contact__title {
  font-style: var(--h1-font-size);
  margin-bottom: .5rem;
}

.contact__social {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}

.contact__social-link {
  font-size: 1.5rem;
  color: var(--first-color);
  transition: transform .4s;
}

.contact__social-link:hover {
  transform: translateY(-.25rem);
}

.contact__address {
  font-style: normal;
  text-decoration: none !important;
  list-style: none !important;
}

.contact__address a {
  text-decoration: none;
  cursor: pointer;
  color: var(--first-color);
}

.contact__map {
  color: var(--first-color);
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  margin-top: .5rem;
  font-style: 1rem;
}

.contact__map span {
  font-style: var(--small-font-size);
  font-weight: var(--font-semi-bold);
}

.contact__images {
  position: relative;
  display: grid;
  justify-items: center;
  margin-top: 3rem;
}

.contact__shape {
  width: 300px;
  height: 300px;
  background-color: var(--first-color);
  border-radius: 50%;
}

.contact__delivery {
  width: 300px;
  position: absolute;
  top: -2.5rem;
  mask-image: linear-gradient(to bottom,
      var(--first-color) 80%,
      transparent 100%);
}


/*=============== FOOTER ===============*/
.footer {
  background-color: var(--white-color);
  padding-block: 4rem 2rem;
}

.footer__container {
  row-gap: 3rem;
}

.footer__title {
  font-size: var(--h2-font-size);
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.footer__social,
.footer__pay,
.footer__form {
  display: flex;
  column-gap: 1rem;
}

.footer__social-link {
  font-size: 1.5rem;
  color: var(--dark-color);
  transition: transform .4s;
}

.footer__social-link:hover {
  transform: translateY(-.25rem);
}

.footer__pay-card {
  width: 30px;
}

.footer__form {
  background-color: var(--dark-color);
  padding: .5rem;
}

.footer__input {
  width: 100%;
  background: transparent;
  padding-left: .75rem;
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
}

.footer__input::placeholder {
  color: var(--white-color);
}

.footer__button {
  padding: .75rem 1.5rem;
  color: var(--white-color);
  cursor: pointer;
  background-color: var(--body-color);
  ;
}

.footer__copy {
  display: block;
  margin-top: 4rem;
  color: var(--dark-color);
  text-align: center;
  font-size: var(--small-font-size);
}

/*=============== SCROLL BAR ===============*/


/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 4px 8px hsla(166, 85%, 8%, .4);
  color: var(--white-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover {
  transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 330px) {
  .container {
    margin-inline: 1rem;
  }

  .section__title {
    font-size: 2rem;
  }

  .home__title {
    font-size: 3.5rem;
  }

  .home__shape {
    width: 250px;
    height: 250px;
  }

  .home__coffee {
    width: 145px;
  }

  .home__splash {
    width: 310px;
  }

  .home__sticker {
    top: 25rem;
  }

  .about__shape {
    width: 250px;
    height: 250px;
  }

  .about__coffee {
    width: 240px;
  }

  .products__container {
    /*Los productos se alinean a 1 sola columna, se puede quitar*/
    grid-template-columns: 160px;
    justify-content: center;
  }

  .contact__shape {
    width: 250px;
    height: 250px;
  }

  .contact__delivery {
    width: 250px;
  }

}




/* For medium devices */
@media screen and (min-width: 576px) {

  .home__container,
  .about__container {
    grid-template-columns: 400px;
    justify-content: center;
  }

  .products__container {
    grid-template-columns: repeat(3, 160px);
    justify-content: center;
  }

  /*.footer__form{
  width: 360px;
}*/

}

@media screen and (min-width: 768px) {
  .popular__swiper {
    width: 850px;
    overflow-x: clip;
    justify-self: center;

  }


  .contact__container {
    justify-content: center;
  }

  .contact__info {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    column-gap: 6rem;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .footer div:nth-child(3) {
    grid-column: 1/3;
  }

  .footer__title {
    text-align: center;
  }

}

/* For large devices */
@media screen and (min-width: 1150px) {
  .home__title {
    margin-bottom: -10rem;
    /*esto es n*/
  }

  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 7rem 5rem;
  }

  .section__title {
    margin-bottom: 4rem;
  }

  .nav {
    height: calc(var(--header-height) + 0.6rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .logo__frigopacsa {
    margin-top: 5rem;
  }

  .home__container {
    grid-template-columns: 970px;
    max-width: 970px;
    padding-top: 2.5rem;
  }

  .home__images {
    transform: translate(1rem, -2rem);
    margin-top: -3rem;
  }

  .home__shape {
    width: 490px;
    height: 490px;
  }

  .home__coffee {
    width: 500px;
    /*antes width: 280px*/
    top: 6rem;
    /*antes top: -6rem;*/
  }

  .home__splash {
    width: 500px;
    /*antes 615px*/
    left: -4rem;
    /*antes -5rem*/
    bottom: .75rem;
    top: -1rem;
    /*posicion nueva*/
  }

  .home__bean-1,
  .home__bean-2 {
    width: 70px;
  }

  .home__bean-1 {
    left: 3rem;
    top: 3.5rem;
  }

  .home__bean-2 {
    bottom: 10.75rem;
    right: 6.5rem;
  }

  .home__ice-1 {
    width: 90px;
    left: 2.5rem;
    bottom: 3rem;
  }

  .home__ice-2 {
    width: 70px;
    top: 6.5rem;
    right: 2rem;
  }

  .home__leaf {
    width: 129px;
    right: 5rem;
    bottom: 0.5rem;
  }

  .home__data {
    position: absolute;
    top: 20rem;
    left: 0;
    width: 230px;
    text-align: initial;
    margin-top: 0;
  }

  .home__description {
    margin-bottom: 6rem;
  }

  .home__sticker {
    width: 150px;
    top: 23rem;
    right: 0;
  }

  .popular__container {
    padding-bottom: 2rem;
  }

  .popular__swiper {
    width: 950px;
  }

  .swiper__nosotros {
    margin-top: -3rem !important;
  }

  .popular__card {
    width: 280px;
  }

  .popular__shape {
    width: 230px;
    /*antes 280*/
    height: 250px;
    /*antes 280*/
  }

  .popular__coffee {
    width: 170px;
    top: 4rem;
    /*antes era -2rem*/
  }

  .popular__bean-1 {
    width: 60px;
    /*antes era 40px*/
    top: 13.7rem;
    left: .75rem;
    rotate: -30deg;
    /*se anadio esta propiedad*/
  }

  .popular__bean-2 {
    width: 48px;
    /*antes era 30px*/
    right: 0.5rem;
    bottom: 2.5rem;
  }

  .about__container {
    grid-template-columns: 430px 500px;
    align-items: center;
    column-gap: 6rem;
    padding-block: 2rem;
  }

  .about__data,
  .about .section__title {
    text-align: initial;
  }

  .aliados_title {
    text-align: center !important;
  }

  .about__description {
    margin-bottom: 4rem;
  }

  .about__shape {
    width: 500px;
    height: 500px;
  }

  .about__coffee {
    width: 313px;
    /*antes solo width de 480px nada mas*/
    margin-top: -3rem;
  }

  .about__coffeee {
    width: 495px;
    /*antes solo width de 480px nada mas*/
    margin-top: -3rem;
  }

  .about__leaf-1,
  .about__leaf-2 {
    width: 85px;
  }

  .about__leaf-1 {
    top: .75rem;
    left: 6rem;
  }

  .about__leaf-2 {
    top: 13rem;
    right: 3.5rem;
  }

  .products__container {
    grid-template-columns: repeat(3, 250px);
    gap: 5rem;
    padding-bottom: 2rem;
  }

  .products__card {
    padding: 1.5rem 1rem 1rem;
  }

  .products__shape {
    width: 180px;
    height: 200px;
  }

  .products__coffee {
    width: 152px;
    /*antes 130px*/
    top: 2rem;
    rotate: -19.5deg;
  }

  .products__ice-1 {
    width: 70px;
    left: -1.25rem;
    rotate: -21deg;
    top: 10rem;
  }

  .products__ice-2 {
    width: 45px;
    top: 0.5rem;
    right: 0.5rem;
  }

  .products__data {
    margin-top: 1.5rem;
  }

  .products__name,
  .products__price {
    font-size: var(--h2-font-size);
  }

  .products__button {
    right: 1rem;
    bottom: 2rem;
    width: 36px;
    height: 36px;
  }

  .contact .section__title {
    font-size: 4rem;
  }

  .section__title__contact {
    font-size: 3.8rem !important;

  }

  .section__title__nosotros {
    font-size: 1.8rem !important;
    margin-top: -3.5rem !important;
  }

  .contact__container {
    grid-template-columns: repeat(3, max-content);
    align-items: flex-start;
    column-gap: 3rem;
  }

  .container__nosotros {
    grid-template-columns: repeat(3, max-content);
    align-items: flex-start;
    column-gap: 3rem;
    margin-top: -5rem !important;
  }

  .contact__info {
    grid-template-columns: max-content;
    row-gap: 6rem;
    margin-top: 7rem;
  }

  .contact__info:nth-child(2) {
    order: 2;
  }

  .contact__title {
    font-size: var(--h2-font-size);
    margin-bottom: 1rem;
  }

  .contact__social {
    column-gap: 1.5rem;
  }

  .contact__images {
    margin-top: 0;
  }

  .contact__images__nosotros {
    margin-top: 6rem !important;
  }

  .contact__shape {
    width: 500px;
    height: 500px;
  }

  .nosotros__shape {
    width: 200px !important;
    height: 200px !important;
  }

  .contact__delivery {
    width: 550px;
    top: -3.5rem;
  }

  .nosotros__image {
    width: 250px !important;
    top: -1.5rem;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    /*antes era 3 y 1*/
  }

  .footer__container div:nth-child(3) {
    grid-column: initial;
  }

  .footer__container div:nth-child(2) {
    order: 1;
    justify-self: end;
  }

  .footer__container div:nth-child(1) {
    justify-self: start;
  }

  .footer__social,
  .footer__pay {
    margin-inline: auto;
    justify-content: center;
  }

  .footer_copy {
    margin-top: 5rem;
  }

  .scrollup {
    right: 3rem;
  }

}


/* For 2K resolutions (2048 x 1152, 2048 x 1536) */

@media screen and (min-width: 2048px) {
  body {
    zoom: 1.3;
  }

  .nav__logo__lancero img {
    width: 7.5rem;
    height: auto;
    margin-top: 0rem;
    position: relative;
    left: -10rem;
  }
}

.section__title__nosotros {
  font-size: 1.5rem !important;
  margin-top: -2rem !important;
}

.description__products {
  margin-bottom: 1.5rem;
  color: var(--white-color);
  font-size: 0.9rem;
}

/*........FORMULARIO DE CONTACTO........*/
input[type=email] {
  width: 100%;
  padding: 12px;

  border-radius: 4px;
  resize: vertical;
}

input[type=text],
select,
textarea {
  width: 100%;
  padding: 12px;

  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  color: var(--white-color);
}

input[type=submit] {
  background-color: var(--first-color);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}


.container__formulario {

  background-color: var(--body-color);
  padding: 20px;
  width: 24rem;
}

.title__formulario {
  color: var(--white-color);
  text-align: center;
}

.button__formulario:hover {

  background-color: var(--body-color) !important;
  box-shadow: 0 8px 24px hsla(166, 85%, 8%, .2);

}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

  .col-25,
  .col-75,
  input[type=submit] {
    width: 100%;
    margin-top: 0;
  }

  .container__formulario {


    width: 100%;

  }

}

/*-----------botones de lenguaje---------------- */
.button__idioma {
  position: fixed;
  border-radius: 50%;
  left: 1rem;
  bottom: 15%;
  box-shadow: 0 4px 8px hsla(166, 85%, 8%, .4);
  background-color: var(--body-color);

  font-size: 1.65rem;
  z-index: 999;
  width: 62px;
  height: 62px;
  border: 0;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  color: black;

  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  cursor: pointer;
}