@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

html {
  scroll-snap-type: y proximity;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

#background-video {
  min-width: 100vw;
  min-height: 100vh;
  z-index: -10000;
  object-fit: cover;
  position: fixed;
}

/* MAIN COVER STYLES */

.cover-bg {
  height: 100vh;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  color: #f3f2f3;
}

.cover-bg img {
  width: 8rem;
  justify-self: end;
  align-self: end;
  animation: left-in 0.6s ease-in-out both;
  animation-delay: 0.2s;
}

.cover-bg h1 {
  font-family: "Times New Roman", sans-serif;
  text-decoration: none;
  pointer-events: none;
  font-size: 6rem;
  align-self: end;
  justify-self: start;
  line-height: 100%;
  animation: right-in 0.6s ease-in-out both;
  animation-delay: 0.6s;
}

.cover-bg h2 {
  pointer-events: none;
  font-size: 1.4rem;
  grid-column: 1 / 3;
  align-self: start;
  justify-self: center;
  animation: bottom-in 0.8s ease-in-out both;
  animation-delay: 1.2s;
}

@media (min-width: 992px) and (max-width: 1439px) {
  .cover-bg {
    margin-top: 5%;
  }
  .cover-bg img {
    width: 24rem;
  }
  .cover-bg h1 {
    font-size: 20rem;
  }
  .cover-bg h2 {
    font-size: 4rem;
  }
}

@media (min-width: 1440px) {
  .cover-bg {
    margin-top: 5%;
  }
  .cover-bg img {
    width: 33rem;
  }
  .cover-bg h1 {
    font-size: 28rem;
  }
  .cover-bg h2 {
    font-size: 7rem;
  }
}

/* NAVBAR STYLES */

header {
  display: none;
}
@media (min-width: 1440px) {
  header {
    width: 100vw;
    height: 0px;
    position: fixed;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    top: 0;
    background-color: #16161873;
    transition: background-color 0.4s ease-in-out;
    z-index: 10000;
    overflow: hidden;
    transition: all 0.3s;
  }

  header.scrolled {
    height: 70px;
  }

  .logo {
    height: 60px;
    display: flex;
    align-items: center;
  }

  header nav {
    width: 100vw;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  header nav a {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    color: #f3f2f3;
    margin-left: 80px;
    padding: 0 12px;
    font-weight: 300;
    letter-spacing: 2px;
    height: 70px;
  }

  header a img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }

  header nav a.active {
    color: #b37beb;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  header > a {
    width: fit-content;
    text-wrap: nowrap;
    margin-right: auto;
    margin-left: 8%;
    font-weight: 500;
    text-decoration: none;
    font-size: 24px;
    color: #f3f2f3;
    letter-spacing: 2px;
  }

  nav a:last-child {
    margin-right: 6%;
  }
}

/* MAIN CARD STYLES */

#home {
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  scroll-snap-align: start;
}

.main-card {
  display: flex;
  background-color: #f0f0f0;
  width: 86%;
  height: fit-content;
  border-radius: 25px;
  margin-top: 90px;
  overflow: hidden;
  box-shadow: 20px 20px 2px 4px rgba(0, 0, 0, 0.6);
  transition: 1s;
  padding: 2rem 0 2rem 0;
}

.main-text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
}

.main-text h2 {
  color: #13072e;
  font-size: 1.5rem;
  width: 90%;
}

.main-text p {
  font-size: 0.9rem;
  width: 85%;
  line-height: 130%;
  text-align: justify;
}

.main-video {
  display: none;
}

