/* =========================================================
   TYPOGRAPHY
   ========================================================= */

@font-face {
  font-family: "Sculpin Variable";
  src: url("../../fonts/SculpinWebVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

/* =========================================================
   WELEDA - LANDING
   ========================================================= */

:root {
  --weleda-green: #0b4535;
  --white: #ffffff;
  --black: #000000;

  --silver-gradient: linear-gradient(
    270deg,
    #777575 0%,
    #969696 32.21%,
    #d9d9d9 72.6%,
    #969696 100%
  );
}

/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;

  min-width: 320px;

  background: var(--black);
  color: var(--white);

  font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;

  max-width: 100%;
}

a {
  color: inherit;

  text-decoration: none;
}

/* =========================================================
   LANDING
   ========================================================= */

.landing {
  position: sticky;

  top: 0;

  z-index: 1;

  width: 100%;

  height: 100vh;
  height: 100svh;

  min-height: 600px;

  overflow: hidden;

  background-image: url("../../img/landing/bg_img.png");

  background-repeat: no-repeat;
  background-position: center 2%;
  background-size: cover;
}

/*.landing::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(25, 0, 0, 0.28);

    pointer-events: none;

    z-index: 0;
}*/

/* =========================================================
   CABECERA / FRANJA BLANCA
   ========================================================= */

.landing__header {
  position: absolute;

  top: 20px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;

  align-items: center;
  justify-content: center;

  width: min(1440px, calc(100% - 72px));

  height: 80px;

  padding: 0 20px;

  background: var(--white);

  z-index: 5;
}

.landing__logo {
  width: 240px;
  height: auto;

  max-height: 58px;

  object-fit: contain;
}

/* =========================================================
   CONTENIDO PRINCIPAL
   ========================================================= */

.landing__content {
  position: absolute;

  top: clamp(145px, 17vh, 180px);

  left: 50%;

  transform: translateX(-50%);

  width: min(100% - 48px, 1100px);

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  z-index: 2;
}

.landing__copy {
  display: flex;

  flex-direction: column;

  align-items: center;

  width: 100%;
}

/* =========================================================
   ACCESO ANTICIPADO
   ========================================================= */

.landing__eyebrow {
  margin: 0 0 4px;

  color: var(--white);

  text-align: center;

  font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;

  letter-spacing: -0.48px;
}

/* =========================================================
   TÍTULO PRINCIPAL
   ========================================================= */

.landing__title {
  margin: 0;

  max-width: 1000px;

  text-align: center;

  font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;

  letter-spacing: -1.44px;

  text-transform: uppercase;

  color: #bdbdbd;

  background: var(--silver-gradient);

  background-clip: text;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

.landing__description {
  margin: 10px 0 0;

  max-width: 900px;

  color: var(--white);

  text-align: center;

  font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;

  text-transform: uppercase;
}

/* =========================================================
   UNIDADES LIMITADAS
   ========================================================= */

.landing__limited {
  margin: 10px 0 0;

  color: var(--white);

  text-align: center;

  text-shadow: 0 0 20px #000;

  font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

/* =========================================================
   CTA
   ========================================================= */

.landing__action {
  display: flex;

  flex-direction: column;

  align-items: center;

  margin-top: clamp(64px, 9vh, 110px);
}

.landing__button {
  display: inline-flex;

  height: 40px;

  padding: 0 24px;

  justify-content: center;
  align-items: center;

  gap: 8px;

  border: 1px solid var(--weleda-green);

  border-radius: 8px;

  background: var(--weleda-green);

  color: var(--white);

  font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;

  cursor: pointer;

  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.landing__button:hover {
  background: #083a2d;

  border-color: #083a2d;
}

.landing__button:active {
  transform: translateY(1px);
}

.landing__button:focus-visible {
  outline: 2px solid var(--white);

  outline-offset: 3px;
}

/* =========================================================
   TIEMPO
   ========================================================= */

.landing__time {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 5px;

  margin-top: 9px;

  color: var(--weleda-green);

  font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.landing__time-icon {
  flex: 0 0 auto;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  position: relative;

  z-index: 10;

  display: flex;

  width: 100%;

  min-height: 80px;

  padding: 0 56px;

  justify-content: space-between;
  align-items: center;

  border-top: 1px solid var(--white);

  background: var(--black);

  font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;
}

.footer__copyright {
  margin: 0;

  color: #e3e3e3;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.footer__links {
  display: flex;

  align-items: center;

  gap: clamp(36px, 5vw, 72px);
}

.footer__links a {
  color: var(--white);

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;

  white-space: nowrap;

  transition: opacity 160ms ease;
}

.footer__links a:hover {
  opacity: 0.75;
}

/* =========================================================
   PANTALLAS DE POCA ALTURA
   ========================================================= */

@media (max-height: 820px) and (min-width: 769px) {
  .landing__header {
    top: 16px;

    height: 70px;
  }

  .landing__logo {
    width: 215px;

    max-height: 50px;
  }

  .landing__content {
    top: 112px;
  }

  .landing__eyebrow {
    font-size: 20px;
  }

  .landing__title {
    font-size: 40px;
  }

  .landing__description {
    margin-top: 7px;

    font-size: 26px;
  }

  .landing__limited {
    margin-top: 7px;
  }

  .landing__action {
    margin-top: 45px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
  .landing__header {
    width: calc(100% - 48px);
  }

  .landing__content {
    width: min(calc(100% - 56px), 850px);
  }

  .landing__eyebrow {
    font-size: 21px;
  }

  .landing__title {
    font-size: clamp(36px, 4.8vw, 44px);

    letter-spacing: -1px;
  }

  .landing__description {
    font-size: clamp(24px, 3.1vw, 28px);
  }

  .landing__action {
    margin-top: clamp(50px, 8vh, 90px);
  }

  .footer {
    padding: 0 32px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .landing {
    min-height: 100svh;

    background-image: url("../../img/landing/bg_img_mobile.png");

    background-repeat: no-repeat;

    background-position: center top;

    background-size: cover;
  }

  .landing__header {
    top: 16px;

    width: calc(100% - 32px);

    height: 68px;

    padding: 0 16px;
  }

  .landing__logo {
    width: min(220px, 68vw);

    max-height: 52px;
  }

  .landing__content {
    top: 112px;

    width: calc(100% - 40px);

    max-width: 520px;
  }

  /* ACCESO ANTICIPADO */

  .landing__eyebrow {
    margin: 0 0 16px;

    color: var(--white);

    text-align: center;

    font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;

    letter-spacing: -0.48px;
  }

  /* TÍTULO */

  .landing__title {
    width: 100%;

    max-width: 500px;

    margin: 0;

    text-align: center;

    font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;

    letter-spacing: -0.96px;

    text-transform: uppercase;

    color: #bdbdbd;

    background: var(--silver-gradient);

    background-clip: text;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .desktop-break {
    display: none;
  }

  /* DESCRIPCIÓN */

  .landing__description {
    width: 100%;

    max-width: 470px;

    margin: 52px 0 0;

    color: var(--white);

    text-align: center;

    font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;

    text-transform: uppercase;
  }

  /* UNIDADES LIMITADAS */

  .landing__limited {
    margin: 32px 0 0;

    color: var(--white);

    text-align: center;

    text-shadow: 0 0 20px #000;

    font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  /* CTA */

  .landing__action {
    width: 100%;

    margin-top: clamp(110px, 15svh, 170px);
  }

  .landing__button {
    display: flex;

    width: min(400px, 100%);

    height: 40px;

    padding: 0 24px;

    justify-content: center;
    align-items: center;

    gap: 8px;

    border: 1px solid var(--weleda-green);

    border-radius: 8px;

    background: var(--weleda-green);

    color: var(--white);

    font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .landing__time {
    margin-top: 9px;

    color: var(--white);

    text-align: center;

    font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .landing__time-icon {
    width: 18px;
    height: 18px;
  }

  /* FOOTER MOBILE */

  .footer {
    min-height: 140px;

    padding: 22px 24px 20px;

    flex-direction: column;

    justify-content: center;
    align-items: stretch;

    gap: 20px;

    text-align: left;
  }

  .footer__copyright {
    width: 100%;

    margin: 0;

    color: #e3e3e3;

    text-align: left;

    font-family: "Sculpin Variable", Arial, Helvetica, sans-serif;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .footer__links {
    width: 100%;

    justify-content: space-between;

    gap: 24px;
  }

  .footer__links a {
    font-size: 16px;
  }
}

/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */

@media (max-width: 480px) {
  .landing {
    background-image: url("../../img/landing/bg_img_mobile.png");

    background-position: center top;

    background-size: cover;
  }

  .landing__header {
    top: 12px;

    width: calc(100% - 24px);

    height: 64px;
  }

  .landing__logo {
    width: min(220px, 68vw);
  }

  .landing__content {
    top: 102px;

    width: calc(100% - 48px);
  }

  .landing__eyebrow {
    margin-bottom: 16px;

    font-size: 24px;
  }

  .landing__title {
    font-size: 32px;

    line-height: 120%;

    letter-spacing: -0.96px;
  }

  .landing__description {
    max-width: 410px;

    margin-top: 48px;

    font-size: 20px;

    line-height: 120%;
  }

  .landing__limited {
    margin-top: 30px;

    font-size: 16px;

    line-height: 140%;
  }

  .landing__action {
    margin-top: clamp(90px, 12svh, 140px);
  }

  .landing__button {
    width: min(400px, 100%);
  }

  .landing__time {
    font-size: 16px;
  }

  /* FOOTER MÁS COMPACTO */

  .footer {
    min-height: 135px;

    padding: 20px 24px 18px;

    gap: 18px;
  }

  .footer__copyright {
    width: 100%;

    font-size: 16px;

    text-align: left;
  }

  .footer__links {
    width: 100%;

    justify-content: space-between;

    gap: 18px;
  }

  .footer__links a {
    font-size: 16px;
  }
}

/* =========================================================
   MÓVILES DE MUY POCA ALTURA
   ========================================================= */

@media (max-width: 768px) and (max-height: 700px) {
  .landing {
    background-image: url("../../img/landing/bg_img_mobile.png");
  }

  .landing__header {
    top: 10px;

    height: 58px;
  }

  .landing__logo {
    width: 190px;

    max-height: 46px;
  }

  .landing__content {
    top: 82px;
  }

  .landing__eyebrow {
    margin-bottom: 10px;

    font-size: 24px;
  }

  .landing__title {
    font-size: 32px;
  }

  .landing__description {
    margin-top: 22px;

    font-size: 20px;
  }

  .landing__limited {
    margin-top: 14px;

    font-size: 16px;
  }

  .landing__action {
    margin-top: 55px;
  }

  .footer {
    min-height: 128px;

    padding: 18px 24px 16px;

    gap: 16px;
  }
}

/*FIX FOOTER*/
@media (max-width: 768px) {
  .footer {
    min-height: auto;
    padding: 22px 24px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    text-align: left;
  }

  .footer__copyright {
    width: 100%;
    margin: 0;
    text-align: left;
    font-size: 16px;
    line-height: 140%;
  }

  .footer__links {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    width: 100%;
    gap: 14px 20px;
    align-items: start;
  }

  .footer__links a {
    min-width: 0;
    font-size: 16px;
    line-height: 140%;
    white-space: normal;
  }

  .footer__links a:nth-child(1) {
    text-align: left;
  }

  .footer__links a:nth-child(2) {
    text-align: right;
    white-space: nowrap;
  }

  .footer__links a:nth-child(3) {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer {
    min-height: auto;
    padding: 20px 24px 18px;
    gap: 18px;
  }

  .footer__links {
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 14px 14px;
  }

  .footer__links a {
    font-size: 15px;
  }

  .footer__links a:nth-child(2) {
    white-space: nowrap;
  }
}


/*.cookie-lock{
    position:fixed;
    inset:0;
    background:rgba(255,255,255,.02);
    backdrop-filter:blur(2px);
    pointer-events:all;
    z-index:2147482000;
}

.d-none{
    display:none;
}*/