:root {
  --bg: #e7e0f5;
  --bg-soft: #f4effc;
  --text: #5c528f;
  --text-soft: #5c528e;
  --purple: #6b3fd1;
  --purple-dark: #5c528f;
  --purple-light: #a483d8;
  --accent: #d97757;
  --white: #ffffff;
  --border: rgba(74, 42, 147, 0.1);
  --shadow: 0 18px 40px rgba(74, 42, 147, 0.11);
}

@font-face {
  font-family: 'AktivGrotesk';
  src: url(../assets/fonts/AktivGrotesk-Black.otf);
}

@font-face {
  font-family: 'AktivGrotesk-bold';
  src: url(../assets/fonts/AktivGrotesk-Bold.otf) format('opentype');
}

@font-face {
  font-family: 'AktivGrotesk-medium';
  src: url(../assets/fonts/AktivGrotesk-Medium.otf);
}
@font-face {
  font-family: 'AktivGrotesk-thin';
  src: url(../assets/fonts/AktivGrotesk-Thin.otf);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'AktivGrotesk-medium', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  max-width: 96rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  border: none;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
}

.btn--a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  border: none;
}

/* POPUP de pago */

.pop-up-body {
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  background-color: hsla(0, 0%, 0%, 0.317);
  height: 100dvh;
  width: 100%;
  z-index: 9999;
}

.hide {
  display: none;
}

.pop-up-content {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: white;
  padding: 2rem 4rem;
  border-radius: 16px;
  margin: 1.2rem;
  box-shadow: 0 8px 22px rgba(73, 42, 147, 0.363);
  width: 42rem;
}

.pay-title {
  text-align: center;
  font-size: 2.8rem;
  line-height: 32px;
  padding: 1.2rem 1.2rem 0 1.2rem;
}

.close-popup {
  border: none;
  left: 92%;
  top: 4%;
  display: block;
  position: absolute;
  margin-left: auto;
  background: none;
  font-size: 2rem;
  color: #5c528f;
  font-weight: 900;
  cursor: pointer;
  z-index: 333;
}

.method-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  padding: 1.2rem;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.pay-opt:link,
.pay-opt:visited {
  display: block;
  text-decoration: none;
  font-family: 'AktivGrotesk-medium';
  font-size: 2rem;
  border-radius: 25px;
  width: 20rem;
  text-align: center;
  transition: all ease-in 0.3s;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  padding: 0.9rem 1.6rem;
  box-shadow: 0 6px 16px rgba(107, 63, 209, 0.32);
}

.pay-opt:hover,
.pay-opt:active {
  box-shadow: 0 6px 16px rgba(107, 63, 209, 0.774);
}

.pay-disclaimer {
  align-self: center;
  display: block;
  font-family: 'AktivGrotesk-thin';
  margin-bottom: 1.2rem;
  text-align: center;
  font-size: 1.8rem;
}

.p-m {
  font-family: 'AktivGrotesk-thin';
  text-align: center;
  font-size: 1.6rem;
}

.btn-unete {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  padding: 9px 16px;
  box-shadow: 0 6px 16px rgba(107, 63, 209, 0.32);
}
