
:root {
  --background: #ffffff;
  --foreground: #261437;
  --primary: #5a1d7a;
  --primary-deep: #3e1156;
  --primary-glow: #7b2db1;
  --primary-foreground: #ffffff;
  --yellow: #f2d14c;
  --yellow-soft: #fde68a;
  --yellow-foreground: #2f1642;
  --muted: #6f6480;
  --border: #e8deef;
  --surface: #f6f1fa;
  --shadow: 0 18px 45px rgba(90, 29, 122, 0.18);
  --shadow-yellow: 0 18px 45px rgba(242, 209, 76, 0.28);
  --radius: 24px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--primary-foreground);
  background: linear-gradient(135deg, var(--primary-deep), var(--primary), var(--primary-glow));
  box-shadow: var(--shadow);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.logo{
  display:flex;
  align-items:center;
}

.logo img{
  width:170px;
  height:auto;
  display:block;
}

.logo-text { display: grid; line-height: 1.05; }
.logo-text strong { font-size: 14px; }
.logo-text small {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .72;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}
.nav a:hover, .mobile-menu a:hover, .footer-links a:hover, .site-footer a:hover { color: var(--yellow); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: .25s ease;
}
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(62, 17, 86, .95);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px) scale(1.02); }
.btn-primary {
  background: #25D366;
  color: #fff;
  box-shadow: var(--shadow);
  text-transform: uppercase;
}
.btn-yellow {
  background: #25D366;
  color: #ffffff;
  box-shadow: var(--shadow-yellow);
}
.btn-full { width: 100%; }

.section-yellow {
  background: #fff;
  color: var(--yellow-foreground);
}
.section-purple {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary), var(--primary-glow));
  color: var(--primary-foreground);
}
.section-white { background: var(--background); }

.hero-grid,
.about-grid,
.help-grid,
.method-grid,
.ebook-grid,
.partner-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}
.hero, .section-purple, .section-white, .section-yellow { padding: 70px 0; }

.pill, .tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
}
.pill { background: rgba(90, 29, 122, .1); color: var(--primary); }
.tag { background: var(--primary); color: var(--primary-foreground); text-transform: uppercase; letter-spacing: .14em; }
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--yellow);
}
.hero h1, .about-grid h2, .help-grid h2, .ebook-grid h2, .partner-grid h2, .contact-callout h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}
.about-grid h2, .help-grid h2, .ebook-grid h2, .partner-grid h2, .contact-callout h2 { font-size: clamp(32px, 4vw, 30px); }
.hero h1 span,
.about-grid h2 span,
.help-grid h2 span,
.partner-grid h2 span,
.contact-callout h2 span,
.clients-head h2 span,
.method-title .brand { color: var(--primary); }
.section-purple h2 span,
.timeline-title span { color: #ffffff; }
.hero p, .ebook-grid p { max-width: 640px; font-size: 18px; line-height: 1.7; opacity: .84; }
.muted { color: var(--muted); line-height: 1.7; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.proof-avatars { display: flex; }
.proof-avatars{
  display:flex;
  align-items:center;
}

.proof-avatars img{
  width:42px;
  height:42px;

  object-fit:cover;

  border-radius:50%;

  border:2px solid var(--yellow);

  margin-left:-10px;

  box-shadow:0 4px 10px rgba(0,0,0,.12);
}

.proof-avatars img:first-child{
  margin-left:0;
}
.video-card {
  position: relative;
  min-height: 360px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary), var(--primary-glow));
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
}
.video-card::before,
.video-card::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(242, 209, 76, .18);
  filter: blur(24px);
}
.video-card::before { top: -40px; right: -40px; }
.video-card::after { bottom: -40px; left: -40px; }
.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 0;
  background: var(--yellow);
  color: var(--primary);
  font-size: 28px;
  box-shadow: var(--shadow-yellow);
}
.image-frame img, .gallery-grid img, .ebook-visual img { border-radius: 28px; box-shadow: var(--shadow); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.yellow-card, .yellow-panel, .contact-callout {
  border-radius: 28px;
  background: var(--yellow);
  color: var(--yellow-foreground);
  box-shadow: var(--shadow-yellow);
}
.yellow-card { padding: 28px; }
.yellow-card h3 { margin: 0 0 10px; font-size: 24px; font-weight: 900; }
.yellow-card p { margin: 0; line-height: 1.7; opacity: .86; }
.help-grid h2 { font-size: clamp(32px, 3.7vw, 44px); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 14px;
}

.yellow{
  background: var(--yellow);
  font-weight: bold;
    padding: 0 5px;
}
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 18px;
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--primary);
  font-weight: bold;
  margin-top: 2px;
}

