*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Ubuntu", sans-serif;
}

body {
  min-height: 100dvh;
  font-size: 1.6rem;
  background-color: #330066;
}

@media only screen and (min-width: 720px) {
  body {
    font-size: 1.8rem;
  }
}

::selection {
  background-color: rgba(#330066, 0.3);
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
}

a,
button {
  transition: 0.2s all ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

a:hover,
button:hover {
  opacity: 0.8;
}

.ubu-header {
  z-index: 100;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent);
  height: 167px;
}

.ubu-header > div {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 130rem;
  padding: 0 2rem;
  justify-content: space-between;
}

.ubu-header > div > img {
  width: 100%;
  max-width: 17.6rem;
}

.ubu-header > div > div {
  display: flex;
}

.ubu-header > div > div nav {
  display: flex;
  gap: 3.2rem;
  margin-right: 3.5rem;
}

.ubu-header > div > div button,
#mobile-nav {
  display: none;
}

@media only screen and (max-width: 768px) {
  #mobile-nav {
    opacity: 0;
    transition: opacity 0.6s ease;
    position: absolute;
    top: 80%;
    z-index: 100;
    background-color: #6666ff;
    flex-direction: column;
    border-radius: 1rem;
    padding: 3rem 0;
  }

  #mobile-nav a:not(:last-child) {
    margin-bottom: 2rem;
  }

  .ubu-header > div > img {
    width: 100%;
    max-width: 10rem;
  }

  .ubu-header > div > div button {
    display: flex;
  }

  .ubu-header > div > div button img {
    width: 4rem;
  }

  .ubu-header > div > div nav {
    display: none;
  }

  .ubu-header > div > div a {
    display: none;
  }
}

.mobileNavOpen {
  display: flex !important;
  opacity: 1 !important;
}

.currentPage {
  color: #f5f769;
  font-weight: bold;
}
.download-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3.2rem;
  border-radius: 9999px;
  font-size: 2.2rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #37016d 70%, #8b48ce);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-btn img {
  width: 2.7rem;
  margin-right: 1rem;
}

/* ✨ Borde animado */
.download-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 0.8px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  background-size: 200% 100%;
  animation: border-shine 3.5s linear infinite;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

@keyframes border-shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}

#phone {
  width: 300px;
  position: fixed;
  bottom: 0;
  left: 45%;
  pointer-events: none;
  z-index: 10;
}

.phoneContainer {
  width: 300px;
  height: 20px;
}

.contentContainer {
  width: 100%;
}

.contentContainer > div {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

#main {
  padding-top: 167px;
  display: flex;
  min-height: 90vh;
  align-items: center;
  justify-content: space-between;
}

#main > div:first-child {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 20;
}

#main > div:first-child img {
  width: 10rem;
  align-self: flex-end;
  margin-right: 2rem;
}

#main > div:first-child h1 {
  font-size: 7rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

#main > div:first-child h1 > span:last-child {
  color: #a3a3ff;
}

#main > div:first-child p {
  font-size: 2.6rem;
  margin-top: 2rem;
}

@media only screen and (max-width: 768px) {
  #main > div:first-child h1 {
    font-size: 3rem;
  }

  #main > div:first-child p {
    font-size: 1.4rem;
  }

  #main > div:last-child img {
    opacity: 0;
    width: 170px;
  }

  #main {
    min-height: 100%;
  }
}

#latam {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
}

#latam > div:first-child {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 20;
}

#latam > div:first-child img:last-child {
  width: 10rem;
  align-self: flex-end;
  margin-right: 2rem;
}

#latam > div:first-child img:not(:last-child) {
  width: 40rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

#latam > div:first-child h1 {
  font-size: 7rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

#latam > div:first-child h1 > span:last-child {
  color: #a3a3ff;
}

#latam > div:first-child p {
  font-size: 2.6rem;
  margin-top: 2rem;
}

#latam > div:last-child {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

#latam > div:last-child img {
  width: 30rem;
  z-index: 5;
}

