/* style.css - Gooby responsive theme */
@font-face {
  font-family: 'Poppins';
  src: url(fonts/Poppins/Poppins-SemiBold.ttf) format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url(fonts/Poppins/Poppins-Regular.ttf) format('truetype');
  font-weight: 400;
  font-display: swap;
}

:root {
  --grad1: #ff4fe0;
  --grad2: #717AE9;
  --grad3: #00f2d6;
  --grad01: linear-gradient(180deg, var(--grad1), var(--grad2), var(--grad3));
  --bg-dark: #111213;
  --muted: #6b6b6b;
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100vw;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 70px;
  background: #fff;
  /*position:sticky;*/
  max-width: 1450px;
  margin: 0 auto;
  top: 0;
  z-index: 50;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo img {
  border-radius: 8px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

nav a.active {
  background: var(--grad3);
  padding: 8px 26px;
  border-radius: 24px;
  color: #000;
}

.trazado {
  position: relative;
  top: 10px;
}

.trazado img {
  width: fit-content;
  height: fit-content;
}

.hero {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 0px 5% 0px;
  background: linear-gradient(180deg, var(--grad1), var(--grad2), var(--grad3));
  width: 100vw;
  height: 100vh;
  color: #fff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-text {
  flex: 1;
  max-width: 48vw;
  z-index: 2;
  position: absolute;
  top: 10%;
}

.hero-text h1 {
  font-size: 60px;
  margin: 0 0 18px;
  line-height: 1.02;
  font-weight: 600;
  white-space: nowrap;
}

.hero-text p {
  opacity: 0.95;
  font-size: 26px;
  margin-bottom: 12px;
  width: 85%;
}

.hero-img {
  width: 100vw;
  height: 100vh;
  background-image:
    url(assets/nene.png),
    var(--grad01);
  background-size: cover;
  background-blend-mode: multiply;
  position: absolute;
  z-index: 1;
  right: -25vw;
  top: 0;
}

.hero-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  position: absolute;
  top: -130px;
  right: -374px;
  background-size: 100%;
  background-image: url('assets/nene.png');
  background-blend-mode: multiply;
}

.highlight {
  box-shadow: inset 0px -50px 0px 0px #FD02FD;
  display: inline-block;
}

.highlightPlus {
  box-shadow: inset 0px -54px 0px 0px #FD02FD;
  display: inline-block;
}

.cta {
  font-family: var(--font-primary);
  font-size: 60px;
  background: #241F20;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.cta h2 {
  font-size: 60px;
  margin-bottom: 30px
}

.cta h3 {
  font-size: 30px;
  margin-bottom: 30px
}

.contacto {
  padding: 50px 5%;
  text-align: center;
  color: #241F20;
  font-size: 20px;
}

.contacto img {
  width: fit-content;
  display: block;
  margin: 20px auto 0;
}

.contacto a {
  color: #241F20;
  margin-top: 20px;
  font-size: 23px;
  font-weight: bold;
  text-decoration: none;
  width: 100%;
  display: block;
}

footer {
  padding: 28px 5%;
  text-align: center;
  background: #09FCD9;
  margin-top: 36px;
  border-bottom: 27px solid #000;
  border-radius: 30px 30px 0 0;
}

.hero-terminos {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, var(--grad1), var(--grad2), var(--grad3));
  width: 100vw;
  height: 228px;
  color: #fff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  position: relative;
}

.download-link {
  position: absolute;
  bottom: 20px;
  right: 25px;

  font-size: 14px;
  color: white;
  font-weight: 300;
  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 6px;

  opacity: 0.85;
  transition: opacity 0.2s ease-in-out;
}

.download-link img {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.download-link:hover {
  opacity: 1;
}

.hero-terminos .text {
  flex: 1;
  max-width: 1300px;
  z-index: 2;
  position: absolute;
  text-align: left;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-terminos .text h1 {
  font-size: 50px;
  margin: 0 0 18px;
  line-height: 1.02;
  font-weight: 600;
}

.terminos {
  padding: 80px 70px;
  width: 100%;
  line-height: 1.6;
  color: #FCFCFC;
  background-color: #241F20;
}

.terminos * {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}

.terminos h2 {
  margin-top: 60px;
}

.terminos hr {
  margin: 150px auto 60px;
}

.acepto {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  justify-content: center;
}

.acepto * {
  margin-left: 0;
  margin-right: 0;
}

.acepto img {
  width: 31px;
  height: 31px;
}

@media (max-width: 768px) {

  header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px 16px;
    gap: 8px;
  }

  header nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  header nav a {
    margin: 0;
    font-size: 13px;
    padding: 6px 10px;
  }

  header nav a.active {
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
  }

  .hero {
    width: 100%;
    height: auto;
    padding: 24px 16px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-text {
    position: static;
    z-index: 2;
    max-width: 50%;
    text-align: left;
    margin-top: 0;
  }

  .hero-img {
    position: absolute;
    z-index: 1;
    width: 650px;
    height: 650px;
    bottom: 0;
    top: auto;
    right: -230px;
    background-image: url(assets/nene.png);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    filter: brightness(0.45);
  }

  .hero-text h1 {
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 12px;
    white-space: nowrap;
  }

  .hero-text p {
    font-size: 15px;
    width: 100%;
  }

  .cta {
    padding: 32px 16px;
    height: auto;
    text-align: center;
  }

  .cta h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .cta h3 {
    font-size: 15px;
    margin: 0;
  }

  .hero-terminos {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    position: relative;
    padding: 24px 16px 40px;
  }

  .hero-terminos .text {
    position: relative;
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .hero-terminos .text h1 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
  }

  .hero-terminos .text .highlight {
    padding: 0 4px;
  }

  .download-link {
    position: absolute;
    bottom: 12px;
    margin: 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .download-link img {
    width: 14px;
    height: 14px;
  }

  .terminos {
    padding: 32px 16px;
    line-height: 1.6;
  }

  .terminos * {
    max-width: 100%;
  }

  .terminos h1,
  .terminos h2 {
    font-size: 18px;
  }

  .terminos p {
    font-size: 14px;
  }

  .highlightPlus {
    box-shadow: inset 0px -20px 0px 0px #FD02FD;
    display: inline-block;
}
}


@media (max-width: 390px) {

  .hero-img {
    height: 600px;
    right: -250px;
    bottom: -10px;
    top: auto;
  }
}