.tag-yellow{
    color: var(--primary-deep) !important;
    display: inline-block !important;
    background-color: var(--yellow);
    padding: 0 7px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.gallery-offset { margin-top: 40px; }
.gallery-wide { grid-column: 1 / -1; aspect-ratio: 16 / 7 !important; }
.center-block { text-align: center; }

.method-grid { margin-top: 52px; text-align: left; }

.method-logo{
  width:min(100%, 420px);

  margin:10px auto 8px;

  display:block;
}

.method-visual{
  display:flex;
  align-items:center;
  justify-content:center;
}

.method-visual img{
  width:min(100%, 420px);

  display:block;

  animation:floatMethod 5s ease-in-out infinite;
}

@keyframes floatMethod{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-8px);
  }

  100%{
    transform:translateY(0px);
  }

}

.method-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
  align-content: center;
}
.method-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
}
.method-list li::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
}
.timeline-title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 900;
}
.timeline-title span { display: block; margin-top: 6px; }
.timeline {
  position: relative;
  margin-top: 56px;
  display: grid;
  gap: 26px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(242, 209, 76, .4);
}
.timeline-card {
  position: relative;
  width: calc(50% - 32px);
  padding: 26px;
  border-radius: 28px;
  background: var(--yellow);
  color: var(--yellow-foreground);
  box-shadow: var(--shadow-yellow);
}
.timeline-card.left { margin-right: auto; }
.timeline-card.right { margin-left: auto; }
.timeline-card::after {
  content: '';
  position: absolute;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--yellow);
}
.timeline-card.left::after { right: -39px; }
.timeline-card.right::after { left: -39px; }
.timeline-card h3 { margin: 0; font-size: 22px; font-weight: 900; }
.timeline-card small { font-size: 12px; opacity: .72; }
.timeline-card p { margin: 10px 0 0; line-height: 1.7; }
.ebook-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.ebook-visual::before {
  content: '';
  position: absolute;
  inset: 10% 16%;
  border-radius: 50%;
  background: rgba(90, 29, 122, .14);
  filter: blur(32px);
}
.ebook-visual img {
  position: relative;
  width: min(100%, 380px);
  animation: float 4s ease-in-out infinite;
}
.big-price {
  margin: 28px 0 10px;
  color: var(--primary);
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1;
  font-weight: 900;
}
.big-price small { font-size: 20px; color: var(--foreground); }
.info-box {
  margin-top: 28px;
  padding: 22px;
  border-radius: 20px;
  background: var(--surface);
  line-height: 1.7;
}
.yellow-panel { padding: 28px; }
.yellow-panel h3 { margin: 0 0 12px; font-size: 22px; font-weight: 900; }
.salary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.salary-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(90, 29, 122, .16);
}
.salary-list strong { color: var(--primary); }
.salary-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--primary);
  color: var(--primary-foreground);
}
.clients-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
}
.clients-head h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
}
.target-ring{
  width:80px;
  height:80px;

  object-fit:contain;

  opacity:.95;

  filter:
  drop-shadow(0 0 12px rgba(90,29,122,.18));

  animation:targetFloat 3s ease-in-out infinite;
}

@keyframes targetFloat{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-4px);
  }

  100%{
    transform:translateY(0px);
  }

}


.clients-highlight {
  border-radius: 28px;
  padding: 32px;
  color: var(--primary-foreground);
  background: linear-gradient(135deg, var(--primary-deep), var(--primary), var(--primary-glow));
  box-shadow: var(--shadow);
}
.clients-highlight h3 { margin: 0; font-size: 24px; font-weight: 900; color: var(--yellow); }
.clients-highlight p { margin: 16px 0 0; max-width: 760px; line-height: 1.8; font-size: 18px; opacity: .92; }
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.tab {
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  color: var(--foreground);
  font-size: 14px;
  font-weight: 800;
}
.tab.active { background: var(--primary); color: var(--primary-foreground); }
.newsletter-block {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.newsletter-block h3 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--primary);
}
.newsletter-form {
  display: flex;
  gap: 12px;
}
.newsletter-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  padding: 14px 16px;
  outline: none;
}
.newsletter-form input { border-radius: 999px; }
.newsletter-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--primary); }
.form-message {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.contact-callout { padding: 36px; }
.contact-callout p { margin: 14px 0 0; line-height: 1.7; opacity: .82; font-weight: bold;}
.contact-form {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  border-radius: 18px;
}
.location-block { text-align: center; }
.location-block h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
}
.map-frame {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.site-footer {
  color: var(--primary-foreground);
  background: linear-gradient(135deg, var(--primary-deep), var(--primary), var(--primary-glow));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 56px 0;
}
.site-footer h4 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--yellow);
}
.site-footer p, .site-footer a { display: block; margin: 0 0 10px; color: #ffffff; }
.socials {
  display: flex;
  gap: 12px;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  font-size: 12px;
  opacity: .86;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.socials a{
  width:48px;
  height:48px;

  border-radius:50%;

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

  background:rgba(255,255,255,.08);

  transition:.3s;
}

.socials a:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.14);
}