@media only screen and (max-width: 768px) {
  #latam > div:first-child h1 {
    font-size: 3rem;
  }

  #latam > div:first-child p {
    font-size: 1.4rem;
  }

  #latam > div:last-child img {
    opacity: 0;
    width: 170px;
  }

  #latam {
    min-height: 100%;
  }

  #latam > div:first-child img:not(:last-child) {
    width: 15rem;
  }
}

.textPurple {
  color: #a3a3ff;
}

#tutorial {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
}

#tutorial > div:first-child {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 20;
}

#tutorial > div:first-child img:last-child {
  width: 10rem;
  align-self: flex-end;
  margin-right: 2rem;
}

#tutorial > div:first-child h1 {
  font-size: 7rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

#tutorial > div:first-child p {
  font-size: 2.6rem;
  margin-top: 2rem;
}

#tutorial > div:last-child {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

#tutorial > div:last-child img {
  width: 30rem;
}

.pGreater {
  font-size: 3.5rem !important;
}

@media only screen and (max-width: 768px) {
  #tutorial > div:first-child h1 {
    font-size: 3rem;
  }

  #tutorial > div:first-child p {
    font-size: 1.4rem;
  }

  #tutorial > div:last-child img {
    opacity: 0;
    width: 170px;
  }

  .pGreater {
    font-size: 2rem !important;
  }

  #tutorial {
    min-height: 100%;
  }
}

#todo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
}

#todo > div:first-child {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 20;
}

#todo > div:first-child img:last-child {
  width: 10rem;
  align-self: flex-end;
  margin-right: 2rem;
}

#todo > div:first-child h1 {
  font-size: 7rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

#todo > div:last-child img {
  width: 50rem;
  position: relative;
  z-index: 20;
}

#todo > div:first-child li {
  font-size: 2.6rem;
}

#todo > div:first-child ul {
  list-style: disc;
  margin-left: 40px;
  margin-top: 2rem;
}

#todo > div:last-child {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

@media only screen and (max-width: 768px) {
  #todo {
    margin-bottom: 4rem;
  }

  #todo > div:last-child img {
    opacity: 0;
    width: 170px;
  }

  #todo > div:first-child h1 {
    font-size: 3rem;
  }

  #todo > div:first-child li {
    font-size: 1.4rem;
  }

  #todo > div:first-child ul {
    margin-left: 10px;
  }
}

#phoneContainer2 {
  position: relative;
}

#phone {
  position: fixed;
  top: 16%;
  left: 56%;
  transform: translateX(-50%);
  pointer-events: none;
  transition: transform 0.2s ease;
}

@media only screen and (max-width: 768px) {
  #phone {
    left: 75%;
  }
}

@media only screen and (max-width: 768px) {
  #phone {
    width: 170px;
  }

  .phoneContainer {
    width: 170px;
    height: 20px;
  }
}

#howto {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
}

#howto > div {
  flex: 1;
}

#howto > div:first-child {
  display: flex;
  flex-direction: column;
}

#howto > div:first-child img {
  width: 1.5rem;
  margin-left: 0.6rem;
}

#howto > div:first-child a {
  justify-self: flex-start;
  color: #a3a3ff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
  margin-top: 1rem;
}

#howto > div:last-child img {
  width: 50rem;
}

#howto > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#howto > div:last-child > div:last-child {
  background-color: #6666ff;
  border-radius: 2rem;
  padding: 2rem;
}

#howto > div:last-child > div:last-child > p:first-child {
  font-weight: bold;
}

#howto > div:last-child > div:last-child > p {
  font-size: 1.4rem;
}

#howto > div:first-child h4 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

#howto > div:first-child {
  margin-right: 4rem;
}

#howto > div:first-child > div:not(:last-child) {
  margin-bottom: 4rem;
}

@media only screen and (max-width: 768px) {
  #howto {
    flex-direction: column;
    align-items: center;
    /* text-align: center; */
  }

  #howto > div:first-child {
    margin: 0;
    margin-bottom: 4rem;
  }

  #howto > div:last-child img {
    width: 100%;
    max-width: 30rem;
  }
}

#quemaco2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
  background: radial-gradient(
    ellipse at center,
    rgba(152, 255, 61, 0.38) 0%,
    rgba(152, 255, 61, 0) 55%
  );
}

