@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", sans-serif;
}

@media (min-width: 1024px) {
  html {
    scroll-snap-type: y proximity;
  }
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

section {
  scroll-snap-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  section {
    min-height: 100vh;
  }
}

#background {
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: -1500;
}

.product {
  height: fit-content;
  width: 95vw;
  border-radius: 35px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .product {
    height: 780px;
    width: 85vw;
    border-radius: 35px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    box-shadow: 22px 22px 2px 0px rgba(0, 0, 0, 0.65);
  }
}

.product-info {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 0.2rem;
}

.product-info h1 {
  font-family: "Antonio", sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
}

.product-info p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 130%;
  width: 95%;
  text-align: justify;
}

.product-info li {
  font-family: "Antonio", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 160%;
  margin-left: 8%;
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .product-info {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 45%;
    border-radius: 0 35px 35px 0;
    align-items: center;
    overflow: hidden;
    padding: 1%;
    gap: 3%;
  }

  .product-info h1 {
    font-family: "Antonio", sans-serif;
    text-transform: uppercase;
    font-size: 2.5rem;
  }

  .product-info p {
    font-size: 1.02rem;
    line-height: 110%;
    width: 100%;
  }

  .product-info li {
    font-size: 1.2rem;
    line-height: 130%;
  }
}

@media (min-width: 1440px) {
  .product-info {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 35%;
    border-radius: 0 35px 35px 0;
    align-items: center;
    overflow: hidden;
    padding: 1%;
    gap: 3%;
  }

  .product-info h1 {
    font-family: "Antonio", sans-serif;
    text-transform: uppercase;
    font-size: 2.9rem;
  }

  .product-info p {
    font-size: 1.02rem;
    line-height: 130%;
    width: 100%;
  }

  .product-info li {
    font-family: "Antonio", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 130%;
  }
}

.button2 {
  scale: 0.9;
  display: inline-block;
  transition: all 0.2s ease-in;
  overflow: hidden;
  z-index: 1;
  color: #f7f1f8;
  padding: 0.7em 3.3em 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: #424179;
  border: 1px solid #424179;
  text-decoration: none;
  bottom: 1rem;
  margin: 2rem 0 2rem 0;
}

@media (min-width: 1440px) {
  .button2 {
    scale: 1;
  }
}

.button2 > svg {
  height: 30px;
  position: absolute;
  padding: 0px 5px;
  margin-top: -4px;
}

.button2:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.button2:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #009087;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:hover {
  color: #ffffff;
  border: 1px solid #009087;
}

.button2:hover:before {
  top: -35%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button2:hover:after {
  top: -45%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

#plan1 .product-info {
  background-color: #c5ebfe;
}

#plan1 .product {
  background-image: url(srcs/CoachingPersonal.avif);
  background-size: cover;
}

@media (min-width: 1380px) {
  #plan1 .product {
    background-size: contain;
  }
}

#plan2 .product-info {
  background-color: #dac9df;
  color: #2d2d52;
}

#plan2 .product {
  background-image: url(srcs/coachingejecutivo.avif);
  background-size: cover;
  background-position: 55% 0;
}

#plan3 .product-info {
  background-color: #c5ebfe;
}

#plan3 .product {
  background-image: url(srcs/coaching-ejecutivo-euskadi-navarra.avif);
  background-size: cover;
  background-position: 85% 0;
}

#plan4 .product-info {
  background-color: #dac9df;
  color: #2d2d52;
}

#plan4 .product {
  background-image: url(srcs/FondoOficina.avif);
  background-size: cover;
}

#plan5 .product-info {
  background-color: #c5ebfe;
}

#plan5 .product {
  background-image: url(srcs/asesoramientolegal.avif);
  background-size: cover;
  background-position: 55% 0;
}

@media (min-width: 1380px) {
  #plan3 .product {
    background-size: contain;
    background-position: 0 0;
  }
  #plan5 .product {
    background-size: contain;
    background-position: 0 0;
  }
}