.socials img{
  width:22px;
  height:22px;
  object-fit:contain;
}


@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .help-grid,
  .method-grid,
  .ebook-grid,
  .partner-grid,
  .contact-grid,
  .footer-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 18px;
    transform: none;
  }
  .timeline-card {
    width: 100%;
    padding-left: 28px;
    margin: 0 !important;
  }
  .timeline-card::after {
    left: 11px !important;
    right: auto !important;
    top: -8px;
  }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {

    .method-logo{
    width:280px;
  }

  .method-visual img{
    width:280px;
  }

  .hero, .section-purple, .section-white, .section-yellow { padding: 68px 0; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle { display: inline-block; color: inherit; }
  .newsletter-form,
  .footer-bottom-bar,
  .clients-head {
    flex-direction: column;
    align-items: stretch;
  }
  .clients-head { gap: 16px; }
  
  .gallery-offset { margin-top: 0; }
  .video-card { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .header-bar { gap: 14px; }
  .hero h1, .about-grid h2, .help-grid h2, .ebook-grid h2, .partner-grid h2, .contact-callout h2 { word-break: normal; }
  .cards-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: auto; aspect-ratio: 1 / 1 !important; }
  .btn { width: 100%; }
  .hero-actions { align-items: stretch; }
  .tabs { display: grid; grid-template-columns: 1fr 1fr; }
}


/* ===== EBOOKS ===== */

.ebooks-header{
  text-align:center;
  max-width:900px;
  margin:0 auto;
}

.ebooks-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(3, minmax(320px, 420px));
  justify-content:center;
  gap:28px;
}

.ebook-card{
  background:#fff;
  padding:28px;
  border-radius:28px;
  box-shadow:var(--shadow);
  text-align:center;
    max-width:340px;
  width:100%;

  margin:0 auto;
}


.ebook-card img{
  max-width:220px;
  margin:0 auto 24px;
}

.ebook-card h3{
  margin-bottom:12px;
  color:var(--primary);
}

/* ===== DIFERENCIAIS ===== */

.ds-differentials{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:50px;
}

.diff-card{
  background:#fff;
  padding:20px;
  border-radius:28px;
  box-shadow:var(--shadow);
}

.diff-card h3{
  margin-top:0;
  margin-bottom:12px;
  color:var(--primary);
}

.diff-card p{
  line-height:1.7;
  color:var(--muted);
}

/* ===== CLIENTES ===== */

.clients-slider-wrapper{
  margin-top:50px;
  display:none;
  align-items:center;
  justify-content:center;
  gap:24px;
}

.clients-slider{
  width:100%;
  max-width:900px;
  position:relative;
}

.clients-highlight{
  display:none;
  text-align:center;
}

.clients-highlight.active{
  display:block;
}

.clients-highlight p{
  margin:20px auto 0;
}

.slider-arrow{
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  font-size:32px;
  font-weight:bold;
  cursor:pointer;
  transition:.3s;
  flex-shrink:0;
}

.slider-arrow:hover{
  transform:scale(1.08);
}

.slider-dots{
  display:none;
  justify-content:center;
  gap:12px;
  margin-top:24px;
}

.slider-dots .dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#d7cce2;
  cursor:pointer;
  transition:.3s;
}

.slider-dots .dot.active{
  background:var(--primary);
  transform:scale(1.15);
}

.slider-arrow{
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  font-size:32px;
  font-weight:bold;
  flex-shrink:0;
}

.slider-dots{
  display:none;
  justify-content:center;
  gap:10px;
  margin-top:24px;
}

.slider-dots .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#d1c4dd;
}

.slider-dots .dot.active{
  background:var(--primary);
}

/* ===== LOGOS ===== */

.clients-logos{
  margin-top:60px;
  margin-bottom:70px;

  display:grid;
  grid-template-columns:repeat(5, 1fr);

  gap:28px;
  align-items:center;
}

.clients-logos img{
  width:100%;
  max-width:130px;

  margin:0 auto;

  opacity:.75;
  filter: grayscale(100%);

  transition:.3s;
}

.clients-logos img:hover{
  opacity:1;
  filter:none;
  transform:scale(1.05);
}
/* ===== MAPA ===== */

.states-served{
  margin-top:80px;
  text-align:center;
}

