/* Core */

:root {
  --primary: #7a4bc2;
  --primary-dark: #5e3699;
  --text-dark: #1a1a1a;
  --bg: #ffffff;
  --soft: #fafafa;
  --amora-purple: #62329f;
  --amora-purple-light: #7a4bc2;
  --amora-purple-dark: #4f2783;
  --hero-max-width: 1440px;
  --hero-side-padding: clamp(20px,4vw,70px);
}

/* Header / Navigation */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-overflow-scrolling: touch;
}

img {
  max-width: 100%;
  display: block;
}

.low-end .feature-card:hover {
  transform: none !important;
}

.container {
  max-width: 1800px;
  margin: auto;
  padding: 0 24px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  z-index: 9999;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 32px;
  position: relative;
}

header.scrolled {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.logo {
  height: 36px;
  max-width: 100%;
  display: block;
}

.logo-link {
  flex-shrink: 0;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1px,0.5vw,3px);
  position: relative;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width .3s ease;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-desktop a {
  position: relative;
  margin: 0 16px;
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  transition: color .25s ease;
  white-space: nowrap;
}

.nav-desktop-link {
  position: relative;
  margin: 0 16px;
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: color .25s ease;
}

.nav-desktop-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width .3s ease;
}

.nav-item-dropdown:hover .nav-desktop-link {
  color: var(--primary);
}

.nav-item-dropdown:hover .nav-desktop-link::after {
  width: 100%;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border-radius: 14px;
  padding: 6px;
  min-width: 180px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease,transform .2s ease,visibility 0s linear .25s;
  z-index: 10001;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  color: #222;
  width: 100%;
  box-sizing: border-box;
}

.nav-dropdown-menu a:hover {
  background: rgba(122,75,194,.08);
}

.nav-item-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(122,75,194,.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}


.nav-desktop,
.nav-auth,
.logo-link {
  min-width: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary-dark);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: radial-gradient( circle at top,rgba(122,75,194,.45),rgba(0,0,0,.9) );
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
}

.mobile-menu nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu nav a {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}

.mobile-download-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
}

.download-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
}

.download-box {
  background: #6630aa;
  border-radius: 18px;
  padding: 18px;
  width: 80%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: popupIn .25s ease;
}

.download-box a {
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  background: #f1e1e1;
  color: #000 !important;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.download-box a:active {
  transform: scale(.98);
}

/* Mobile / Auth */

.soon-tag {
  background: linear-gradient(135deg,#ff2d55,#ff6a00);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 999px;
  letter-spacing: .3px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  margin-left: auto;
}

.mobile-auth {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 85%;
  max-width: 320px;
}


.btn-primary-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient( 135deg,var(--primary),var(--primary-dark) );
  box-shadow: 0 12px 28px rgba(122,75,194,.45);
  transition: all .25s ease;
}

.btn-primary-mobile:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(122,75,194,.6);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.login-mobile {
  background: transparent;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 0 10px rgba(212,175,55,.35),0 0 18px rgba(212,175,55,.25);
  display: none;
  color: #FFD84D;
  text-shadow: 0 0 6px rgba(212,175,55,.6);
  transition: transform .25s ease,box-shadow .25s ease;
}

.login-mobile:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(212,175,55,.55),0 0 28px rgba(212,175,55,.45);
}
/* =========================================================
   GUIA VISUAL PARA O LOGIN
========================================================= */

.headline-login-guide{

  appearance:none;
  -webkit-appearance:none;

  border:0;

  background:transparent;

  padding:0;

  margin:
    clamp(
      28px,
      4vh,
      46px
    )
    auto
    0;

  width:fit-content;

  max-width:100%;

  display:flex;

  align-items:center;

  justify-content:center;

  gap:
    clamp(
      10px,
      1vw,
      16px
    );

  color:#FFFFFF;

  font-family:inherit;

  cursor:pointer;

  text-align:center;

  user-select:none;

  -webkit-tap-highlight-color:transparent;

  transition:
    transform .28s ease,
    opacity .25s ease;
}


/* =========================================================
   TEXTO
========================================================= */

.headline-login-guide-text{

  position:relative;

  font-size:
    clamp(
      13px,
      1vw,
      15px
    );

  line-height:1.2;

  font-weight:800;

  letter-spacing:-.1px;

  color:#FFFFFF;

  white-space:nowrap;

  text-shadow:
    0 2px 8px
    rgba(0,0,0,.30);
}


.headline-login-guide-text::after{

  content:"";

  position:absolute;

  left:0;
  right:0;

  bottom:-5px;

  height:2px;

  border-radius:999px;

  background:
    rgba(255,255,255,.68);

  transform:
    scaleX(.18);

  transform-origin:center;

  transition:
    transform .28s ease;
}


/* =========================================================
   SETAS
   Pequena → média → grande
========================================================= */

.headline-login-arrows{

  display:flex;

  align-items:center;

  justify-content:center;

  gap:1px;

  min-width:82px;

  height:32px;

  flex-shrink:0;
}


.headline-arrow{

  display:block;

  width:auto;

  height:auto;

  margin:0;

  padding:0;

  line-height:1;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-weight:900;

  color:#FFFFFF;

  opacity:.16;

  text-shadow:
    0 2px 8px
    rgba(0,0,0,.22);

  transform:
    translateX(-6px);

  will-change:
    transform,
    opacity;

  animation:
    headlineArrowFlow
    1.8s
    cubic-bezier(.4,0,.2,1)
    infinite;
}


/* =========================================================
   TAMANHOS + DEFASAGEM
   Mesmo ritmo, pequena diferença de tempo
========================================================= */

