@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');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: "Poppins", serif;
  margin: 0;
  padding: 0;
  color: #2f2f2f;
  overflow-x: hidden;
  background-color: #ffffff;
  background-image: url(/img/background-services.jpg);
  background-repeat: repeat;
}
  
main {
  position: relative;
  width: 100%;
  margin: 0;
  text-align: center;
  z-index: 1;
}

.navbar.scrolled {
  background-color: rgba(156, 179, 255, 0.7);
}

/*____________________________________________________*/

.section-1 {
  padding: 3vw;
}

.content-text {
  max-width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.col-content {
  flex: 1;
  padding-right: 1.5vw;
  font-size: 2.7rem;
  text-align: left;
  z-index: 3;
}

.line-1, .line-2, .line-3 {
  background: linear-gradient(80deg, #12a9dc 0%, #44177c 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 1s ease forwards;
  margin: 1px;
}

.img-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.img-fluid {
  width: 30vw;
  height: auto;
}

.social-icons {
  margin: 2vh 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.6vw;
  color: #405ca4;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transform-origin: center;
}

.social-link:nth-child(1) { animation-delay: 0.5s; }
.social-link:nth-child(2) { animation-delay: 0.6s; }
.social-link:nth-child(3) { animation-delay: 0.7s; }
.social-link:nth-child(4) { animation-delay: 0.8s; }

.social-link:hover {
  color: hsl(289, 71%, 58%);
  transform: scale(1.5);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #6a5acd, #ff69b4, #6a5acd);
  background-size: 200% 200%;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 15px 30px;
  margin-top: 15px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: gradientLoop 6s linear infinite, fadeIn 0.8s ease forwards;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10.01%);
  background-size: 15px 15px;
  transition: transform 0.5s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

.cta-button:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.cta-button:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

@keyframes gradientLoop {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*----------------------------------------------------*/

.text-strip {
  width: 100%;
  background: linear-gradient(to right, #3fcaff 0%, #a4ffb0 100%);
  padding: 25px 0;
  text-align: center;
}

.text-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 1.2rem;
  flex-wrap: wrap;
  text-align: center;
}

/*____________________________________________________*/

.section-2 {
  padding: 2% 1%;
  background-color: #f0f0fa;
  text-align: center;
}

.section-2 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1% auto 0;
  white-space: nowrap;
}

.section-2 p {
  font-size: 1.2rem;
  color: #5b5b5b;
  margin: 2px auto 20px;
}

.image-container {
  display: flex;
  gap: 4%;
  justify-content: center;
  padding: 3% 0 1% 0;
  flex-wrap: wrap;
}

.image-box {
  max-width: 300px;
  flex: 1 1 calc(33.333% - 4%);
  text-align: center;
}

.image-box img {
  width: 100%;
}

.image-box h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
}

.image-box p {
  font-size: 1rem;
}

/*____________________________________________________*/

.section-3 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3vh 0 8vh 0;
  overflow: hidden;
}

.section-3 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1% auto 0;
  white-space: nowrap;
}

.section-3 p {
  font-size: 1.2rem;
  color: #5b5b5b;
  margin: 2px auto 20px;
}

.cards-pricing {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-bottom: 4%;
  width: 100%;
  flex-wrap: wrap;
  gap: 2vw;
}