#quemaco2 > img:first-child {
  width: 17rem;
}

#quemaco2 > h2 {
  font-size: 8rem;
  font-weight: bold;
}

#quemaco2 > h2 span {
  color: #98ff3d;
}

#quemaco2 > p {
  font-size: 2.4rem;
  max-width: 80rem;
}

#quemaco2 > img:not(:first-child) {
  width: 35rem;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}

#quemaco2 > div:last-child {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

#quemaco2 > div a {
  color: #330066;
  padding: 1.4rem 3.2rem;
  border-radius: 9999px;
  font-size: 2.2rem;
}

#quemaco2 > div a:first-child {
  background-color: #ffffff;
}

#quemaco2 > div a:last-child {
  background-color: #f5f769;
}

#quemaco2 .quematitle {
  font-size: 6.4rem;
  font-weight: bold;
}

#quemaco2 .tasatitle {
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  #quemaco2 {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  #quemaco2 > h2 {
    font-size: 4rem;
  }

  #quemaco2 > img:first-child {
    width: 9rem;
  }

  #quemaco2 > p {
    font-size: 1.7rem;
  }

  #quemaco2 > div a {
    color: #330066;
    padding: 1.4rem 3.2rem;
    font-size: 1.6rem;
  }

  #quemaco2 > img:not(:first-child) {
    width: 20rem;
  }

  #quemaco2 .quematitle {
    font-size: 3.4rem;
    font-weight: bold;
  }

  #quemaco2 .tasatitle {
    font-size: 1rem;
  }
}

#faq {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

#faq > h2 {
  font-size: 8rem;
  font-weight: bold;
}

#faq > div {
  display: flex;
}

#faq > div > div {
  margin: 0 1.5rem;
  flex: 1;
}

#faq > div > div > div {
  background-color: white;
  color: #000;
  border-radius: 2rem;
  padding: 2rem;
  min-height: 15rem;
}

#faq > div > div > div:not(:last-child) {
  margin-bottom: 2rem;
}

#faq > div > div > div > p:first-child {
  font-weight: bold;
}

#faq > div > div > div > p:last-child {
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  #faq > div {
    flex-direction: column;
    align-items: center;
  }

  #faq > div > div {
    margin: 1.5rem 0;
  }

  #faq > h2 {
    font-size: 3.5rem;
    font-weight: bold;
  }

  #faq > div > div > div > p:last-child {
    font-size: 1.5rem;
  }
}

#community {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#community > h2 {
  font-size: 8rem;
  font-weight: bold;
}

#community > div:nth-child(2),
#community > div:last-child > div {
  background-color: #ffffff20;
  border-radius: 2rem;
  padding: 2rem;
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#community > div:last-child {
  width: 100%;
  display: flex;
}

#community > div:last-child > div {
  flex: 1;
}

#community > div:last-child > div:not(:last-child) {
  margin-right: 2rem;
}

#community > div:nth-child(2) {
  width: 100%;
  margin-bottom: 2rem;
}

#community > div:last-child h3 {
  font-size: 5rem;
  font-weight: bold;
}

#community > div:last-child h3 span {
  color: #98ff3d;
}

#community > div:nth-child(2) h2 {
  font-size: 7rem;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  #community > h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  #community > div:last-child h3 {
    font-size: 3rem;
  }

  #community > div:nth-child(2) h2 {
    font-size: 4rem;
  }

  #community > div:last-child {
    flex-wrap: wrap;
    gap: 2rem;
  }

  #community > div:last-child > div:not(:last-child) {
    margin-right: 0;
  }
}

#comminfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 10rem;
  margin-top: 4rem;
  text-align: center;
}

#comminfo img {
  width: 1.4rem;
  margin-left: 0.8rem;
}

#comminfo a {
  margin-top: 1rem;
  color: #a3a3ff;
  text-decoration: underline;
}

#protected {
  display: flex;
  padding-bottom: 10rem;
}

#protected > div {
  flex: 1;
}

#protected > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#protected > div:first-child img {
  opacity: 0.6;
  width: 50rem;
}