.headline-arrow.arrow-1{

  font-size:20px;

  animation-delay:
    0s;
}


.headline-arrow.arrow-2{

  font-size:26px;

  animation-delay:
    .15s;
}


.headline-arrow.arrow-3{

  font-size:33px;

  animation-delay:
    .30s;
}


/* =========================================================
   ANIMAÇÃO — FLUXO CONTÍNUO
========================================================= */

@keyframes headlineArrowFlow{

  0%{

    opacity:.12;

    transform:
      translateX(-6px)
      scale(.94);
  }


  20%{

    opacity:.28;
  }


  40%{

    opacity:.92;

    transform:
      translateX(1px)
      scale(1);
  }


  58%{

    opacity:.68;

    transform:
      translateX(4px)
      scale(1.01);
  }


  76%{

    opacity:.24;

    transform:
      translateX(5px)
      scale(.98);
  }


  100%{

    opacity:.12;

    transform:
      translateX(-6px)
      scale(.94);
  }

}


/* =========================================================
   HOVER
========================================================= */

.headline-login-guide:hover{

  transform:
    translateX(5px);
}


.headline-login-guide:hover
.headline-login-guide-text::after{

  transform:
    scaleX(1);
}


.headline-login-guide:hover
.headline-arrow{

  animation-duration:
    1.05s;
}


/* =========================================================
   FOCO POR TECLADO
========================================================= */

.headline-login-guide:focus-visible{

  outline:
    3px solid
    rgba(255,255,255,.72);

  outline-offset:
    6px;

  border-radius:
    8px;
}


/* =========================================================
   RESERVA VERTICAL PARA A HEADLINE
   Evita que frases maiores empurrem o CTA.
========================================================= */

.headline-content h1,
.headline-title{

  min-height:
    clamp(
      96px,
      8vw,
      126px
    );

  display:flex;

  align-items:center;

  justify-content:center;

  margin-top:
    clamp(
      22px,
      4vh,
      54px
    );
}


/* =========================================================
   FOCO ROXO — SOMENTE AO REDOR DO CARD
   O CARD NÃO PISCA
   O CARD NÃO MUDA DE TAMANHO
========================================================= */

.headline-login-card{

  position:relative;

  transition:
    box-shadow
    1.35s
    cubic-bezier(
      .22,
      1,
      .36,
      1
    );
}


.headline-login-card.login-card-highlight{

  box-shadow:

    0 0 0 6px
    rgba(123,67,197,.30),

    0 0 30px
    rgba(155,94,236,.72),

    0 0 58px
    rgba(155,94,236,.38),

    0 24px 65px
    rgba(58,24,106,.40) !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px){

  .headline-login-guide{

    flex-direction:column;

    gap:8px;

    margin:
      24px
      auto
      28px;

    align-items:center;

    justify-content:center;

    text-align:center;
  }


  .headline-login-guide-text{

    font-size:
      13px;
  }


  .headline-login-guide-text::after{

    left:50%;

    right:auto;

    width:100%;

    transform:
      translateX(-50%)
      scaleX(.18);
  }


  .headline-login-guide:hover{

    transform:
      translateY(3px);
  }


  .headline-login-guide:hover
  .headline-login-guide-text::after{

    transform:
      translateX(-50%)
      scaleX(1);
  }


  /* =====================================================
     SETAS VERTICAIS
  ====================================================== */

  .headline-login-arrows{

    width:32px;

    min-width:32px;

    height:78px;

    flex-direction:column;

    gap:0;

    align-items:center;

    justify-content:center;
  }


  .headline-arrow{

    line-height:1;

    transform:
      rotate(90deg)
      translateX(-4px);

    animation:
      headlineArrowDown
      1.65s
      cubic-bezier(
        .45,
        0,
        .25,
        1
      )
      infinite;
  }


  .headline-arrow.arrow-1{

    animation-delay:
      0s;

    animation-duration:
      1.72s;
  }


  .headline-arrow.arrow-2{

    animation-delay:
      .19s;

    animation-duration:
      1.58s;
  }


  .headline-arrow.arrow-3{

    animation-delay:
      .37s;

    animation-duration:
      1.48s;
  }


  /* =====================================================
     RESERVA MOBILE
  ====================================================== */

  .headline-content h1,
  .headline-title{

    min-height:
      120px;

    margin-top:
      80px;
  }


  /* =====================================================
     DESTAQUE ROXO MOBILE
  ====================================================== */

  .headline-login-card{

    transition:
      box-shadow
      1.20s
      cubic-bezier(
        .22,
        1,
        .36,
        1
      );
  }


  .headline-login-card.login-card-highlight{

    box-shadow:

      0 0 0 5px
      rgba(123,67,197,.25),

      0 0 26px
      rgba(155,94,236,.55),

      0 0 48px
      rgba(155,94,236,.30),

      0 20px 50px
      rgba(58,24,106,.30) !important;
  }

}


/* =========================================================
   ANIMAÇÃO MOBILE
========================================================= */

@keyframes headlineArrowDown{

  0%{

    opacity:.15;

    transform:
      rotate(90deg)
      translateX(-7px)
      scale(.92);
  }


  22%{

    opacity:.38;
  }


  42%{

    opacity:1;

    transform:
      rotate(90deg)
      translateX(2px)
      scale(1);
  }


  63%{

    opacity:.72;

    transform:
      rotate(90deg)
      translateX(5px)
      scale(1.02);
  }


  100%{

    opacity:.15;

    transform:
      rotate(90deg)
      translateX(-7px)
      scale(.92);
  }

}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (
  prefers-reduced-motion:reduce
){

  .headline-arrow{

    animation:none;
  }


  .headline-login-guide{

    transition:none;
  }


  .headline-login-guide-text::after{

    transition:none;
  }


  .headline-login-card{

    transition:none;
  }

}
/* Hero / Login */