@media (min-width: 992px) and (max-width: 1439px) {
  .main-text {
    margin-left: 20px;
    align-items: start;
    width: 150%;
    gap: 1rem;
  }

  .main-text h2 {
    font-size: 1.6rem;
  }

  .main-text p {
    font-size: 1rem;
    width: 100%;
    line-height: 140%;
  }

  .main-text strong {
    color: #9245e3;
  }
  .main-video {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .main-video video {
    width: 90%;
    object-fit: cover;
  }
  .main-card.card {
    transform: translateX(300px);
    opacity: 0;
  }

  .main-card.show {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (min-width: 1440px) {
  .main-card {
    height: 760px;
  }

  .main-text {
    margin-left: 20px;
    align-items: space-around;
  }

  .main-text h2 {
    font-size: 2.5rem;
  }

  .main-text p {
    font-size: 19px;
    width: 730px;
    line-height: 140%;
  }

  .main-text a {
    margin-left: -360px;
  }

  .main-text strong {
    color: #9245e3;
  }
  .main-video {
    display: flex;
    width: 1000px;
    align-items: center;
    justify-content: center;
  }
  .main-video video {
    width: 90%;
    object-fit: cover;
  }
  .main-card.card {
    transform: translateX(300px);
    opacity: 0;
  }

  .main-card.show {
    transform: translateX(0);
    opacity: 1;
  }
}

/* BUTTON */

.swipe {
  position: relative;
  background-color: #b3aaff;
  width: 280px;
  height: 60px;
  color: #13072e;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  letter-spacing: 4px;
  padding-left: 40px;
  cursor: pointer;
  transition: 0.35s ease;
}

.swipe:hover {
  padding-left: 0;
  padding-right: 40px;
  color: #b3aaff;
  background-color: #13072e;
}

.container {
  position: absolute;
  left: 5px;
  width: 50px;
  height: 50px;
  background: #b3aaff;
  border-radius: 50%;
  transition: 0.35s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #13072e;
}

.swipe:hover .container {
  left: calc(100% - 55px);
}

/* SERVICES STYLES */

#services {
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin-top: 70px;
  gap: 4rem;
}

/* PRODUCT CARDS */

.product {
  position: relative;
  display: flex;
  text-align: center;
  align-items: center;
  width: 80%;
  height: 70vh;
  background: #b37ced;
  color: #210c34;
  border: 2px solid #210c34;
  border-radius: 25px;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 20px 20px 2px 4px rgba(0, 0, 0, 0.6);
  transition: 0.5s;
  transition-delay: 0.2s;
}

.product.card {
  transform: translateX(-80px);
  opacity: 0;
}

.product.show {
  transform: translateX(0);
  opacity: 1;
}

.product h2 {
  font-family: "Antonio", sans-serif;
  position: absolute;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 3.4rem;
}

.four h2 {
  font-size: 3.4rem;
  font-weight: 800;
}

.product a {
  font-size: 0.7rem;
  letter-spacing: normal;
  background: #f3f2f3;
  width: 90%;
}

.product a p {
  width: 60%;
  text-wrap: wrap;
  line-height: 115%;
}

.product a .container {
  background: #13072e;
  color: #b3aaff;
}
@media (min-width: 992px) and (max-width: 1439px) {
  #services {
    flex-direction: row;
    align-items: space-around;
    padding: 0 1rem 0 1rem;
  }

  .product {
    height: 55vh;
    width: 20%;
    padding: 0 0.5rem 0 0.5rem;
  }

  .product h2 {
    font-size: 1.3rem;
  }

  .sec {
    transition-delay: 0.4s;
  }
  .thi {
    transition-delay: 0.6s;
  }
  .four {
    transition-delay: 0.8s;
  }

  .product:hover .plan {
    transform: translateX(-100%);
  }

  .product:hover .divisions {
    right: 0;
  }

  .divisions {
    right: -100%;
  }

  .divisions h3 {
    display: none;
  }
}

@media (min-width: 1440px) {
  #services {
    flex-direction: row;
    min-height: 100vh;
  }

  .product {
    width: 20%;
  }

  .product h2 {
    font-size: 2rem;
    text-align: center;
    width: 100%;
  }

  .product a {
    font-size: 1rem;
  }

  .sec {
    transition-delay: 0.4s;
  }
  .thi {
    transition-delay: 0.6s;
  }
  .four {
    transition-delay: 0.8s;
  }

  .product:hover .plan {
    transform: translateX(-100%);
  }

  .product:hover .divisions {
    right: 0;
  }

  .divisions {
    right: -100%;
  }

  .divisions h3 {
    display: none;
  }
}

.plan {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  transition: 0.4s cubic-bezier(1, -0.01, 0.43, 0.98);
}

.divisions {
  background-color: #b3aaff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.4s cubic-bezier(1, -0.01, 0.43, 0.98);
}

/* ABOUT STYLES */

#about {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 25vh;
  align-items: center;
  padding: 15vh;
}

.presentation-card {
  z-index: 0;
  width: 90vw;
  height: fit-content;
  overflow: hidden;
  background-color: #f2f3f2;
  border-radius: 25px;
  position: relative;
  box-shadow: 8px 8px 2px 4px rgba(0, 0, 0, 0.6);
}

.presentation-card-text {
  display: flex;
  flex-direction: column;
}

.presentation-card h3 {
  top: 1rem;
  left: 0;
  right: 0;
  font-family: "Antonio", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  color: #f3f2f3;
}

.desc {
  font-size: 0.95rem;
  width: 95%;
  text-align: justify;
  margin-top: 110px;
}

.presentation-card aside {
  bottom: 3rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.presentation-card aside p {
  width: 80%;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin: 2rem 0 2rem 0;
}

.presentation-card aside p span {
  font-family: Arial, Helvetica, sans-serif;
}

.presentation-card img {
  width: 87%;
  height: 87%;
  border-radius: 50%;
  object-fit: cover;
}

#NarziPerfil,
#LucianaPerfil {
  object-position: 0 -20px;
}

#lizFoto {
  object-position: 0 0;
}

.fondo1 {
  z-index: -10;
  width: 100%;
  height: 100px;
  position: absolute;
  background-color: #9245e3;
  top: 0;
}

.fondo2 {
  z-index: -5;
  width: 110px;
  height: 110px;
  background-color: #b37ced;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translateX(50%);
}