#protected > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#protected > div:last-child h3 {
  font-size: 5rem;
  font-weight: 500;
}

#protected > div:last-child p {
  font-size: 2.4rem;
}

#protected > div:last-child ul {
  font-size: 2rem;
  list-style: disc;
  margin-left: 2.3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#protected > div:last-child > div {
  display: flex;
  margin-top: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}

#protected > div:last-child > div img {
  height: 2rem;
  margin-right: 2rem;
}

#protected .small {
  font-size: 1.4rem !important;
}

@media only screen and (max-width: 768px) {
  #protected {
    flex-direction: column;
  }

  #protected > div:first-child img {
    width: 100%;
  }

  #protected > div:last-child > div {
    flex-wrap: wrap;
    gap: 2rem;
  }

  #protected > div:last-child h3 {
    font-size: 4rem;
  }

  #protected > div:last-child p {
    font-size: 1.8rem;
  }

  #protected > div:last-child ul {
    font-size: 1.8rem;
  }

  #protected > div:last-child > div img {
    margin-right: 1rem;
    height: 1.5rem;
  }
}

#downloadnow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6666ff;
  border-radius: 1.8rem;
  padding: 2rem 4rem;
  padding-top: 2rem;
  padding-bottom: 0;
}

#downloadnow > img {
  position: absolute;
  width: 500px;
  left: 1%;
  margin-bottom: 4rem;
}

#downloadnow > div:nth-child(2) img {
  width: 400px;
  opacity: 0;
  margin-right: 100px;
}

#downloadnow > div:nth-child(3) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  max-width: 90rem;
}

#downloadnow > div:nth-child(3) img {
  width: 25rem;
}

#downloadnow > div:nth-child(3) h3 {
  font-size: 5rem;
  font-weight: 500;
}

#downloadnow > div:nth-child(3) p {
  font-size: 2.4rem;
  max-width: 90rem;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 768px) {
  #downloadnow {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 3rem;
  }

  #downloadnow > div:nth-child(2) img {
    width: 100%;
    opacity: 1;
    margin-right: 0;
  }

  #downloadnow > img {
    width: 100%;
    opacity: 0;
    display: none;
  }

  #downloadnow > div:nth-child(3) {
    text-align: center;
    align-items: center;
  }

  #downloadnow > div:nth-child(3) h3 {
    font-size: 3rem;
  }

  #downloadnow > div:nth-child(3) img {
    max-width: 20rem;
  }

  #downloadnow > div:nth-child(3) p {
    font-size: 2rem;
  }
}

#headerfooter {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10rem 0;
  text-align: center;
}

#headerfooter h1 span {
  color: #a3a3ff;
}

#headerfooter h1 {
  font-size: 10rem;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  #headerfooter h1 {
    font-size: 3.5rem;
  }
}

#copy {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  font-weight: 300;
  font-size: 1.5rem;
  text-align: center;
}

footer {
  flex-wrap: wrap;
  padding: 0 2rem;
  gap: 2rem;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  justify-content: space-between;
  max-width: 120rem;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}

footer > div > img {
  width: 100%;
  max-width: 15rem;
  margin-bottom: 2rem;
}

footer > div > p:first-child {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 2rem;
}

footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media only screen and (max-width: 768px) {
  footer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

footer > div a {
  text-decoration: underline;
  color: #f5f769;
}

footer > div:first-child > p {
  max-width: 30rem;
}

footer > div:last-child > div {
  display: flex;
  gap: 1.5rem;
}

footer > div:last-child > div img {
  width: 3.6rem;
}

.menuOpen {
  transform: rotate(90deg);
  scale: 0.8;
  opacity: 0.8;
  transform-origin: center;
}

.imageContainer {
  display: none;
}

@media only screen and (max-width: 768px) {
  .imageContainer {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .imageContainer img {
    width: 100%;
    max-width: 20rem;
  }

  .indexedImage {
    position: relative;
    z-index: 200 !important;
  }
}

@media only screen and (max-width: 768px) and (min-height: 500px) {
  #phone {
    bottom: 40%;
  }
}

@media only screen and (max-height: 500px) {
  #phone {
    width: 150px !important;
  }
}