.headline-hero {
  position: relative;
  width: 100%;
  height: clamp( 700px,100vh,1200px );
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("https://app.amoralovers.com/img/headline.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  isolation: isolate;
}

.headline-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient( 90deg,rgba(48,15,100,0.72) 0%,rgba(62,20,120,0.60) 35%,rgba(62,20,120,0.52) 65%,rgba(62,20,120,0.68) 100% );
}

.headline-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--hero-max-width);
  height: 100%;
  margin: 0 auto;
  padding: clamp(28px,4vh,56px) var(--hero-side-padding);
  display: grid;
  grid-template-columns: minmax(0,1.42fr) minmax(320px,0.88fr);
  align-items: center;
  column-gap: clamp(35px,5vw,80px);
}

.headline-content {
  width: 100%;
  max-width: 720px;
  padding: 10px 0;
  text-align: left;
  animation: heroFadeUp 0.8s ease both;
}

.headline-content h1,
.headline-title {
  width: 100%;
  max-width: 690px;
  margin: 0 0 clamp(16px,2vw,22px);
  font-size: clamp( 32px,3.2vw,44px );
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 3px 16px rgba(0,0,0,.35);
  overflow-wrap: normal;
}

#heroHeadlineText {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease,transform .55s ease;
}

#heroHeadlineText.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.headline-content p,
.headline-description {
  width: 100%;
  max-width: 650px;
  margin: 0 0 clamp(26px,2.8vw,36px);
  font-size: clamp( 16px,1.35vw,18px );
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255,255,255,.94);
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 2px 9px rgba(0,0,0,.30);
}

.headline-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: fit-content;
  min-width: 245px;
  min-height: 56px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 34px;
  background: linear-gradient( 90deg,var(--amora-purple),var(--amora-purple-light) );
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(43,15,80,0.30);
  transition: transform 0.25s ease,box-shadow 0.25s ease,background 0.25s ease;
}

.headline-cta:hover {
  background: linear-gradient( 90deg,var(--amora-purple-dark),var(--amora-purple) );
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(43,15,80,0.38);
}

.headline-cta:active {
  transform: translateY(0);
}

.cta-subtext {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.86;
}

.headline-login {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.headline-login-error {
  display: none;
  margin: 0 0 12px;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.20);
  color: #b91c1c;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.headline-login-form input::placeholder {
  color: #999999;
}

.headline-login-form input:focus {
  border-color: rgba(98,50,159,0.60);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(98,50,159,0.12);
}

.headline-forgot a:hover {
  text-decoration: underline;
}

.headline-login-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(98,50,159,0.32);
}

.headline-login-button:active {
  transform: translateY(0);
}

.headline-login-button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.headline-register-button:hover {
  background: rgba(98,50,159,0.07);
  border-color: rgba(98,50,159,0.65);
  transform: translateY(-1px);
}

.headline-login-divider::before,
.headline-login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.11);
}

.headline-google-button:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(98,50,159,0.20);
}

.headline-google-button span {
  font-weight: 800;
  color: #3f3f3f;
}

.headline-login-card {
  width: 100%;
  max-width: 350px;
  padding: 22px 20px 20px;
  border-radius: 22px;
  background: linear-gradient( 145deg,rgba(255,255,255,0.88),rgba(250,245,248,0.82) );
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25),0 6px 20px rgba(0,0,0,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  animation: loginFadeUp 0.85s ease 0.12s both;
  transition: padding .30s ease,box-shadow .30s ease;
}

#headlineLoginForm
.login-password-section {
  display: none;
}

#headlineLoginForm
.headline-login-button {
  display: none;
}

#headlineLoginForm.email-focused
.login-password-section {
  display: block;
  animation: loginFieldReveal .28s ease both;
}

#headlineLoginForm.email-focused
.headline-login-button{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  animation:
    loginFieldReveal
    .32s
    ease
    both;
}

.headline-login-brand {
  text-align: center;
  margin: 0 0 18px;
  margin-bottom: 11px;
}

.headline-login-brand img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0 auto 6px;
  margin-bottom: 4px;
}

.headline-login-brand-title {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--amora-purple);
}

.headline-login-brand-subtitle {
  margin: 0;
  font-size: 11px;
  line-height: 1.25;
  color: #777777;
}

.headline-login-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.headline-login-form label {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  color: #444444;
}

.headline-login-form input {
  width: 100%;
  height: 40px;
  padding: 8px 11px;
  border: 1px solid rgba(0,0,0,0.13);
  border-radius: 12px;
  background: rgba(238,244,251,0.90);
  color: #292929;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease,box-shadow 0.2s ease,background 0.2s ease;
  min-height: 40px;
}

