@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
body {
  overflow-x: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
}

body.no-scroll {
  overflow: hidden; /* Elimina el scroll */
}

h1, h2, h3, h4, h5, h6, p, a {
  font-family: "Work Sans", sans-serif;
  color: #242527;
}

#loader {
  background: url(../media/loader-bg.jpg);
  height: 95vh;
  width: 100vw;
  background-size: 100% 100%;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.animated-logo {
  width: 90%;
  height: -moz-max-content;
  height: max-content;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: translateY(-25vh);
}
.animated-logo #signature, .animated-logo #signature-2, .animated-logo #signature-3, .animated-logo #signature-4, .animated-logo #signature-5, .animated-logo #signature-6, .animated-logo #signature-7, .animated-logo #signature-8, .animated-logo #signature-9,
.animated-logo #signature-10, .animated-logo #signature-11 {
  stroke-dasharray: 245;
  stroke-dashoffset: 245;
  fill: transparent;
  stroke: transparent;
  animation: sign 2s ease-in forwards;
}
.animated-logo #signature-2 {
  animation-delay: 0.2s;
}
.animated-logo #signature-3 {
  animation-delay: 0.4s;
}
.animated-logo #signature-4 {
  animation-delay: 0.6s;
}
.animated-logo #signature-5 {
  animation-delay: 0.8s;
}
.animated-logo #signature-6 {
  animation-delay: 1s;
}
.animated-logo #signature-7 {
  animation-delay: 1.2s;
}
.animated-logo #signature-8 {
  animation-delay: 1.4s;
}
.animated-logo #signature-9 {
  animation-delay: 1.6s;
}
.animated-logo #signature-10 {
  animation-delay: 1.8s;
}
.animated-logo #signature-11 {
  animation-delay: 2s;
}
@keyframes sign {
  0% {
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dashoffset: 245;
  }
  80% {
    stroke-dashoffset: 490;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 490;
    fill: #242527;
    stroke: #242527;
  }
}

#loader.hide {
  opacity: 0;
}

.slogan {
  font-size: 24px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  animation-delay: 3s;
  position: absolute;
  top: 28vh;
}