@media (min-width: 1024px) and (max-width: 1599px) {
  .presentation-card {
    z-index: 0;
    overflow: hidden;
    position: relative;
    width: 70vw;
    height: 600px;
    background-color: #f3f2f3;
    border-radius: 25px;
    transition-duration: 0.7s;
    scroll-snap-align: center;
    box-shadow: 20px 20px 2px 4px rgba(0, 0, 0, 0.6);
    display: grid;
  }

  .presentation-card h3 {
    font-family: "Antonio", sans-serif;
    font-size: 60px;
    color: #000;
  }

  .desc {
    font-size: 1rem;
    text-align: justify;
    font-weight: 300;
    width: 90%;
    margin-top: 0px;
  }

  .presentation-card-text {
    position: absolute;
    width: 65%;
    height: 100%;
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13%;
  }

  .presentation-card img {
    z-index: 10;
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: 100%;
    border-radius: 50%;
    rotate: -135deg;
  }

  .presentation-card aside {
    position: absolute;
    width: 35%;
  }

  .presentation-card aside p {
    color: #f3f2f3;
    margin: 0;
  }

  .presentation-card aside p span {
    justify-self: flex-end;
    margin-right: 10px;
    position: absolute;
    right: 0;
  }

  .fondo1 {
    z-index: -10;
    position: relative;
    background-color: #9245e3;
    width: 35%;
    height: 100%;
    top: 0;
  }

  .fondo2 {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: absolute;
    background-color: #b37beb;
    width: 352px;
    height: 350px;
    top: -39px;
    left: -40px;
    transform: translateX(0);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    rotate: 135deg;
    scale: 0.6;
  }

  .fondo3 {
    z-index: -7;
    position: absolute;
    background-color: #b37beb;
    width: 350px;
    height: 350px;
    top: -120px;
    left: -120px;
    rotate: 135deg;
    scale: 0.6;
  }

  .presentation-card.card {
    transform: translateX(400px);
    opacity: 0;
  }

  .presentation-card.show {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (min-width: 1600px) {
  .presentation-card {
    z-index: 0;
    overflow: hidden;
    position: relative;
    width: 70vw;
    height: 680px;
    background-color: #f3f2f3;
    border-radius: 25px;
    transition-duration: 0.7s;
    scroll-snap-align: center;
    box-shadow: 20px 20px 2px 4px rgba(0, 0, 0, 0.6);
    display: grid;
  }

  .presentation-card h3 {
    font-family: "Antonio", sans-serif;
    font-size: 84px;
    color: #000;
  }

  .desc {
    font-size: larger;
    text-align: justify;
    font-weight: 300;
    width: 90%;
    margin-top: 0px;
  }

  .presentation-card-text {
    position: absolute;
    width: 65%;
    height: 100%;
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13%;
  }

  .presentation-card img {
    z-index: 10;
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: 100%;
    border-radius: 50%;
    rotate: -135deg;
  }

  .presentation-card aside {
    position: absolute;
    width: 35%;
  }

  .presentation-card aside p {
    color: #f3f2f3;
    margin: 0;
  }

  .presentation-card aside p span {
    position: absolute;
    right: 0;
    justify-self: flex-end;
    margin-right: 10px;
  }

  .fondo1 {
    z-index: -10;
    position: relative;
    background-color: #9245e3;
    width: 35%;
    height: 100%;
    top: 0;
  }

  .fondo2 {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: absolute;
    background-color: #b37beb;
    width: 352px;
    height: 350px;
    top: 40px;
    left: 40px;
    transform: translateX(0);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    rotate: 135deg;
  }

  .fondo3 {
    z-index: -7;
    position: absolute;
    background-color: #b37beb;
    width: 350px;
    height: 350px;
    top: -80px;
    left: -80px;
    rotate: 135deg;
  }

  .presentation-card.card {
    transform: translateX(400px);
    opacity: 0;
  }

  .presentation-card.show {
    transform: translateX(0);
    opacity: 1;
  }
}

#contact {
  height: 20vh;
  display: flex;
  justify-content: center;
}

/* From Uiverse.io by roajuan93 */
#contact .card {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 10%;
}

/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
  scale: 2.5;
}

@media (min-width: 1280px) {
  .socialContainer {
    scale: 3;
  }
}

/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
}

/* Facebook*/
.containerThree:hover {
  background-color: #1877f2;
  transition-duration: 0.3s;
}
/* Whatsapp*/
.containerFour:hover {
  background-color: green;
  transition-duration: 0.3s;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 19px;
}
.largeIcon {
  width: 27px; /* Ancho específico solo para el icono de TikTok */
}
.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: top-in 0.3s both;
}

/* KEYFRAMES */

@keyframes left-in {
  0% {
    transform: translateX(-80px);
    opacity: 0.001;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes right-in {
  0% {
    transform: translateX(80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bottom-in {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes top-in {
  0% {
    transform: translateY(-80px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