.states-served h3{
  margin-bottom:40px;
  font-size:32px;
  color:var(--primary);
}

.map-wrapper{
  position:relative;
  max-width:700px;
  margin:0 auto;
}

.map-wrapper img{
  width:100%;
}

.pin{
  position:absolute;
  width:18px;
  height:18px;
  object-fit:contain;
  z-index:2;
}

.pin:hover{
  transform:scale(1.08);
}
.map-wrapper{
  max-width:700px;
  margin:0 auto;
}

.brazil-map{
  width:100%;
  display:block;
}

.footer-logo img{
  width:180px;
  height:auto;
  display:block;
}


/* ===== RESPONSIVO ===== */

@media(max-width:768px){

  .ebooks-grid{
    grid-template-columns:1fr;
  }

  .ds-differentials{
    grid-template-columns:1fr;
  }

  .clients-logos{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

  .clients-slider{
    gap:10px;
  }

  .slider-arrow{
    width:42px;
    height:42px;
    font-size:24px;
  }

}

@media(max-width:768px){

  .target-ring{
    width:58px;
    height:58px;
  }

}

@media(max-width:768px){

  .logo img{
    width:130px;
  }

}

@media(max-width:768px){

  .footer-logo img{
    width:140px;
  }

}

/* ===== WHATSAPP ===== */

.floating-whatsapp{
  position:fixed;

  right:22px;
  bottom:22px;

  width:62px;
  height:62px;

  border-radius:50%;

  background:#25D366;

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

  box-shadow:
  0 10px 25px rgba(37,211,102,.35);

  z-index:999;

  transition:.3s;
}

.floating-whatsapp:hover{
  transform:translateY(-4px) scale(1.05);
}

.floating-whatsapp img{
  width:30px;
  height:30px;
}

/* ===== VOLTAR TOPO ===== */

.scroll-top{
  position:fixed;

  right:24px;
  bottom:98px;

  width:48px;
  height:48px;

  border:none;
  border-radius:50%;

  background:var(--primary);

  color:#fff;

  font-size:24px;
  font-weight:bold;

  cursor:pointer;

  opacity:0;
  visibility:hidden;

  transition:.3s;

  z-index:998;

  box-shadow:var(--shadow);
}

.scroll-top.show{
  opacity:1;
  visibility:visible;
}

.scroll-top:hover{
  transform:translateY(-3px);
}

/* ===== MODAL EBOOK ===== */

.ebook-modal{
  position:fixed;

  inset:0;

  background:rgba(0,0,0,.72);

  backdrop-filter:blur(6px);

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

  opacity:0;
  visibility:hidden;

  transition:.3s;

  z-index:9999;

  padding:20px;
}

.ebook-modal.show{
  opacity:1;
  visibility:visible;
}

.ebook-modal-content{
  width:100%;
  max-width:480px;

  background:#fff;

  border-radius:28px;

  padding:42px;

  position:relative;

  box-shadow:
  0 20px 60px rgba(0,0,0,.25);

  animation:modalUp .35s ease;
}

.close-modal{
  position:absolute;

  top:18px;
  right:18px;

  width:42px;
  height:42px;

  border:none;

  border-radius:50%;

  background:#f4f4f4;

  cursor:pointer;

  font-size:24px;

  transition:.3s;
}

.close-modal:hover{
  transform:rotate(90deg);
}

.ebook-modal-content h3{
  margin:18px 0 10px;

  color:var(--primary);

  font-size:30px;

  line-height:1.1;
}

.ebook-modal-content p{
  margin-bottom:24px;
}

#ebookForm{
  display:flex;
  flex-direction:column;
  gap:16px;
}

#ebookForm input{
  height:58px;

  border-radius:14px;

  border:1px solid #ddd;

  padding:0 18px;

  font-size:16px;

  outline:none;

  transition:.3s;
}

#ebookForm input:focus{
  border-color:var(--yellow);

  box-shadow:
  0 0 0 4px rgba(242,209,76,.18);
}

#ebookForm button{
  width:100%;
  justify-content:center;
}

@keyframes modalUp{

  from{
    transform:translateY(30px);
    opacity:0;
  }

  to{
    transform:translateY(0);
    opacity:1;
  }

}

@media(max-width:768px){

  .ebook-modal-content{
    padding:32px 24px;
  }

  .ebook-modal-content h3{
    font-size:24px;
  }

}

.thank-you-page{
  min-height:100vh;

  display:flex;
  align-items:center;

  padding:80px 20px;

  background:
  radial-gradient(circle at top,
  rgba(255,255,255,.08),
  transparent 40%),
  var(--primary);
}

.thank-you-content{
  width:100%;

  max-width:720px;

  margin:0 auto;

  text-align:center;
}