.galeria-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 22vh;
  animation-delay: 3.5s;
}
.galeria-loader .img-loader {
  border-radius: 22px;
  position: relative;
}
.galeria-loader .img-loader:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.1;
  border-radius: 22px;
}
.galeria-loader .center {
  width: 70%;
  height: 33vh;
  background: url(../media/img-loader-1.jpg);
  background-size: cover;
  z-index: 2;
}
.galeria-loader .left {
  width: 55%;
  height: 28vh;
  background: url(../media/img-loader-3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 3px;
  margin-right: -60px;
  transform: rotate(351deg);
}
.galeria-loader .right {
  width: 55%;
  height: 28vh;
  margin-top: 10px;
  background: url(../media/img-loader-2.jpg);
  background-size: cover;
  margin-left: -60px;
  transform: rotate(11deg);
}

.btn {
  position: absolute;
  bottom: 10vh;
  font-size: 24px;
  font-weight: 600;
  padding: 10px 90px;
  background: linear-gradient(to right, #FDCAA2 0%, #F3CCC4 100%);
  border-radius: 42px;
  box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.25);
  outline: none;
  text-decoration: none;
  border: none;
  transition: 0.8s ease;
  animation-delay: 4s;
}
.btn:hover {
  transform: scale(1.1);
  outline: none;
  text-decoration: none;
  border: none;
}

.animate__zoomIn {
  animation-delay: 2s;
}

.app {
  background: url(../media/app-bg-mobile.png);
  background-size: 100% 100%;
  position: relative;
}
.app .title-app {
  font-size: 28px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 20px;
}
.app .row {
  margin: 0;
  padding: 0;
}
.app .align-left {
  padding-left: 30px;
}
.app .margin-bottom {
  margin-bottom: 50px;
}
.app .show-responsive, .app .mobile {
  display: initial;
}
@media (min-width: 767px) {
  .app .show-responsive, .app .mobile {
    display: none;
  }
}
.app .hide-responsive {
  display: none;
}
@media (min-width: 767px) {
  .app .hide-responsive {
    display: initial;
  }
}
.app .top-welcome {
  padding: 30px 30px 80px 30px;
}
.app .top-welcome .logo-app {
  display: block;
  width: 260px;
  height: auto;
}
.app .top-welcome .logo-app img {
  width: 100%;
  height: 100%;
}
.app .navbar {
  z-index: 95;
  position: fixed;
  bottom: 0;
  left: 0;
  border-radius: 35px 35px 0 0;
  background: linear-gradient(to right, #FDCAA2 0%, #F3CCC4 100%);
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 0px 35px;
}
.app .navbar .nav-item {
  transform: scale(0.8);
}
.app .slider-popular {
  height: 400px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 80px;
}
.app .most-popular {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.app .item {
  width: 200px;
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: top;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
}
.app .item:nth-child(1), .app .item:nth-child(2) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}
.app .item:nth-child(1):after, .app .item:nth-child(2):after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
}
.app .item:nth-child(3) {
  left: 50%;
}
.app .item:nth-child(4) {
  left: calc(50% + 220px);
}
.app .item:nth-child(5) {
  left: calc(50% + 440px);
}
.app .item:nth-child(6) {
  left: calc(50% + 660px);
  opacity: 0;
}
.app .content {
  width: 40%;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  font: 400 0.85rem helvetica, sans-serif;
  color: #fff;
  opacity: 0;
  display: none;
  z-index: 2;
}
.app .content .title {
  text-transform: uppercase;
  color: #fff;
}
.app .content .description {
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  font-size: 0.8rem;
  color: #fff;
}
.app .content .btn-mp {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  background: linear-gradient(to right, #FDCAA2 0%, #F3CCC4 100%);
  border-radius: 42px;
  box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.25);
  outline: none;
  text-decoration: none;
  border: none;
  transition: 0.8s ease;
  animation-delay: 4s;
  margin-left: 25px;
}
.app .content .btn-mp:hover {
  transform: scale(1.1);
  outline: none;
  text-decoration: none;
  border: none;
}
.app .content button {
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
  border: 2px solid white;
  border-radius: 0.25rem;
  padding: 0.75rem;
  cursor: pointer;
}
.app .item:nth-of-type(2) .content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}
@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.app .nav {
  position: absolute;
  bottom: -65px !important;
  left: 52%;
  transform: translateX(-50%);
  z-index: 5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.app .nav .btn {
  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0.25rem;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
}
.app .nav .btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.app .nav .next {
  transform: translateX(100px);
}
.app .nav .prev {
  transform: translateX(40px);
}
@media (width > 650px) and (width < 900px) {
  .app .content .title {
    font-size: 1rem;
  }
  .app .content .description {
    font-size: 0.7rem;
  }
  .app .content button {
    font-size: 0.7rem;
  }
  .app .item {
    width: 160px;
    height: 270px;
  }
  .app .item:nth-child(3) {
    left: 50%;
  }
  .app .item:nth-child(4) {
    left: calc(50% + 170px);
  }
  .app .item:nth-child(5) {
    left: calc(50% + 340px);
  }
  .app .item:nth-child(6) {
    left: calc(50% + 510px);
    opacity: 0;
  }
}
@media (width < 650px) {
  .app .content .title {
    font-size: 1.2rem;
  }
  .app .content .description {
    font-size: 15px;
  }
  .app .content button {
    font-size: 0.7rem;
  }
  .app .item {
    width: 130px;
    height: 220px;
  }
  .app .item:nth-child(3) {
    left: 60%;
  }
  .app .item:nth-child(4) {
    left: calc(70% + 140px);
  }
  .app .item:nth-child(5) {
    left: calc(70% + 280px);
  }
  .app .item:nth-child(6) {
    left: calc(70% + 420px);
    opacity: 0;
  }
}

:root {
  --clr-text: hsl(0, 0%, 100%);
}

.another-invitations {
  display: flex;
  justify-content: center;
  align-items: center;
}

.another-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.recipe-container {
  border-radius: 25px;
  padding: 30px 0;
  width: 100%;
}

.swiper-horizontal {
  touch-action: pan-y;
  width: 90% !important;
  overflow-x: hidden !important;
}

.recipe-container > h1 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #dda3b6;
  margin: 20px 0 40px;
}

.swiper {
  width: 80%;
  height: 100%;
  margin-bottom: 30px;
}

.swiper-scrollbar {
  --swiper-scrollbar-bottom: 0;
  --swiper-scrollbar-drag-bg-color: #F2B584;
  --swiper-scrollbar-size: 5px;
}

.post {
  width: 47% !important;
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text);
  background: rgba(242, 181, 132, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 16px 16px 0;
  margin-bottom: 16px;
}