.headline-login-divider {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 8px 0 6px;
  color: #888888;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}

.headline-google-button {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(98,50,159,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #3f3f3f;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(98,50,159,0.14);
  transition: background 0.2s ease,transform 0.2s ease,box-shadow 0.2s ease;
  min-height: 46px;
}

.headline-google-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
}

.headline-google-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.headline-forgot {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 2px;
}

.headline-forgot a {
  padding: 4px 1px;
  color: var(--amora-purple);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

/* BOTÃO ENTRAR */
.headline-login-button{
  width:100%;
  height:46px;
  margin-top:4px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:0;
  border-radius:999px;
  background:
    linear-gradient(
      90deg,
      var(--amora-purple),
      var(--amora-purple-light)
    );
  color:#fff;
  font-family:inherit;
  font-size:14px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
  box-shadow:
    0 8px 20px rgba(98,50,159,.25);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    opacity .2s ease;
}

.headline-register-button {
  width: 100%;
  height: 40px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(98,50,159,0.45);
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  color: var(--amora-purple);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease,transform 0.2s ease,border-color 0.2s ease;
  text-align: center;
}

/* Content / Components */

.emotional {
  background: linear-gradient(180deg,#faf7ff,#ffffff);
}

.emotional-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.emotional-image img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(122,75,194,.18);
}

.text-cta {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.text-cta:hover {
  text-decoration: underline;
}

.hero {
  padding: 96px 20px 88px;
  background: linear-gradient( 180deg,#ffffff 0%,#faf7ff 100% );
}

.hero .container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.hero p {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

.hero img {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08),0 6px 16px rgba(0,0,0,0.05);
}

section {
  padding: clamp(72px,8vw,120px) 0;
  scroll-margin-top: 96px;
  text-align: center;
}

section.soft {
  background: var(--soft);
}

section h2 {
  font-size: 32px;
  color: var(--primary-dark);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
  margin-bottom: 30px;
}

section p {
  font-size: 22px;
  color: #4a4a4a;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 16px;
  margin-bottom: 50px;
}

section .subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 64px;
  font-size: 17px;
}

.amora-differentials {
  padding: 80px 20px;
  background: linear-gradient(180deg,#ffffff 0%,#faf7fb 100%);
}

.amora-differentials .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.diff-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease,box-shadow 0.25s ease;
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

.diff-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.diff-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #2a2a2a;
}

.diff-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #555;
}

.diff-card.highlight {
  background: linear-gradient( 135deg,#b47bff 0%,#7a4bc2 50%,#4a1f8f 100% );
  box-shadow: 0 8px 30px rgba(122,75,194,.45);
  color: #fff;
}

.diff-card.highlight h3,
.diff-card.highlight p {
  color: #fff;
}

.diff-card.highlight strong {
  font-weight: 700;
}

.imagine {
  background: linear-gradient(180deg,#ffffff,#f6f1ff);
}

.imagine-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.imagine-image img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: block;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(122,75,194,.18);
}

.imagine-imagem img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(122,75,194,.18);
}

.imagine-text {
  max-width: 520px;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.imagine-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 18px;
}

.primary-text-cta {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.primary-text-cta:hover {
  text-decoration: underline;
}

#Apresentacao {
  padding: 120px 0 100px;
  background: #ffffff;
  text-align: center;
}

#Apresentacao .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

#Apresentacao img {
  width: 100%;
  max-width: 820px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 35px 70px rgba(0,0,0,0.14);
  transition: transform 0.6s ease,box-shadow 0.6s ease;
}

#Apresentacao img:hover {
  transform: translateY(-6px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.18);
}

#sobre {
  padding: 100px 0;
  background: #ffffff;
}

#sobre .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.sobre-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.sobre-text h3 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #3a1b5a;
  margin-bottom: 20px;
}

.sobre-text p {
  font-size: 1.05rem;
  color: #4f4f4f;
  line-height: 1.8;
  margin-bottom: 18px;
}

.sobre-highlight {
  margin-top: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #6a2bbf;
  position: relative;
  padding-left: 18px;
}