.cards-item {
  flex: 0 1 300px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
  overflow: hidden;
  text-align: center;
  margin-top: 5em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards-item:hover {
  transform: scale(1.05);
}

.cards-item.pricing__item--featured {
  transform: scale(1.08) translateY(15px);
  z-index: 1;
  box-shadow: 0 0 15px rgba(46, 59, 125, 0.35);
}

.cards-item.pricing__item--featured:hover {
  transform: scale(1.12);
}

.card-top {
  padding: 3em 0;
  color: white;
  position: relative;
}

.card-top.basic {
  background: linear-gradient(135deg, #76a9ff, #b39ddb);
}

.card-top.standard {
  background: linear-gradient(135deg, #7e57c2, #ff80ab);
}

.card-top.premium {
  background: linear-gradient(135deg, #651fff, #e040fb);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0;
}

.card-price {
  font-size: 3em;
  font-weight: bold;
  line-height: 1;
}

.card-currency {
  font-size: 0.8em;
  font-weight: 400;
}

.pricing-feature-list {
  list-style: none;
  padding: 1em 0;
  margin: 0;
  text-align: center;
}

.pricing-feature {
  padding: 0.5em 0;
  color: #333;
}

.card-button {
  display: inline-block;
  margin: 1em 0 2em 0;
  padding: 0.75em 2em;
  color: #fff;
  background: linear-gradient(135deg, #fd7d57, #f55d59);
  border-radius: 30px;
  text-decoration: none;
  border: none;
  transition: background-color 0.3s, transform 0.3s;
}

.card-button:hover {
  background: linear-gradient(135deg, #f55d59, #fd7d57);
  transform: scale(1.05);
}

.waves {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 70px;
  overflow: hidden;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
  0% { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

.image-band {
  height: 100%;
  width: 1000px;
  margin-top: 20px;
}

/*____________________________________________________*/

.section-4 {
  background-image: -webkit-linear-gradient(0deg, #a269ff 0%, #ff6bb5 100%);
  overflow: hidden;
  padding-bottom: 5% 2%;
}

.footer {
  background: linear-gradient(90deg, #a269ff 0%, #ff6bb5 100%);
}

.section-wave-svg {
  background-color: transparent;
  display: block;
  height: 5vh;
  width: 100%;
  position: relative;
  top: -1px;
}

.section-wave-path {
  fill: #ffffff;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5%;
  max-width: 80%;
  margin: 0 auto;
  animation: fadeIn 1s ease forwards;
}

.text-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.text-left h2 {
  font-size: 2.4rem;
  color: #fefefe;
  margin-bottom: 20px;
  font-weight: 600;
}

.text-left p {
  font-size: 1.2rem;
  color: #f3f3f3;
  margin-bottom: 30px;
  max-width: 80%;
}

.text-left button {
  background-color: #623386;
  color: #eaeaea;
  border: none;
  padding: 12px 28px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.text-left button:hover {
  background-color: #f960af;
  transform: scale(1.1) rotate(-1deg);
}

.image-right img {
  width: 30vw;
  max-width: 400px;
  height: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  filter: drop-shadow(5px 5px 10px rgba(7, 21, 89, 0.5));
}

.image-right img:hover {
  transform: scale(1.08);
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/*▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬*/

/*█▀█ █▀▀ █▀ █▀█ █▀█ █▄ █ █▀ █ █ █ █▀▀
  █▀▄ ██▄ ▄█ █▀▀ █▄█ █ ▀█ ▄█ █ ▀▄▀ ██▄*/

@media (max-width: 480px) {

.section-1 {
  padding: 12vh 4vw;
  justify-content: center;
}

.content-text {
  flex-direction: column;
  text-align: center;
}

.col-content {
  font-size: 1.8rem;
  text-align: center;
  margin: -1rem 0;
}

.img-container {
  order: -1;
  margin-bottom: 2rem;
}

.img-fluid {
  width: 80vw;
  height: auto;
  max-height: 80vh;
}

.social-icons {
  margin-top: 1rem;
}

.social-link {
  font-size: 1.2rem;
}

.cta-button {
  font-size: 1rem;
}

.text-strip {
  padding: 20px 0;
}

.text-container {
  max-width: 300px;
  font-size: 1rem;
  gap: 10px;
}

/*----------------------------------------------------*/

.section-2 {
  padding: 5svh 4vw;
  justify-content: center;
  text-align: center;
}

.section-2 h2 {
  font-size: 1.7rem;
  margin: 10px 0;
}

.section-2 p {
  font-size: 0.9rem;
}

.image-container {
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.image-box {
  flex: 1 1 100%;
  max-width: 90%;
  margin: 0 auto;
}

.image-box h3 {
  font-size: 1rem;
}

.image-box p {
  font-size: 0.8rem;
}

/*----------------------------------------------------*/

.section-3 {
  padding: 9vh 2vw;
}

.section-3 h2 {
  font-size: 1.8rem;
  text-align: center;
}

.section-3 p {
  font-size: 1rem;
  text-align: center;
}

.card-top {
  padding: 2em 0 3em 0;
}

.cards-pricing {
  flex-direction: column;
  gap: 1em;
}

.cards-item {
  flex: 1 1 auto;
  max-width: 90vw;
  margin: 6vw;
}

.cards-item.pricing__item--featured {
  transform: none;
}

.cards-item.pricing__item--featured:hover {
  transform: none;
transform: scale(1.05);
}

.card-title, .card-price {
  font-size: 1.6rem;
}

.card-button {
  font-size: 1rem;
  padding: 1em 3em;
}

/*----------------------------------------------------*/

.content-wrapper {
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.text-left h2 {
  font-size: 1.8rem;
  margin-top: 40px;
}

.text-left p {
  font-size: 0.9rem;
  max-width: 90%;
}

.text-left button {
  font-size: 0.9rem;
  padding: 10px 18px;
}

.image-right img {
  width: 80vw;
  max-width: 350px;
}
}

/* _________________________________________________________ */  

@media (max-width: 768px) {

  .section-1 {
    padding: 12vh 4vw;
    justify-content: center;
  }
  
  .content-text {
    flex-direction: column;
    text-align: center;
  }
  
  .col-content {
    font-size: 1.8rem;
    text-align: center;
    margin: -1rem 0;
  }
  
  .img-container {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .img-fluid {
    width: 80vw;
    height: auto;
    max-height: 80vh;
  }
  
  .social-icons {
    margin-top: 1rem;
  }
  
  .social-link {
    font-size: 1.2rem;
  }
  
  .cta-button {
    font-size: 1rem;
  }
  
  .text-strip {
    padding: 20px 10px;
  }
  
  .text-container {
    max-width: 400px;
    font-size: 1.2rem;
    gap: 10px;
  }
  
  /*----------------------------------------------------*/
  
  .section-2 {
    padding: 5svh 4vw;
    justify-content: center;
    text-align: center;
  }
  
  .section-2 h2 {
    font-size: 1.7rem;
    margin: 10px 0;
  }
  
  .section-2 p {
    font-size: 0.9rem;
  }
  
  .image-container {
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
  }
  
  .image-box img {
    width: 75%;
  }

  .image-box {
    flex: 1 1 100%;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .image-box h3 {
    font-size: 1rem;
  }
  
  .image-box p {
    font-size: 0.8rem;
  }
  
  /*----------------------------------------------------*/
  
  .section-3 {
    padding: 8vh 2vw;
  }
  
  .section-3 h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .section-3 p {
    font-size: 1rem;
    text-align: center;
    max-width: 500px;
  }
  
  .card-top {
    padding: 2em 0 3em 0;
  }
  
  .cards-pricing {
    flex-direction: column;
    gap: 1em;
  }
  
  .cards-item {
    flex: 1 1 auto;
    max-width: 90vw;
    margin: 6vw;
  }
  
  .cards-item.pricing__item--featured {
    transform: none;
  }
  
  .cards-item.pricing__item--featured:hover {
    transform: none;
  transform: scale(1.05);
  }
  
  .card-title, .card-price {
    font-size: 1.6rem;
  }
  
  .card-button {
    font-size: 1rem;
    padding: 1em 3em;
  }

  .image-band {
    height: 100%;
    width: 95vw;
    margin-top: 25px;
  }
  
  /*----------------------------------------------------*/
  
  .content-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .text-left h2 {
    font-size: 1.8rem;
    margin-top: 40px;
  }
  
  .text-left p {
    font-size: 0.9rem;
    max-width: 90%;
  }
  
  .text-left button {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
  
  .image-right img {
    width: 80vw;
    max-width: 350px;
  }
  }

/*▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬*/

/*█▀▄ ▄▀█ █▀█ █▄▀   ▀█▀ █ █ █▀▀ █▀▄▀█ █▀▀
  █▄▀ █▀█ █▀▄ █ █    █  █▀█ ██▄ █ ▀ █ ██▄*/

  body.dark-theme {
    color: #f0f0f0;
    background-color: #31355a;
  }

/*----------------------------------------------------*/

  body.dark-theme .line-1, .line-2, .line-3 {
    background: linear-gradient(45deg, #98f1ff 0%, #c251ff 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  body.dark-theme .social-link {
    color: #ecf9ff;
  }

  body.dark-theme .text-strip {
    background: linear-gradient(to right, #2199c9 0%, #50bc5e 100%);
  }

  /*----------------------------------------------------*/

  body.dark-theme .section-2 {
  background-color: rgb(59, 66, 107);
}

  body.dark-theme .section-2 p {
  color: #e1e1e1;
}

  /*----------------------------------------------------*/

  body.dark-theme .section-3 p {
  color: #fcfcfc;
}

body.dark-theme .cards-item {
  background: rgb(65, 73, 118);
}

body.dark-theme .pricing-feature {
  color: #ffffff;
}

body.dark-theme .parallax use:nth-child(1) {
  fill: rgba(75, 85, 135, 0.7);
}

body.dark-theme .parallax use:nth-child(2) {
  fill: rgba(70, 80, 130, 0.6);
}

body.dark-theme .parallax use:nth-child(3) {
  fill: rgba(68, 78, 125, 0.5);
}

body.dark-theme .parallax use:nth-child(4) {
  fill: rgb(65, 73, 118);
}

/*----------------------------------------------------*/

body.dark-theme .section-4 {
  background-image: -webkit-linear-gradient(0deg, #7945cb 0%, #cd4589 100%);
}

body.dark-theme .section-wave-path {
  fill: #31355a;
}

body.dark-theme .text-left button {
  background-color: #482563;
}

body.dark-theme .text-left button:hover {
  background-color: #e73d95;
}

body.dark-theme .footer {
  background: linear-gradient(90deg, #7945cb 0%, #cd4589 100%);
}