.post-img {
  width: 100%;
  max-width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 6px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.post-body {
  padding: 15px 0;
}

.post-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-author {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  font-weight: 600;
}

.post-actions {
  position: relative;
}

.post-actions-content {
  position: absolute;
  bottom: 130%;
  right: 0;
  padding: 8px;
  border-radius: 8px;
  background: rgba(172, 172, 172, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 2px 2px 10px 2px hsla(0, 0%, 0%, 0.25);
  transition: opacity 0.25s, scale 0.25s;
  transform-origin: bottom right;
}

.post-actions-content[data-visible=false] {
  pointer-events: none;
  opacity: 0;
  scale: 0;
}

.post-actions-content[data-visible=true] {
  pointer-events: unset;
  scale: 1;
  opacity: 1;
}

.post-actions-content li {
  padding: 0.5rem 0.65rem;
  border-radius: 0.25rem;
  list-style: none;
}

.post-actions-content li:is(:hover, :focus-within) {
  background-color: rgba(248, 132, 169, 0.7);
}

.post-actions-link {
  width: -moz-max-content;
  width: max-content;
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.post-like {
  text-decoration: none;
  color: var(--clr-text);
  margin-right: 5px;
  font-size: 1.1rem;
  opacity: 0.65;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.35s ease;
}

.post-actions-controller {
  border: 0;
  background: none;
  color: var(--clr-text);
  cursor: pointer;
  opacity: 0.65;
}

.post-like:hover,
.post-actions-controller:hover {
  opacity: 1;
}

.post-like:focus {
  outline: none;
}

.post-like.active {
  color: rgb(255, 0, 0);
  opacity: 1;
  transform: scale(1.2);
}

/* MEDIA QUERIES */
@media (max-width: 1200px) {
  .swiper {
    width: 80%;
  }
}
@media (max-width: 900px) {
  #recipes {
    padding: 60px 80px;
  }
  .swiper {
    width: 50%;
  }
}
@media (max-width: 765px) {
  .swiper {
    width: 70%;
  }
}
@media (max-width: 550px) {
  #recipes {
    padding: 40px 40px;
  }
  .swiper {
    width: 80%;
  }
}
/* ----------------------FUNCIONES--------------------------------------------------------------- */
#funciones {
  padding-bottom: 80px;
}

.ttl-circulo {
  text-align: center;
  margin-bottom: 5vh;
}

.ttl-funciones {
  font-size: 20px;
  letter-spacing: 3px;
}

.circulo {
  border: 1px solid #242527;
  width: auto;
  min-height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 5vh;
  position: relative;
  transform: scale(0.95);
}

.circulito {
  border: 1px solid #242527;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  transition: 1s ease;
}
.circulito img {
  width: 20px;
  height: 20px;
  transition: 1s ease;
}
.circulito img:hover {
  transform: scale(1.2);
}

.circulito:hover {
  background: linear-gradient(135deg, #FACAA8 0, #F4CCBF 100%);
  transition: 1s;
  border: none;
  box-shadow: 1px 2px 8px 0px #afafaf;
}

.texto-circulo {
  margin: 0;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  font-weight: 600;
}

.c1 {
  top: 8%;
  left: 8%;
}

.c2 {
  top: 8%;
  right: 8%;
}

.c3 {
  top: -7%;
  left: 42%;
}

.c4 {
  top: 42%;
  left: -5%;
}

.c5 {
  top: 42%;
  right: -5%;
}

.c6 {
  bottom: 8%;
  left: 8%;
}

.c7 {
  bottom: 8%;
  right: 8%;
}

.c8 {
  bottom: -7%;
  left: 42%;
}

.downspace {
  padding: 0 30px 15vh 0;
  font-size: 18px;
}

/* ------------------------Funciones no responsive----------------------------- */
.contenedor-funciones-web {
  padding: 0vh 2vw 0vh 2vw;
}

.espacio-abajo {
  padding: 0vh 0vw 3vh 0vw;
}

.titulo-funciones {
  text-align: center;
  margin-bottom: 6vh;
}

.funciones-titulo {
  font-size: clamp(0.8125rem, 0.3299rem + 1.2869vw, 1.875rem);
}

.funciones {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 5vh 0vw;
}

.funciones i {
  font-size: 40px;
  color: rgb(1, 46, 64);
  margin-bottom: 3vh;
}

.funciones-p {
  text-align: center;
  font-size: clamp(0.625rem, 0.5114rem + 0.3028vw, 0.875rem);
}

.signature {
  position: absolute;
  bottom: 61px;
  right: 5%;
}/*# sourceMappingURL=inviteme.css.map */