.sobre-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 70%;
  background: linear-gradient( 180deg,#9b35ff 0%,#b44cff 40%,#ff6fcf 100% );
  border-radius: 4px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.social-proof {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
}

.how-it-works {
  background: linear-gradient(180deg,#faf7fb 0%,#ffffff 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 32px;
  text-align: center;
  margin-top: 50px;
}

.step {
  background: #fff;
  padding: 36px 26px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(255,77,136,0.06),rgba(198,60,255,0.06));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.step:hover::after {
  opacity: 1;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.step span {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient( 135deg,#b47bff 0%,#7a4bc2 50%,#4a1f8f 100% );
  box-shadow: 0 6px 18px rgba(198,60,255,0.35);
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  font-weight: 900;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: #2a2a2a;
}

.step p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #555;
}

.highlight-step {
  background: linear-gradient( 135deg,#b47bff 0%,#7a4bc2 50%,#4a1f8f 100% );
  box-shadow: 0 8px 30px rgba(122,75,194,.45);
  color: #fff;
  transform: scale(1.04);
}

.highlight-step h3,
.highlight-step p {
  color: #fff;
}

.highlight-step span {
  background: #fff;
  color: #5a289e;
}

.cta {
  text-align: center;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--text-light);
}

.btn:hover {
  background: var(--primary-dark);
}

.headline-cta:active,
    .btn:active {
  transform: scale(.96);
}

a:focus-visible,
    button:focus-visible {
  outline: 3px solid rgba(122,75,194,.4);
  outline-offset: 4px;
  border-radius: 999px;
}

/* CONTATO */
.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: radial-gradient(
    circle at top,
    rgba(122,75,194,.35),
    rgba(0,0,0,.75)
  );
  backdrop-filter: blur(4px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.contact-modal {
  width: min(560px, 100%);
  max-width: 560px;
  flex: 0 0 auto;
  margin: auto;
  background: #fff;
  border-radius: 26px;
  position: relative;
  box-shadow:
    0 40px 90px rgba(0,0,0,.45),
    0 0 0 1px rgba(0,0,0,.04);
  overflow: hidden;
  animation: popup .4s cubic-bezier(.16,1,.3,1);
}

.contact-modal-header {
  padding: 28px 28px 22px;
  background: linear-gradient(135deg,#7a4bc2,#5e3699);
  color: #fff;
  text-align: center;
}

.contact-modal-header h2 {
  margin: 0 0 6px;
  font-size: clamp(18px,4vw,22px);
  line-height: 1.2;
  font-weight: 600;
}

.contact-modal-header p {
  margin: 0;
  font-size: clamp(12px,3vw,14px);
  line-height: 1.4;
  opacity: .9;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

.form-group input,
.form-group select {
  height: 46px;
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(122,75,194,.15);
}

.form-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 2px;
  padding: 12px 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg,#7a4bc2,#5e3699);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(122,75,194,.25);
}

.form-feedback {
  margin-top: 4px;
  font-size: 13px;
  text-align: center;
}

.contact-modal-body {
  padding: 18px;
  background: #fafafa;
}
/* FECHAR CONTATO */
.close-btn {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10001;

  width: 42px;
  height: 42px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: rgba(0,0,0,.55);
  color: #fff;

  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;

  text-align: center;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition:
    background .2s ease,
    transform .2s ease;
}

.close-btn:hover {
  background: rgba(0,0,0,.75);
  transform: rotate(90deg);
}

.close-btn:focus {
  outline: none;
}

.close-btn:focus-visible {
  outline: 3px solid rgba(255,255,255,.7);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .close-btn {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 23px;
  }
}

@media (max-width: 360px) {
  .close-btn {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .contact-overlay {
    padding: 6px;
  }

  .contact-modal {
    width: 100%;
    max-width: 100%;
    border-radius: 22px;
  }

  .contact-modal-header {
    padding: 18px 16px;
  }

  .contact-form {
    gap: 12px;
    padding: 14px;
  }

  .form-group input,
  .form-group select {
    height: 44px;
  }

  .form-group textarea {
    min-height: 90px;
  }
}

@media (max-width: 360px) {
  .contact-overlay {
    padding: 4px;
  }

  .contact-modal {
    border-radius: 20px;
  }

  .contact-modal-header {
    padding: 15px 12px;
  }

  .contact-form {
    gap: 10px;
    padding: 12px;
  }

  .form-group input,
  .form-group select {
    height: 42px;
    padding: 10px 12px;
  }

  .form-group textarea {
    min-height: 80px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px) translateZ(0);
  transition: opacity .8s ease,transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-strong {
  transform: translateY(48px) scale(.96);
}

.reveal-strong.visible {
  transform: translateY(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* Utility / SEO / FAQ */

.sticky-cta {
  position: fixed;
  left: 50%;
  display: none;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 9996;
  background: linear-gradient(135deg,#7a4bc2,#5e3699);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  transition: opacity .25s ease,transform .25s ease;
}

.low-fps .reveal,
.low-fps .feature-card,
.low-fps .headline-cta {
  animation: none !important;
  transition: none !important;
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 20px;
  text-align: left;
}

.seo-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 20px 0;
  transition: background 0.3s ease;
  text-align: left;
}

.seo-item:hover {
  background: rgba(255,77,136,0.02);
}

.seo-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  text-align: left;
  transition: color 0.3s ease;
}

.seo-title:hover {
  color: var(--primary);
}

.seo-arrow {
  font-size: 14px;
  transition: transform 0.35s ease;
}

.seo-item.active .seo-arrow {
  transform: rotate(180deg);
}

.seo-text {
  max-height: 0;
  overflow: hidden;
  text-align: left;
  transition: max-height 0.4s ease;
}

.seo-text p {
  padding: 14px 0 8px;
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
  color: #555;
}

.faq-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding: 12px 28px;
  background: linear-gradient(135deg,#7a4bc2,#5e3699);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(122,75,194,.25);
  transition: all .25s ease;
}

.faq-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(122,75,194,.35);
}

.faq-more:active {
  transform: translateY(0) scale(.97);
}

.faq-more:focus-visible {
  outline: 3px solid rgba(122,75,194,.4);
  outline-offset: 4px;
}

.faq-more span {
  transition: transform .25s ease;
}

.faq-more:hover span {
  transform: translateX(4px);
}

/* Footer / Base utilities */

.site-footer {
  border-top: 1px solid #e0e0e0;
  background: #ffffff;
  padding: 48px 24px 24px;
  font-size: 14px;
  color: #1a1a1a;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-company {
  font-size: 12px;
  color: #333;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: #333;
  margin-bottom: 8px;
  transition: color .2s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  font-size: 13px;
  color: #333;
}

.site-footer,
.site-footer * {
  opacity: 1 !important;
}

.footer-company,
.footer-brand p,
.footer-bottom,
.footer-column a {
  color: #222 !important;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  padding: 16px 36px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease,box-shadow .2s ease;
}

.nav-auth .btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(122,75,194,0.35);
}

.nav-auth .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}



.nav-auth .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}

/* Animations */

@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loginFieldReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loginFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popup {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */

@media (min-width: 769px) {

  /* =====================================================
     CAMPOS OCULTOS — ESTADO INICIAL
  ===================================================== */

  #headlineLoginForm
  .headline-login-button,

  #headlineLoginForm
  .headlineLoginPasswordWrap,

  #headlineLoginForm
  .headline-login-password-field {
    display: none;
  }


  /* =====================================================
     CAMPOS VISÍVEIS APÓS FOCO NO E-MAIL
  ===================================================== */

  #headlineLoginForm.email-focused
  .headline-login-button,

  #headlineLoginForm.email-focused
  .headlineLoginPasswordWrap,

  #headlineLoginForm.email-focused
  .headline-login-password-field {
    display: flex;
  }


  #headlineLoginForm
  .login-password-section {
    display: none;
  }


  #headlineLoginForm.email-focused
  .login-password-section {
    display: block;

    animation:
      loginReveal
      .28s
      ease
      both;
  }


  #headlineLoginForm.email-focused
  .headline-login-button {
    display: flex;

    animation:
      loginReveal
      .32s
      ease
      both;
  }


  /* =====================================================
     CARD — CRESCIMENTO PROGRESSIVO
     
     350px = telas menores
     23vw  = crescimento proporcional
     430px = limite máximo
  ===================================================== */

  .headline-login-card {

    width: 100%;

    max-width:
      clamp(
        350px,
        23vw,
        430px
      );

    max-height:
      calc(
        100% - 20px
      );

    overflow: hidden;

    padding:
      clamp(
        18px,
        1.4vw,
        26px
      )
      clamp(
        18px,
        1.5vw,
        28px
      )
      clamp(
        16px,
        1.3vw,
        24px
      );

    border-radius:
      clamp(
        22px,
        1.4vw,
        26px
      );

    transition:
      max-height .35s ease,
      padding .35s ease,
      max-width .35s ease;
  }


  /* =====================================================
     CARD ABERTO
  ===================================================== */

  .headline-login-card:has(
    #headlineLoginForm.email-focused
  ) {

    max-height:
      calc(
        100% - 10px
      );

    padding:
      clamp(
        18px,
        1.4vw,
        26px
      )
      clamp(
        18px,
        1.5vw,
        28px
      )
      clamp(
        18px,
        1.3vw,
        25px
      );
  }


  /* =====================================================
     MARCA
  ===================================================== */

  .headline-login-brand {

    margin-bottom:
      clamp(
        9px,
        1vw,
        15px
      );
  }


  .headline-login-brand img {

    width:
      clamp(
        52px,
        3.2vw,
        70px
      );

    height:
      clamp(
        52px,
        3.2vw,
        70px
      );

    margin-bottom:
      clamp(
        3px,
        .35vw,
        6px
      );
  }


  .headline-login-brand-title {

    font-size:
      clamp(
        14px,
        1.15vw,
        18px
      );

    line-height:
      1.18;

    margin-bottom:
      3px;
  }


  .headline-login-brand-subtitle {

    font-size:
      clamp(
        10px,
        .72vw,
        12px
      );

    line-height:
      1.25;
  }


  /* =====================================================
     FORMULÁRIO
  ===================================================== */

  .headline-login-form {

    gap:
      clamp(
        4px,
        .45vw,
        7px
      );
  }


  .headline-login-form label {

    font-size:
      clamp(
        10px,
        .65vw,
        12px
      );

    margin-top:
      1px;
  }


  .headline-login-form input {

    height:
      clamp(
        38px,
        2.5vw,
        46px
      );

    min-height:
      clamp(
        38px,
        2.5vw,
        46px
      );

    padding:
      clamp(
        7px,
        .65vw,
        10px
      )
      clamp(
        10px,
        .75vw,
        13px
      );

    font-size:
      clamp(
        12px,
        .72vw,
        14px
      );
  }


  /* =====================================================
     DIVISOR
  ===================================================== */

  .headline-login-divider {

    margin:
      clamp(
        6px,
        .65vw,
        10px
      )
      0
      clamp(
        5px,
        .5vw,
        8px
      );

    font-size:
      clamp(
        9px,
        .55vw,
        11px
      );

    gap:
      clamp(
        7px,
        .55vw,
        10px
      );
  }


  /* =====================================================
     GOOGLE
  ===================================================== */

  .headline-google-button {

    height:
      clamp(
        43px,
        2.8vw,
        52px
      );

    min-height:
      clamp(
        43px,
        2.8vw,
        52px
      );

    font-size:
      clamp(
        12px,
        .72vw,
        14px
      );

    gap:
      clamp(
        8px,
        .65vw,
        11px
      );
  }


  .headline-google-icon {

    width:
      clamp(
        29px,
        2vw,
        36px
      );

    height:
      clamp(
        29px,
        2vw,
        36px
      );
  }


  .headline-google-icon svg {

    width:
      clamp(
        17px,
        1.1vw,
        20px
      );

    height:
      clamp(
        17px,
        1.1vw,
        20px
      );
  }


  /* =====================================================
     ESQUECI SENHA
  ===================================================== */

  .headline-forgot {

    margin:
      0 0 2px;
  }


  .headline-forgot a {

    font-size:
      clamp(
        10px,
        .62vw,
        12px
      );

    padding:
      3px 1px;
  }


  /* =====================================================
     BOTÃO ENTRAR
  ===================================================== */

  .headline-login-button {

    height:
      clamp(
        39px,
        2.8vw,
        48px
      );

    margin-top:
      clamp(
        1px,
        .3vw,
        5px
      );

    font-size:
      clamp(
        12px,
        .72vw,
        14px
      );
  }


  /* =====================================================
     CRIAR CONTA
  ===================================================== */

  .headline-register-button {

    height:
      clamp(
        37px,
        2.5vw,
        44px
      );

    margin-top:
      clamp(
        5px,
        .45vw,
        8px
      );

    font-size:
      clamp(
        12px,
        .68vw,
        14px
      );
  }

}

@media (min-width: 769px) and (max-width: 1100px) {

  .headline-hero {
    height: clamp( 600px,70vh,720px );
    min-height: 600px;
    max-height: 720px;
  }

}

@media (max-width: 1000px) and (min-width: 769px) {

  .headline-content h1,
.headline-title {
    max-width: 620px;
    font-size: clamp( 30px,3.5vw,40px );
  }

  .headline-content p,
.headline-description {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.5;
  }

}

@media (max-width: 950px) and (min-width: 769px) {

  .headline-hero {
    min-height: auto;
  }

  .headline-layout {
    grid-template-columns: minmax(0,1.15fr) minmax(290px,0.85fr);
    column-gap: 25px;
    padding: 45px 25px;
  }

  .headline-content {
    padding: 0;
  }

  .headline-content h1,
.headline-title {
    font-size: clamp( 34px,4.6vw,44px );
  }

  .headline-content p,
.headline-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .headline-login-card {
    max-width: 330px;
    padding: 20px 18px;
  }

}

@media (min-width: 769px) and (max-height: 720px) {

  .headline-login-card {
    max-width: 320px;
    padding: 13px 14px 12px;
  }

  .headline-login-brand img {
    width: 48px;
    height: 48px;
  }

  .headline-login-brand {
    margin-bottom: 7px;
  }

  .headline-login-brand-title {
    font-size: 13px;
  }

  .headline-login-brand-subtitle {
    font-size: 9.5px;
  }

  .headline-login-form input {
    height: 36px;
    min-height: 36px;
    font-size: 12px;
  }

  .headline-google-button {
    height: 40px;
    min-height: 40px;
    font-size: 12px;
  }

  .headline-login-button {
    height: 37px;
  }

  .headline-register-button {
    height: 35px;
  }

}

@media (min-width: 1441px) {

  .headline-layout {
    max-width: 1440px;
    column-gap: clamp( 45px,4vw,70px );
  }

  .headline-content h1,
  .headline-title {
    font-size: clamp( 38px,3vw,48px );
    line-height: 1.06;
  }

  .headline-content p,
  .headline-description {
    font-size: clamp( 16px,1.15vw,19px );
  }

}

@media (min-width: 1800px) {

  .headline-layout {
    max-width: 1440px;
  }

}

@media (max-width: 1199px) {

  .headline-layout {
    grid-template-columns: minmax(0,1.30fr) minmax(300px,0.90fr);
    column-gap: 35px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .headline-content h1,
.headline-title {
    font-size: clamp( 36px,4.5vw,50px );
  }

  .headline-content p,
.headline-description {
    font-size: 17px;
  }

  .headline-login-card {
    max-width: 340px;
  }

}

@media (max-width: 900px) {

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .highlight-step {
    transform: none;
  }

  .logo {
    height: 32px;
  }

  .nav-desktop,
  .nav-auth {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }

  #Apresentacao {
    padding: 96px 0 80px;
  }

  #Apresentacao img {
    border-radius: 18px;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

@media (max-width: 768px) {

  #heroHeadlineText {
    width: 100%;
    display: block;
    line-height: 1.10;
  }

  .headline-login-brand-title {
    font-size: 16px;
  }

  .headline-login-brand-subtitle {
    font-size: 11px;
  }

  .headline-login-form {
    gap: 5px;
  }

  .headline-login-form input {
    height: 40px;
    min-height: 40px;
    font-size: 13px;
  }

  .headline-google-button {
    height: 46px;
    min-height: 46px;
  }

  .headline-login-button{
    display:none;
    width:100%;
    height:42px;
    margin-top:2px;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:13px;
  }

  #headlineLoginForm.email-focused
  .headline-login-button{
    display:flex;
  }

  .headline-register-button {
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: center;
  }

  .headline-login-brand {
    margin-bottom: 17px;
  }

  .headline-login-brand img {
    width: 62px;
    height: 62px;
  }

  .headline-layout {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 !important;
  }

  .headline-content {
    width: 100%;
    max-width: none;
    padding: 48px 18px 42px !important;
    text-align: center;
    position: relative;

    height: 430px;
    min-height: 430px;
    max-height: none;

    margin-top: 50px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-image: url("https://app.amoralovers.com/img/headline.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    isolation: isolate;
    overflow: hidden;
}

  .headline-content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient( 180deg,rgba(62,20,120,0.82) 0%,rgba(62,20,120,0.68) 45%,rgba(62,20,120,0.48) 100% );
    pointer-events: none;
  }

  .headline-content {
    width: 100%;
    max-width: none;
    padding: 48px 0 42px !important;
    text-align: center;
    position: relative;

    height: 430px;
    min-height: 500px;
    max-height: none;

    margin-top: 50px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-image: url("https://app.amoralovers.com/img/headline.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    isolation: isolate;
    overflow: hidden;
}


.headline-content h1,
.headline-title {
    width: 100%;
    max-width: 620px;

    height: auto;
    min-height: 200px;
    max-height: none;

    margin: 30px auto 18px !important;
    padding: 0;
    padding-top: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;

    font-size: clamp(31px,8vw,44px);
    line-height: 1.10;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
    font-weight: 800;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 3px 18px rgba(0,0,0,0.38);
}

  .headline-content .headline-cta {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: fit-content;
    min-width: 225px;
    margin: 0 auto !important;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .headline-login {
  width: 100%;
  max-width: 100%;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 30px 16px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  background: #f2e9ec;
}

  .headline-login-card {
  width: 100%;
  max-width: 350px;
  min-width: 0;
  margin: 0 auto;
  padding: 22px 20px 20px;
  box-sizing: border-box;
  overflow-x: hidden;
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.96),
    rgba(250,245,248,.92)
  );
  border: 1px solid rgba(255,255,255,.80);
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

  .logo {
    height: 25px;
  }

  .nav-auth {
    display: none;
  }

  .btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 10001;
  }

  .headline-hero {
    min-height: 80vh;
    display: block;
    background-position: center top;
    width: 100%;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
    background: #f2e9ec;
    overflow: visible;
    padding-top: 150px;
    background-attachment: scroll;
  }

  .headline-hero::before {
    inset: 0;
    transform: none !important;
  }

  .headline-content p,
.headline-description {
    max-width: 590px;
    margin: 0 auto 28px !important;
    font-size: 16px;
    line-height: 1.55;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0;
    text-align: center;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.32);
  }

  .headline-hero::after {
    background: linear-gradient( 180deg,rgba(62,20,120,0.50) 40%,rgba(62,20,120,0.35) 60%,rgba(62,20,120,0.20) 90%,rgba(62,20,120,0.10) 100% );
    display: none;
  }

  .headline-cta {
    width: fit-content;
    min-width: 225px;
    min-height: 54px;
    padding: 16px 36px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  section h2 {
    font-size: 22px;
  }

  section p {
    font-size: 18px;
  }

  .emotional-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .emotional-image img {
    max-width: 320px;
  }

  .emotional-text {
    margin: 0 auto;
  }

  .hero {
    padding: 72px 16px 64px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero img {
    border-radius: 20px;
  }

  .imagine-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .imagine-image img {
    max-width: 300px;
  }

  .imagine-text {
    margin: 0 auto;
  }

  .features-modern {
    gap: 28px;
  }

  .reveal {
    transition-duration: .6s;
  }

  header.scrolled,
  .mobile-menu,
  .contact-overlay,
  .close-btn {
    backdrop-filter: none !important;
  }

  header.scrolled {
    background: rgba(255,255,255,.96) !important;
  }

  .mobile-menu {
    background: rgba(0,0,0,.92) !important;
  }

  .contact-overlay {
    background: rgba(0,0,0,.82) !important;
  }

  .feature-card:hover {
    transform: none;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
    margin-bottom: 32px;
  }

  .site-footer {
    padding-bottom: 100px;
  }

  .footer-logo {
    height: 32px;
    margin: 0 auto 16px;
  }

  .footer-company {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    color: #aaa;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    padding: 0 12px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .seo-title {
    font-size: 16px;
    line-height: 1.4;
  }

  .seo-text p {
    font-size: 14px;
  }

  .sticky-cta {
    display: block;
  }

}

@media (max-width: 480px) {

  .headline-content .headline-cta {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    padding: 14px 24px;
  }

  .headline-content {
    padding: 45px 16px 34px;
  }

  .headline-content h1,
.headline-title {
    max-width: 100%;
    font-size: clamp( 30px,9vw,38px );
    line-height: 1.10;
    margin-bottom: 16px;
  }

  .headline-content p,
.headline-description {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.52;
    margin-bottom: 25px;
  }

  .headline-cta {
    width: 100%;
    max-width: 300px;
    min-width: 0;
  }

  .headline-login {
    padding: 28px 14px 35px;
  }

  .headline-login-card {
  width: 100%;
  max-width: 350px;
  margin: 0 auto !important;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 21px 17px 19px;
}

  .headline-login-brand img {
    width: 60px;
    height: 60px;
  }

  .headline-login-brand-title {
    font-size: 16px;
  }

  .headline-login-brand-subtitle {
    font-size: 11.5px;
  }

  .headline-login-form input {
    height: 45px;
  }

  .headline-login-button {
    height: 46px;
  }

  .headline-register-button {
    height: 44px;
  }

  .headline-google-button {
    height: 45px;
  }

  .logo {
    height: 20px;
  }

  .contact-modal {
    border-radius: 22px;
  }

  .form-embed {
    height: 500px;
  }

  .form-crop iframe {
    height: 690px;
    transform: translateY(-70px);
  }

  .menu-toggle {
    width: 32px;
    height: 24px;
  }

  .menu-toggle span {
    height: 2.5px;
  }

  .mobile-menu nav {
    gap: 22px;
  }

  .mobile-menu nav a {
    font-size: 20px;
  }

  .mobile-auth {
    margin-top: 32px;
    gap: 12px;
    width: 90%;
  }


  .btn-primary-mobile {
    padding: 13px 16px;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(122,75,194,.4);
  }

  .mobile-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .sticky-cta {
    padding: 12px 20px;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,.22);
  }

}

@media (max-width:360px) {

  .headline-content {
    padding: 38px 12px 30px;
  }

  .headline-content h1,
  .headline-title {
    font-size: 29px;
  }

  .headline-content p,
  .headline-description {
    font-size: 15px;
  }

  .headline-login {
    width: 100%;
    padding: 25px 0 30px;
  }

  .headline-login-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 20px 15px 18px;
    border-radius: 18px;
  }

  .headline-login-brand img {
    width: 56px;
    height: 56px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    column-gap: 20px;
    padding: 15px;
  }

  .login-mobile {
    display: inline-flex;
    margin-top: 12px;
  }

  .nav-auth {
    display: none;
    padding: 4px 7px;
    font-size: 8px;
  }

  .btn {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
  }

  .menu-toggle {
    right: 8px;
    transform: translateY(-50%);
  }

  .mobile-menu nav {
    gap: 18px;
  }

  .mobile-menu nav a {
    font-size: 18px;
  }

  .mobile-auth {
    margin-top: 26px;
    gap: 10px;
  }

  .btn-primary-mobile {
    padding: 11px 14px;
    font-size: 13px;
  }

  .mobile-close {
    top: 16px;
    right: 16px;
  }

  .sticky-cta {
    padding: 8px 12px;
    font-size: 10px;
  }
}

@media (hover: none) {

  .feature-card:hover,
  .headline-cta:hover,
  .btn:hover {
    transform: none !important;
    box-shadow: none !important;
  }

}

@media (prefers-reduced-motion: reduce) {

  #heroHeadlineText {
    transition: none;
  }

  .headline-content,
  .headline-login-card {
    animation: none;
  }

  .headline-cta,
  .headline-login-button,
  .headline-register-button,
  .headline-google-button {
    transition: none;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

}