/* ==========================================================================
   COMPONENTS
   Reusable UI components built on the design system
   ========================================================================== */

/* -------------------------------------------------------------------------
   BASE ELEMENTS
   ------------------------------------------------------------------------- */

main {
    overflow: hidden;
}

/* -------------------------------------------------------------------------
   UTILITIES
   ------------------------------------------------------------------------- */

.mt-8 { margin-top: 50px; }

.mt-10 { margin-top: 50px; }

.mt-12 {
    margin-top: 75px;
}

.text-accent {
  color: var(--color-accent);
}

.text-secondary {
  color: var(--color-secondary);
}

.font-semibold {
  font-weight: var(--font-semibold);
}

.gradient-text {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.gradient-text-accent {
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-600), var(--color-accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whatsapp-icon-inline {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.1em;
  margin-left: 0.25em;
  color: #25D366;
}

.whatsapp-icon-btn {
  width: 1.25em;
  height: 1.25em;
  color: #fff;
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   HEADER
   ------------------------------------------------------------------------- */

.header {
  position: relative;
  z-index: var(--z-fixed);
  background-color: transparent;
}

.header img {
  height: 25px;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 4rem;
}

/* Header navigation */
.header-nav {
  display: none;
  align-items: center;
  gap: 25px;
  padding-right: 10px;

}

.header-nav-link {
  color: var(--color-muted);
  text-decoration: none;
  transition: 0.2s ease-in-out;
  opacity: .5;
  font-size: 14px;
}

.header-nav-link:hover {
  color: var(--color-primary);
  opacity: 1;
}

.header-nav-link--active {
  color: var(--color-primary);
  opacity: 1;
}

.header-cta {
  height: 40px;
  padding-left: 25px;
  padding-right: 25px;
}

/* Mobile menu button */

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: -10px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-muted);
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}

.mobile-menu-btn:hover {
  opacity: 1;
}

.mobile-menu-line {
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-box: view-box;
  transform-origin: center;
}

.mobile-menu-btn--open .mobile-menu-line-1 {
  transform: rotate(45deg) translateY(5.5px);
}

.mobile-menu-btn--open .mobile-menu-line-2 {
  opacity: 0;
}

.mobile-menu-btn--open .mobile-menu-line-3 {
  transform: rotate(-45deg) translateY(-5.5px);
}

/* Mobile navigation overlay */

.mobile-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: calc(4rem + 10px) 25px 25px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.mobile-nav--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-link {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 0;
  opacity: 0.7;
  transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover {
  color: var(--color-primary);
  opacity: 1;
}

.mobile-nav-link--active {
  color: var(--color-primary);
  opacity: 1;
}

/* -------------------------------------------------------------------------
   LOGO
   ------------------------------------------------------------------------- */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-radius: var(--radius-xl);
  text-decoration: none;
}

.logo-image {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.logo-text {
  font-size: 14px;
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--color-ink);
}

/* -------------------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------------------- */

.hero {
    padding-top: 25px;
  position: relative;
  /* overflow-x: hidden; */
  min-height: 100vh;
  display: flex;
  align-items: center;
/*  padding-top: 75px;*/
}

.hero-background {
  background: transparent;
}

.hero-content {
  max-width: 42rem;
}

.hero-content .hero-extractable {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

    .hero-content .hero-cta-wrap {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 25px;
    }

.hero-content .hero-cta-wrap .hero-cta-note {
  color: var(--color-muted);
  opacity: 0.5;
  font-weight: var(--font-medium);
    font-size: 14px;
}

/* -------------------------------------------------------------------------
   TYPOGRAPHY COMPONENTS
   ------------------------------------------------------------------------- */

.headline {
  font-size: 32px;
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--color-primary);
  line-height: 1.2;
}

/* Headline emphasis - brighter blue */
.headline .highlight {
  font-style: normal;
  color: var(--color-secondary);
}

.headline .highlight-strong {
  font-weight: var(--font-bold);
  color: var(--color-secondary);
}

    .headline .highlight-accent {
        font-style: normal;
        color: var(--color-accent);
    }

.subheadline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-ink);
  font-weight: var(--font-medium);
}

.subheadline .highlight-1 {
  font-weight: 600;
}

.subheadline .highlight-2 {
  font-weight: 700;
  color: var(--color-accent);
}

.subheadline .highlight-3 {
  font-weight: 800;
}

ul.subheadline {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

ul.subheadline li {
  display: flex;
  gap: 10px;
  align-items: center;
}

ul.subheadline li svg {
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   SECTION HEADERS
   ------------------------------------------------------------------------- */

.section-header {
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: var(--font-bold);
  color: var(--color-primary);
  letter-spacing: var(--tracking-tight);
  line-height: 1.2;
}

.section-title .text-secondary {
  color: var(--color-secondary);
}

#conheca .conheca-header-with-logo .section-title .text-secondary {
  display: block;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* -------------------------------------------------------------------------
   DECORATIVE ELEMENTS
   ------------------------------------------------------------------------- */

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
}

.noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 1;
}

/* -------------------------------------------------------------------------
   LAYOUT UTILITIES
   ------------------------------------------------------------------------- */

.content-inner {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

section, .section {
  padding: 75px 0 200px;
}

/* -------------------------------------------------------------------------
   HERO LAYOUT (Two columns)
   ------------------------------------------------------------------------- */

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

/* -------------------------------------------------------------------------
   CHAT DEMO COMPONENT
   ------------------------------------------------------------------------- */

.chat-demo {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.chat-demo-customer {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 10px;
  /* background-color: var(--color-primary); */
  background-color: rgba(0,0,0, .01);
  border-radius: 15px;
  padding-top: 50px;
  margin-top: -50px;
  margin-right: 25px;
  margin-left: 25px;
  justify-content: center;
  display: none;
}

.chat-demo-customer-name {
  font-weight: 700;
  font-size: 11px;
  color: var(--color-primary);
}

.chat-demo-customer-company {
  font-size: 11px;
  color: var(--color-primary);
}

.chat-demo-window {
  z-index: 10;
  background: var(--color-surface);
  border-radius: 20px;
  box-shadow:
    0 15px 50px rgba(28, 145, 228, 0.12),
    0 5px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  opacity: .9;
  transition: .2s;
}

.chat-demo-window:hover {
  opacity: 1;
}

.chat-demo-header {
  background: #f8fafc;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.chat-demo-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chat-demo-header-avatar.letter-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.chat-demo-header-info {
  display: flex;
  flex-direction: column;
}

.chat-demo-header-name {
  font-weight: 700;
  font-size: 14px;
  color: #374151;
}

.chat-demo-header-company {
  color: #6b7280;
  font-size: 14px;
}

.chat-demo-header-badge {
  margin-left: auto;
  font-weight: 500;
  background: #10b981;
  color: #fff;
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 11px;
}

.chat-messages {
  position: relative;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8fafc;
  min-height: 550px;
}

.message-bubble {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.message-bubble.hidden {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
}

.chat-demo-transition {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 250, 252, 0.95);
  color: #64748b;
  font-size: 14px;
  font-style: italic;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.chat-demo-transition.visible {
  opacity: 1;
  visibility: visible;
}

@keyframes messageFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-bubble .message-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px 10px;
  font-size: 11px;
}

.message-bubble .sender-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.message-bubble .sender-avatar.letter-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  color: white;
}

.message-bubble .message-content {
  padding: 10px 10px;
  border-radius: 16px;
  line-height: 1.5;
  font-size: 11px;
}

.message-bubble .message-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 0;
  font-size: 11px;
  color: #94a3b8;
  opacity: .5;
}

.message-bubble .message-meta .ticks {
  letter-spacing: -3px;
}

/* eesier message (right) */
.message-bubble.eesier-message {
  align-self: flex-end;
  align-items: flex-end;
}

.message-bubble.eesier-message .sender-avatar {
  border-radius: 0;
}

.message-bubble.eesier-message .sender-name {
  color: #1c91e4;
  font-weight: 600;
}

.message-bubble.eesier-message .message-content {
  background: linear-gradient(135deg, #4fbefe 0%, #1c91e4 100%);
  color: white;
  font-weight: 400;
  box-shadow: 0 4px 15px rgba(28, 145, 228, 0.25);
}

/* Lead message (left) */
.message-bubble.lead-message {
  align-self: flex-start;
  align-items: flex-start;
  font-weight: 500;
}

.message-bubble.lead-message .sender-avatar.letter-avatar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.message-bubble.lead-message .sender-name {
  color: #667eea;
  font-weight: 600;
}

.message-bubble.lead-message .message-content {
  background: white;
  color: grey;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

/* -------------------------------------------------------------------------
   CONHECA SECTION
   ------------------------------------------------------------------------- */

.conheca-section {
  background: transparent;
  position: relative;
  margin-bottom: 75px;
}

#conheca {
  margin-bottom: 0;
}

#conheca {
  background: linear-gradient(180deg, #dbeafe 0%, transparent 50%);
}

#como-funciona {
  margin-top: 75px;
}

.conheca-header-with-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.conheca-header-logo {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.conheca-header-text {
  display: flex;
  flex-direction: column;
}

.conheca-intro {
  opacity: .8;
  position: relative;
  font-size: 14px;
  line-height: 1.7;
  max-width: 100%;
  margin-top: 25px;
  padding: 25px 25px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-2xl);
  box-shadow:
    0 4px 24px rgba(28, 145, 228, 0.25),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transition: .2s ease-in-out;
  color: #fff;
  margin-left: auto;
  top: 60px;
  margin-right: 25px;
  z-index: 10;
}

.conheca-intro:hover {
  opacity: 1;
}

.conheca-intro::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
  background: var(--color-secondary);
}

/* -------------------------------------------------------------------------
   COMO FUNCIONA SECTION
   ------------------------------------------------------------------------- */

.como-funciona {
  background: transparent;
  position: relative;
}

.como-funciona-header {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(28, 145, 228, 0.1);
}

/* Step Layout */
.steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(28, 145, 228, 0.08);
  border-radius: var(--radius-2xl);
  padding: 25px;
  box-shadow:
    0 4px 24px rgba(28, 145, 228, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  overflow-x: hidden;
}

.step:hover {
  border-color: rgba(28, 145, 228, 0.15);
  box-shadow:
    0 8px 40px rgba(28, 145, 228, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

.step:last-child {
  margin-bottom: 0;
}

/* Step Demo (iPhone) - Last on mobile, left on desktop */
.step-demo {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  order: 1;
}

/* Step Content (right side on desktop, below on mobile) */
.step-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
  align-items: center;
}

/* Step Header - Number + Title + Subtitle */
.step-header {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-direction: column;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  flex-shrink: 0;
}

/*@media (min-width: 768px) {
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}*/

/*@media (min-width: 1024px) {
  .step-number {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
}*/

.step-title {
  font-size: 18px;
  font-weight: var(--font-bold);
  color: var(--color-ink);
  line-height: var(--leading-tight);
}

.step-description {
  font-size: 14px;
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

/* Substep Cards - One per row */
.step-substeps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.substep-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background: var(--color-surface);
  border: 1px solid rgba(28, 145, 228, 0.1);
  border-radius: var(--radius-xl);
  padding: 25px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.substep-card__number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--font-bold);
  color: var(--color-primary);
  background: rgba(28, 145, 228, 0.1);
  border-radius: 50%;
  line-height: 1;
}

.substep-card__content {
  display: flex;
  flex-direction: column;
}

.substep-card:hover {
  transform: translateY(-2px);
  border-color: rgba(28, 145, 228, 0.2);
  box-shadow: 0 4px 16px rgba(28, 145, 228, 0.08);
}

.substep-card__title {
  font-size: 14px;
  font-weight: var(--font-semibold);
  color: var(--color-ink);
}

.substep-card__description {
  font-size: 14px;
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

/* -------------------------------------------------------------------------
   LAYOUT CARDS
   ------------------------------------------------------------------------- */

.layout-cards {
  display: grid;
  gap: 25px;
  margin-top: 50px;
}

.layout-cards--3 {
  grid-template-columns: 1fr;
}

.layout-cards__card {
  background: var(--color-surface);
  border: 1px solid rgba(28, 145, 228, 0.1);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.layout-cards__card:hover {
  transform: translateY(-4px);
  border-color: rgba(28, 145, 228, 0.2);
  box-shadow: var(--shadow-lift);
}

.layout-cards__icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--color-primary);
}

.layout-cards__title {
  font-size: 18px;
  font-weight: var(--font-bold);
  color: var(--color-ink);
  margin-bottom: 10px;
}

.layout-cards__description {
  font-size: 14px;
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

/* -------------------------------------------------------------------------
   ILLUSTRATED STEPS
   ------------------------------------------------------------------------- */

.illustrated-steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 75px;
}

.illustrated-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}

.illustrated-step__drawing {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
/*  margin-bottom: 25px;*/
}

.illustrated-step__drawing img {
  width: 100%;
  height: auto;
  transition: 0.2s ease;
  opacity: .8;
}

.illustrated-step:hover .illustrated-step__drawing img {
/*  transform: scale(1.05);*/
  opacity: 1;
}

.illustrated-step__content {
/*  max-width: 320px;*/
  text-align: left;
  padding-left: 25px;
  padding-right: 25px;
}

.illustrated-step__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-ink);
  margin-bottom: 10px;
}

.illustrated-step__description {
  /*  font-size: 14px;*/
  font-size: 18px;
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

.illustrated-steps .btn-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 25px;
}

/* Step Actions */
.step-actions {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

/* -------------------------------------------------------------------------
   CENTERED STEP VARIANT
   ------------------------------------------------------------------------- */

.step--centered {
  justify-content: center;
  text-align: center;
}

.step--centered .step-content {
  align-items: center;
  text-align: center;
  width: 100%;
}

.step--centered .step-header {
  align-items: center;
}

/* -------------------------------------------------------------------------
   STEP WITH CHAT DEMO (text left, chat right)
   ------------------------------------------------------------------------- */

.step--with-chat .step-content {
  text-align: center;
  align-items: center;
}

.step--with-chat .step-chat-demo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.step--with-chat .step-chat-demo .chat-demo-window {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: opacity 0.4s ease;
}

/* -------------------------------------------------------------------------
   RECORDS ANIMATION
   ------------------------------------------------------------------------- */

.records-animation {
  position: relative;
  width: 100%;
  height: 350px;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(28, 145, 228, 0.05);
  display: flex;
  gap: 10px;
}

.records-animation .records-container {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.records-animation .records-container--1 {
  animation: scrollRecords 10s linear infinite;
}

.records-animation .records-container--2 {
  display: none;
  animation: scrollRecords 7s linear infinite;
}

.records-animation .records-container--3 {
  display: none;
  animation: scrollRecords 5s linear infinite;
}

.records-animation .records-container .record-item {
  padding: 10px 25px;
  background: white;
  border-radius: 10px;
  border: 2px solid rgba(28, 145, 228, 0.1);
  color: var(--color-muted);
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.records-animation .records-container .record-item.selected {
  background: var(--color-primary) !important;
  border-color: white !important;
  color: white !important;
  box-shadow: 0 0 0 4px var(--color-primary), 0 4px 20px rgba(28, 145, 228, 0.6);
}

.records-animation .records-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: floatAround 6s ease-in-out infinite;
}

.records-animation .records-button img {
  width: 64px;
  height: 64px;
}

@keyframes floatAround {
  0% {
    transform: translate(-50%, -50%);
  }
  20% {
    transform: translate(-120%, -20%);
  }
  40% {
    transform: translate(20%, -80%);
  }
  60% {
    transform: translate(-100%, -90%);
  }
  80% {
    transform: translate(10%, -30%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

@keyframes scrollRecords {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* -------------------------------------------------------------------------
   IPHONE WHATSAPP MOCKUP COMPONENT
   ------------------------------------------------------------------------- */

.iphone-mockup {
  position: relative;
  width: 200px;
  max-width: 200px;
  aspect-ratio: 1 / 2;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-radius: 36px;
  padding: 6px;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.3),
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Shine effect */
.iphone-mockup::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
  pointer-events: none;
}

/* Subtle hover lift */
.iphone-mockup {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.iphone-mockup:hover {
  transform: translateY(-4px);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.35),
    0 15px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Dynamic Island */
.iphone-mockup::before {
  content: "";
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 26%;
  height: 3.5%;
  background: #000;
  border-radius: 20px;
  z-index: 20;
}

/* iOS Status Bar */
.iphone-status-bar {
  position: absolute;
  top: 3%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12%;
  z-index: 15;
  font-size: 11px;
  font-weight: 600;
  color: #000;
  opacity: 0.45;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
}

.iphone-status-time {
  font-feature-settings: "tnum";
  letter-spacing: -0.01em;
  font-weight: 600;
}

.iphone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.iphone-status-icons svg {
  display: block;
}

.iphone-status-icons .signal-icon {
  width: 15px;
  height: 10px;
}

.iphone-status-icons .battery-icon {
  width: 22px;
  height: 10px;
}

/* Screen */
.iphone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

/* WhatsApp UI */
.whatsapp-ui {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
}

/* WhatsApp Header */
.whatsapp-header {
  background: #F6F6F6;
  padding: 50px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #E5E5E5;
}

.whatsapp-back-arrow {
  color: #007AFF;
  font-size: 18px;
}

.whatsapp-contact-avatar {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #FFFFFF;
  padding: 6px;
}

.whatsapp-contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 15px;
}

.whatsapp-contact-name {
  color: #000000;
  font-size: 11px;
  font-weight: 700;
}

.whatsapp-contact-status {
  color: #8E8E93;
  font-size: 11px;
}

.whatsapp-header-icons {
  display: flex;
  gap: 10px;
  color: #007AFF;
  font-size: 14px;
}

/* WhatsApp Chat Area */
.whatsapp-chat {
  flex: 1;
  padding: 4%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cdefs%3E%3Cpattern id='p' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M20 5 L25 15 L20 12 L15 15 Z' fill='%23D5D2CA' opacity='0.4'/%3E%3Ccircle cx='8' cy='30' r='3' fill='%23D5D2CA' opacity='0.25'/%3E%3Ccircle cx='35' cy='8' r='2' fill='%23D5D2CA' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='200' height='200' fill='url(%23p)'/%3E%3C/svg%3E"),
    #ECE5DD;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.whatsapp-chat::-webkit-scrollbar {
  display: none;
}

/* WhatsApp Messages */
.wa-message {
  max-width: 88%;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.45;
  position: relative;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  font-weight: 500;
}

.wa-message.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-message.sent {
  align-self: flex-end;
  background: #D9FDD3;
  color: #111111;
  border-bottom-right-radius: 2px;
}

.wa-message.received {
  align-self: flex-start;
  background: #FFFFFF;
  color: #111111;
  border-bottom-left-radius: 2px;
}

.wa-message-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
}

.wa-message.sent .wa-message-meta {
  color: rgba(0, 0, 0, 0.45);
}

.wa-message-ticks {
  letter-spacing: -3px;
  color: #34B7F1;
}

/* Typing Indicator */
.wa-typing-indicator {
  align-self: flex-start;
  background: #FFFFFF;
  padding: 10px 10px;
  border-radius: 8px;
  border-bottom-left-radius: 2px;
  display: flex;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.08s ease, transform 0.08s ease;
}

.wa-typing-indicator.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-typing-indicator span {
  width: 6px;
  height: 6px;
  background: #8E8E93;
  border-radius: 50%;
  animation: typingBounce 1.2s infinite ease-in-out;
}

.wa-typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.wa-typing-indicator span:nth-child(2) {
  animation-delay: 0.15s;
}

.wa-typing-indicator span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typingBounce {
  0%, 50%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  25% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/* WhatsApp Input Area */
.whatsapp-input-area {
  padding: 3% 4%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F6F6F6;
  border-top: 1px solid #E5E5E5;
}

.whatsapp-input-icons {
  color: #8E8E93;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 300;
}

.whatsapp-right-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8E8E93;
}

.whatsapp-right-icons svg {
  width: 14px;
  height: 14px;
}

.whatsapp-right-icons.hidden {
  display: none;
}

.whatsapp-send-btn {
  display: none;
  width: 25px;
  height: 25px;
  background: #000;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-send-btn.visible {
  display: flex;
}

.whatsapp-send-btn svg {
  width: 12px;
  height: 12px;
  fill: #fff;
  margin-left: 2px;
}

.whatsapp-input-field {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 18px;
  padding: 4px 10px;
  color: #111111;
  font-size: 11px;
  font-family: inherit;
  min-height: 28px;
  display: flex;
  align-items: center;
}

.whatsapp-input-field::placeholder {
  color: #8E8E93;
}

.whatsapp-input-text {
  color: #111111;
  font-size: 11px;
  overflow: hidden;
}

/* Typing cursor animation */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 12px;
  background: #007AFF;
  margin-left: 1px;
  animation: cursorBlink 1s infinite;
  vertical-align: text-bottom;
  border-radius: 1px;
}

@keyframes cursorBlink {
  0%, 45% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

/* -------------------------------------------------------------------------
   PARA QUEM NAO E — SHOWCASE WRAPPER
   ------------------------------------------------------------------------- */

.para-quem-nao-e-showcase {
  padding: 50px 0;
  position: relative;
  z-index: 10;
}

.pqne-direction {
  margin-bottom: 100px;
  position: relative;
}

.pqne-direction:last-child {
  margin-bottom: 0;
}

.para-quem-nao-e-showcase .pqne-header {
  text-align: center;
  margin-bottom: 50px;
}

.para-quem-nao-e-showcase .pqne-header .pqne-header-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 25px;
}

.para-quem-nao-e-showcase .pqne-header .section-title {
  color: rgba(255, 255, 255, 0.95);
}

.para-quem-nao-e-showcase .pqne-header .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin: 10px auto 0;
}

/* -------------------------------------------------------------------------
   DIRECTION 1 — THE CROSSED-OUT DRAFT (NOTEBOOK)
   ------------------------------------------------------------------------- */

.notebook {
  background: repeating-linear-gradient( transparent, transparent 31px, var(--color-border) 31px, var(--color-border) 32px );
  background-color: var(--color-background);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(28, 145, 228, 0.08);
  border-radius: var(--radius-2xl);
  padding: 25px 50px 75px 75px;
  position: relative;
  transform: rotate(-0.5deg);
  box-shadow: 0 4px 24px rgba(28, 145, 228, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.notebook::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 70px;
  width: 1px;
  background: rgba(28, 145, 228, 0.15);
}

.notebook__header {
  font-family: 'Caveat', cursive;
  font-size: 48px;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  line-height: 61px;
  margin-top: 25px;
}

.notebook__header span {
  color: var(--color-accent);
}

.notebook-lines-flex {
  display: flex;
}

.notebook__lines {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 50px;
  width: 100%;
}

.notebook__phrase {
  position: relative;
  font-family: 'Caveat', cursive;
  color: var(--color-muted);
  line-height: 34px;
}

.notebook__text {
  position: relative;
  display: inline;
  font-size: 32px;
}

.notebook__text::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0) rotate(-1deg);
  transform-origin: left center;
  transition: transform 1.2s ease 0.3s;
}

.notebook__phrase.visible .notebook__text::after {
  transform: scaleX(1) rotate(-1deg);
}

.notebook__phrase:nth-child(2) .notebook__text::after {
  height: 2px;
  transform: scaleX(0) rotate(0.5deg);
}

.notebook__phrase:nth-child(2).visible .notebook__text::after {
  transform: scaleX(1) rotate(0.5deg);
}

.notebook__phrase:nth-child(3) .notebook__text::after {
  transform: scaleX(0) rotate(-0.8deg);
}

.notebook__phrase:nth-child(3).visible .notebook__text::after {
  transform: scaleX(1) rotate(-0.8deg);
}

.notebook__phrase:nth-child(4) .notebook__text::after {
  height: 3px;
  transform: scaleX(0) rotate(1deg);
}

.notebook__phrase:nth-child(4).visible .notebook__text::after {
  transform: scaleX(1) rotate(1deg);
}

.notebook__phrase:nth-child(5) .notebook__text::after {
  transform: scaleX(0) rotate(-0.3deg);
}

.notebook__phrase:nth-child(5).visible .notebook__text::after {
  transform: scaleX(1) rotate(-0.3deg);
}

.notebook__margin-note {
  position: absolute;
  right: -10px;
  bottom: 25px;
  font-family: 'Caveat', cursive;
  color: var(--color-accent);
  transform: rotate(2deg);
  max-width: 200px;
  text-align: right;
}

.split__side--dark {
  background: linear-gradient(180deg, var(--color-ink) 0%, #1e293b 100%);
  color: rgba(255, 255, 255, 0.75);
}

/* -------------------------------------------------------------------------
   PRICING STATEMENT
   ------------------------------------------------------------------------- */

.pricing-statement {
  background: linear-gradient(to bottom, #1e293b 0%, #162033 40%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pricing-statement-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.pricing-statement .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-statement .section-header .section-title {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-statement .section-header .section-subtitle {
  color: rgba(255, 255, 255, 0.4);
  margin: 10px auto 0;
  max-width: 480px;
}

.pricing-statement-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  line-height: 1;
}

.pricing-statement-currency {
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.35);
  align-self: flex-start;
  padding-top: 25px;
}

.pricing-statement-amount {
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, #ffffff 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.pricing-statement-period {
  display: block;
  color: rgba(255, 255, 255, 0.25);
  font-weight: var(--font-normal);
  letter-spacing: 0.2em;
  text-transform: lowercase;
  margin-top: 25px;
}

.pricing-statement-terms {
  color: rgba(255, 255, 255, 0.2);
  font-weight: var(--font-normal);
  letter-spacing: 0.05em;
  margin-top: 50px;
}

.pricing-statement-inner .pricing-statement-context {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* RESPONSIVE SIZING */

.pricing-statement-currency {
  font-size: 32px;
}

.pricing-statement-amount {
  font-size: 8rem;
}

.pricing-statement-period {
  font-size: 14px;
}

/* =========================================================================
   INTEGRATIONS
   ========================================================================= */

.integrations-section {
  background: #dbeafe;
  text-align: center;
  position: relative;
  z-index: 1;
}

.integrations-section .integrations-inner {
  max-width: 960px;
}

.integrations-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.integrations-section .section-header .section-title {
  color: var(--color-ink);
}

.integrations-section .section-header .section-subtitle {
  color: var(--color-muted);
  margin: 10px auto 0;
  max-width: 480px;
}

.integrations-section .integrations-grid-wrap {
  position: relative;
}

.integrations-section .integrations-grid-wrap::before,
.integrations-section .integrations-grid-wrap::after {
  display: none;
}

.integrations-section .integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 50px;
}

.integrations-section .integrations-grid .integrations-card {
  flex: 0 0 calc(33.333% - 17px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 25px;
  padding: 50px 25px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.integrations-section .integrations-grid .integrations-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 50px rgba(28, 145, 228, 0.1);
}

.integrations-section .integrations-grid .integrations-card .integrations-card-logo {
  margin-bottom: 25px;
}

.integrations-section .integrations-grid .integrations-card .integrations-card-logo svg {
  height: 40px;
  width: auto;
  color: var(--color-primary);
}

.integrations-section .integrations-grid .integrations-card .integrations-card-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.integrations-section .integrations-grid .integrations-card .integrations-card-name {
  color: var(--color-ink);
  font-weight: var(--font-semibold);
  margin-bottom: 10px;
}

.integrations-section .integrations-grid .integrations-card .integrations-card-desc {
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

.integrations-section .integrations-tagline {
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  max-width: 480px;
  margin: 0 auto;
}

/* =========================================================================
   PLAYBOOK
   ========================================================================= */

.playbook-section {
  background: var(--color-background);
  text-align: center;
  position: relative;
  z-index: 1;
}

.playbook-section .playbook-inner {
  max-width: 960px;
}

.playbook-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.playbook-section .section-header .section-title {
  color: var(--color-ink);
}

.playbook-section .section-header .section-subtitle {
  color: var(--color-muted);
  margin: 10px auto 0;
  max-width: 480px;
}

.playbook-section .playbook-description {
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  max-width: 600px;
  margin: 0 auto 50px;
}

.playbook-section .playbook-stats {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 50px;
}

.playbook-section .playbook-stats .playbook-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.playbook-section .playbook-stats .playbook-stat .playbook-stat-value {
  font-size: 48px;
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
}

.playbook-section .playbook-stats .playbook-stat .playbook-stat-label {
  color: var(--color-muted);
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.playbook-section .playbook-cta-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================================================================
   LGPD COVER
   ========================================================================= */

.lgpd-cover-section {
  background: var(--color-surface);
  text-align: center;
  position: relative;
  z-index: 1;
}

.lgpd-cover-section .lgpd-cover-inner {
  max-width: 960px;
}

.lgpd-cover-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.lgpd-cover-section .section-header .section-title {
  color: var(--color-ink);
}

.lgpd-cover-section .lgpd-cover-description {
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  max-width: 600px;
  margin: 0 auto 50px;
}

.lgpd-cover-section .lgpd-cover-stats {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 50px;
}

.lgpd-cover-section .lgpd-cover-stats .lgpd-cover-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.lgpd-cover-section .lgpd-cover-stats .lgpd-cover-stat .lgpd-cover-stat-value {
  font-size: 48px;
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.lgpd-cover-section .lgpd-cover-stats .lgpd-cover-stat .lgpd-cover-stat-label {
  color: var(--color-muted);
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.lgpd-cover-section .lgpd-cover-cta-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================================================================
   SKILLS COVER — floating logos + centered text
   ========================================================================= */

.skills-cover-section {
  background: #dbeafe;
  text-align: center;
  position: relative;
  z-index: 1;
}

.skills-cover-section .skills-cover-inner {
  max-width: 960px;
  position: relative;
  z-index: 2;
}

.skills-cover-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.skills-cover-section .section-header .skills-cover-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 25px;
}

.skills-cover-section .section-header .section-title {
  color: var(--color-ink);
}

.skills-cover-section .skills-cover-description {
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  max-width: 600px;
  margin: 0 auto 50px;
}

.skills-cover-section .skills-cover-cta-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}


/* FLOATING LOGOS — eesier brand marks across depth layers */

.skills-cover-section .skills-cover-logos {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0.15;
}

.skills-cover-section .skills-cover-logos .skills-cover-el {
  position: absolute;
  pointer-events: none;
  background-image: url("https://console.eesier.com.br/img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1;
}


/* LAYER 1 (nearest) */

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(1)  { width: 11%; top: 5%;  left: 3%;  z-index: 5; animation: scFloat-near 23s ease-in-out infinite; }

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(2)  { width: 11%; top: 60%; left: 70%; z-index: 5; animation: scFloat-near 29s ease-in-out 7s infinite; }

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(3)  { width: 11%; top: 75%; left: 20%; z-index: 5; animation: scFloat-near 26s ease-in-out 3s infinite; }


/* LAYER 2 */

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(4)  { width: 8%;  top: 2%;  left: 65%; z-index: 4; filter: blur(1px); animation: scFloat-mid-a 19s ease-in-out infinite; }

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(5)  { width: 8%;  top: 40%; left: 5%;  z-index: 4; filter: blur(1px); animation: scFloat-mid-b 22s ease-in-out 5s infinite; }

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(6)  { width: 8%;  top: 50%; left: 80%; z-index: 4; filter: blur(1px); animation: scFloat-mid-a 17s ease-in-out 9s infinite; }


/* LAYER 3 */

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(7)  { width: 6%;  top: 15%; left: 40%; z-index: 3; filter: blur(2px); animation: scFloat-mid-b 21s ease-in-out 2s infinite; }

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(8)  { width: 6%;  top: 70%; left: 55%; z-index: 3; filter: blur(2px); animation: scFloat-mid-a 18s ease-in-out 8s infinite; }

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(9)  { width: 6%;  top: 85%; left: 90%; z-index: 3; filter: blur(2px); animation: scFloat-mid-b 24s ease-in-out 4s infinite; }


/* LAYER 4 */

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(10) { width: 4%;  top: 8%;  left: 88%; z-index: 2; filter: blur(3px); animation: scFloat-far 17s ease-in-out infinite; }

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(11) { width: 4%;  top: 55%; left: 30%; z-index: 2; filter: blur(3px); animation: scFloat-far 23s ease-in-out 6s infinite; }

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(12) { width: 4%;  top: 30%; left: 12%; z-index: 2; filter: blur(3px); animation: scFloat-far 19s ease-in-out 11s infinite; }


/* LAYER 5 (farthest) */

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(13) { width: 3%;  top: 3%;  left: 50%; z-index: 1; filter: blur(4px); animation: scFloat-far 29s ease-in-out 3s infinite; }

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(14) { width: 3%;  top: 45%; left: 95%; z-index: 1; filter: blur(4px); animation: scFloat-far 21s ease-in-out 9s infinite; }

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(15) { width: 3%;  top: 90%; left: 45%; z-index: 1; filter: blur(4px); animation: scFloat-far 26s ease-in-out 13s infinite; }

.skills-cover-section .skills-cover-logos .skills-cover-el:nth-child(16) { width: 3%;  top: 65%; left: 8%;  z-index: 1; filter: blur(4px); animation: scFloat-far 18s ease-in-out 7s infinite; }


/* KEYFRAMES */

@keyframes scFloat-far {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  20% { transform: translate(60px, -45px) rotate(8deg) scale(1.06); }
  40% { transform: translate(-40px, -80px) rotate(-5deg) scale(0.94); }
  60% { transform: translate(-70px, 30px) rotate(10deg) scale(1.05); }
  80% { transform: translate(50px, 55px) rotate(-7deg) scale(0.95); }
}

@keyframes scFloat-mid-a {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(40px, -35px) rotate(6deg) scale(1.04); }
  50% { transform: translate(-30px, -55px) rotate(-5deg) scale(0.96); }
  75% { transform: translate(-45px, 20px) rotate(3deg) scale(1.03); }
}

@keyframes scFloat-mid-b {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  30% { transform: translate(-45px, -40px) rotate(-6deg) scale(1.03); }
  60% { transform: translate(35px, -25px) rotate(5deg) scale(0.97); }
  85% { transform: translate(20px, 50px) rotate(-3deg) scale(1.02); }
}

@keyframes scFloat-near {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(20px, -18px) rotate(3deg) scale(1.025); }
  66% { transform: translate(-15px, -30px) rotate(-2deg) scale(0.975); }
}

@media (prefers-reduced-motion: reduce) {

  .skills-cover-section .skills-cover-logos .skills-cover-el {
    animation: none;
  }

}


/* =========================================================================
   GLOBAL REACH — multilingual prospecting showcase
   ========================================================================= */

.global-reach-section {
  background: var(--color-ink);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.global-reach-section::before {
  content: "";
  position: absolute;
  top: -79px;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,80 720,0 1440,40 L1440,80 L0,80 Z' fill='%230f172a'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 2;
}


/* TICKER ROWS */

.global-reach-section .global-reach-ticker {
  display: flex;
  overflow: hidden;
}

.global-reach-section .global-reach-ticker .global-reach-ticker-track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 0;
}

.global-reach-section .global-reach-ticker--left .global-reach-ticker-track {
  animation: grTickerLeft 50s linear infinite;
}

.global-reach-section .global-reach-ticker--right .global-reach-ticker-track {
  animation: grTickerRight 55s linear infinite;
}

@keyframes grTickerLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes grTickerRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {

  .global-reach-section .global-reach-ticker .global-reach-ticker-track {
    animation: none;
  }

}


/* PILLS */

.global-reach-section .global-reach-ticker .global-reach-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(28, 145, 228, 0.12);
  border-radius: 50px;
  flex-shrink: 0;
}

.global-reach-section .global-reach-ticker .global-reach-pill .global-reach-pill-flag {
  font-size: 18px;
  line-height: 1;
}

.global-reach-section .global-reach-ticker .global-reach-pill .global-reach-pill-greeting {
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
}

.global-reach-section .global-reach-ticker .global-reach-pill .global-reach-pill-lang {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  white-space: nowrap;
}


/* CENTER CONTENT */

.global-reach-section .global-reach-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  padding: 50px 25px;
  gap: 25px;
  position: relative;
  z-index: 2;
}

.global-reach-section .global-reach-content .global-reach-headline {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.global-reach-section .global-reach-content .global-reach-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}


/* SPEED VARIETY — each row at a different pace */

.global-reach-section .global-reach-ticker:nth-child(4) .global-reach-ticker-track {
  animation-duration: 45s;
}

.global-reach-section .global-reach-ticker:nth-child(5) .global-reach-ticker-track {
  animation-duration: 60s;
}


/* RESPONSIVE */

@media (min-width: 768px) {

  .global-reach-section .global-reach-content .global-reach-headline {
    font-size: 36px;
  }

}

@media (min-width: 1024px) {

  .global-reach-section .global-reach-content .global-reach-headline {
    font-size: 42px;
  }

}


/* =========================================================================
   REJECTION LEARNING
   ========================================================================= */

.rejection-learning-section {
  background: #dbeafe;
  text-align: center;
  position: relative;
  z-index: 1;
}

.rejection-learning-section .rejection-learning-inner {
  max-width: 960px;
}

.rejection-learning-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.rejection-learning-section .section-header .section-title {
  color: var(--color-ink);
}

.rejection-learning-section .section-header .section-subtitle {
  color: var(--color-muted);
  margin: 10px auto 0;
  max-width: 480px;
}

.rejection-learning-section .rejection-learning-body {
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

/* =========================================================================
   IMPORT LISTS
   ========================================================================= */

.import-lists-section {
  background: var(--color-surface);
  text-align: center;
  position: relative;
  z-index: 1;
}

.import-lists-section .import-lists-inner {
  max-width: 960px;
}

.import-lists-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.import-lists-section .section-header .section-title {
  color: var(--color-ink);
}

.import-lists-section .section-header .section-subtitle {
  color: var(--color-muted);
  margin: 10px auto 0;
  max-width: 480px;
}

.import-lists-section .import-visual-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.import-lists-section .import-visual-flow .import-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.import-lists-section .import-visual-flow .import-step .import-step-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.import-lists-section .import-visual-flow .import-step .import-step-label {
  font-weight: var(--font-bold);
  color: var(--color-ink);
}

.import-lists-section .import-visual-flow .import-step .import-step-desc {
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  max-width: 220px;
}

/* SPREADSHEET ICON */

.import-lists-section .import-icon-spreadsheet {
  position: relative;
  width: 56px;
  height: 68px;
  background: var(--color-background);
  border: 2px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}

.import-lists-section .import-icon-spreadsheet .import-icon-spreadsheet-header {
  height: 14px;
  background: var(--color-primary);
  opacity: 0.15;
}

.import-lists-section .import-icon-spreadsheet .import-icon-spreadsheet-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 6px;
}

.import-lists-section .import-icon-spreadsheet .import-icon-spreadsheet-rows .import-icon-spreadsheet-row {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
}

.import-lists-section .import-icon-spreadsheet .import-icon-upload-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.import-lists-section .import-icon-spreadsheet .import-icon-upload-badge svg {
  width: 12px;
  height: 12px;
}

/* GEAR ICON */

.import-lists-section .import-icon-gear {
  display: flex;
  align-items: center;
  justify-content: center;
}

.import-lists-section .import-icon-gear .import-gear-svg {
  animation: importGearSpin 8s linear infinite;
}

@keyframes importGearSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* PROSPECT CARDS */

.import-lists-section .import-icon-prospects {
  position: relative;
  width: 70px;
  height: 70px;
}

.import-lists-section .import-icon-prospects .import-icon-prospect-card {
  position: absolute;
  width: 50px;
  height: 34px;
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.import-lists-section .import-icon-prospects .import-icon-prospect-card--1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  opacity: 0.5;
}

.import-lists-section .import-icon-prospects .import-icon-prospect-card--2 {
  top: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  opacity: 0.75;
}

.import-lists-section .import-icon-prospects .import-icon-prospect-card--3 {
  top: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(6deg);
  opacity: 1;
  background: rgba(28, 145, 228, 0.08);
}

/* CONNECTORS */

.import-lists-section .import-visual-flow .import-connector {
  position: relative;
  width: 2px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.import-lists-section .import-visual-flow .import-connector .import-connector-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.import-lists-section .import-visual-flow .import-connector .import-connector-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  animation: importDotFlow 2s ease-in-out infinite;
}

.import-lists-section .import-visual-flow .import-connector .import-connector-dot--1 {
  animation-delay: 0s;
}

.import-lists-section .import-visual-flow .import-connector .import-connector-dot--2 {
  animation-delay: 0.6s;
}

.import-lists-section .import-visual-flow .import-connector .import-connector-dot--3 {
  animation-delay: 1.2s;
}

@keyframes importDotFlow {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* FORMATS NOTE */

.import-lists-section .import-formats-note {
  margin-top: 50px;
  color: var(--color-muted);
  opacity: 0.6;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}


/* =========================================================================
   HOME INBOUND SECTION
   ========================================================================= */

.home-inbound-section {
  background: #dbeafe;
  position: relative;
  z-index: 1;
}

.home-inbound-section .section-header {
  text-align: left;
  margin-bottom: 25px;
}

.home-inbound-section .section-header .section-title {
  color: var(--color-ink);
}

.home-inbound-section .home-inbound-body {
  max-width: 720px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 25px;
}

.home-inbound-section .home-inbound-body p {
  margin: 0 0 10px;
}

.home-inbound-section .home-inbound-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}

.home-inbound-section .home-inbound-highlights .home-inbound-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  line-height: 1.5;
}

.home-inbound-section .home-inbound-highlights .home-inbound-highlight-item .home-inbound-highlight-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  margin-top: 1px;
}

.home-inbound-section .home-inbound-highlights .home-inbound-highlight-item .home-inbound-highlight-icon svg {
  width: 22px;
  height: 22px;
}

.home-inbound-section .home-inbound-cta-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}


/* =========================================================================
   HOME LIST ENRICHMENT SECTION
   ========================================================================= */

.home-list-enrichment-section {
  background: var(--color-surface);
  position: relative;
  z-index: 1;
}

.home-list-enrichment-section .section-header {
  text-align: left;
  margin-bottom: 25px;
}

.home-list-enrichment-section .section-header .section-title {
  color: var(--color-ink);
}

.home-list-enrichment-section .home-list-enrichment-body {
  max-width: 720px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 25px;
}

.home-list-enrichment-section .home-list-enrichment-body p {
  margin: 0 0 10px;
}

.home-list-enrichment-section .home-list-enrichment-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-list-enrichment-section .home-list-enrichment-highlights .home-list-enrichment-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  line-height: 1.5;
}

.home-list-enrichment-section .home-list-enrichment-highlights .home-list-enrichment-highlight-item .home-list-enrichment-highlight-icon {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  color: var(--color-primary);
  margin-top: 1px;
}

.home-list-enrichment-section .home-list-enrichment-highlights .home-list-enrichment-highlight-item .home-list-enrichment-highlight-icon svg {
  width: 25px;
  height: 25px;
}

.home-list-enrichment-section .home-list-enrichment-cta-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}


/* =========================================================================
   HOME MCP SECTION
   ========================================================================= */

.home-mcp-section {
  background: var(--color-ink);
  position: relative;
  z-index: 1;
}

.home-mcp-section .section-header {
  text-align: left;
  margin-bottom: 25px;
}

.home-mcp-section .section-header .section-title {
  color: #ffffff;
}

.home-mcp-section .home-mcp-body {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 25px;
}

.home-mcp-section .home-mcp-body p {
  margin: 0 0 10px;
}

.home-mcp-section .home-mcp-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}

.home-mcp-section .home-mcp-highlights .home-mcp-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.home-mcp-section .home-mcp-highlights .home-mcp-highlight-item .home-mcp-highlight-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-secondary);
  margin-top: 1px;
}

.home-mcp-section .home-mcp-highlights .home-mcp-highlight-item .home-mcp-highlight-icon svg {
  width: 22px;
  height: 22px;
}

.home-mcp-section .home-mcp-cta-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}


/* =========================================================================
   PROSPECTING HOURS SECTION
   ========================================================================= */

.ph-section {
  --ph-hill-scale: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  padding: 0;
}

.ph-section .ph-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b1120;
}

.ph-section .ph-sky .ph-sky-night {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #050a18 0%, #0b1120 20%, #0f1b35 45%, #162544 70%, #1a3255 100%);
  opacity: 1;
}

.ph-animate .ph-sky .ph-sky-night {
  animation: phNightfade 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes phNightfade {
  0% { opacity: 1; }
  25% { opacity: 1; }
  50% { opacity: 0.3; }
  60% { opacity: 0; }
  100% { opacity: 0; }
}

.ph-section .ph-sky .ph-sky-dawn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #1e3a5f 0%, #c2649a 15%, #e8927c 30%, #f5b461 45%, #fde68a 60%, #87ceeb 80%, #bae6fd 100%);
  opacity: 0;
}

.ph-animate .ph-sky .ph-sky-dawn {
  animation: phDawnpulse 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes phDawnpulse {
  0% { opacity: 0; }
  25% { opacity: 0; }
  40% { opacity: 1; }
  60% { opacity: 1; }
  75% { opacity: 0; }
  100% { opacity: 0; }
}

.ph-section .ph-sky .ph-sky-day {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #1d8fdb 0%, #47a8e8 20%, #7ec8f5 45%, #b5dff8 70%, #e8f4fd 100%);
  opacity: 0;
}

.ph-animate .ph-sky .ph-sky-day {
  animation: phDayfade 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes phDayfade {
  0% { opacity: 0; }
  60% { opacity: 0; }
  80% { opacity: 1; }
  100% { opacity: 1; }
}

.ph-section .ph-sky .ph-stars .ph-star {
  position: absolute;
  border-radius: 50%;
  background: #ffffff;
}

.ph-section .ph-sky .ph-stars .ph-star--sm {
  width: 2px;
  height: 2px;
  opacity: 0.5;
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.4);
}

.ph-section .ph-sky .ph-stars .ph-star--md {
  width: 3px;
  height: 3px;
  opacity: 0.7;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5), 0 0 10px rgba(200, 220, 255, 0.2);
}

.ph-section .ph-sky .ph-stars .ph-star--lg {
  width: 4px;
  height: 4px;
  opacity: 0.9;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 15px rgba(200, 220, 255, 0.3);
}

.ph-animate .ph-sky .ph-stars .ph-star {
  animation: phStartwinkle 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.ph-animate .ph-sky .ph-stars .ph-star:nth-child(odd) {
  animation-delay: -2s;
}

.ph-animate .ph-sky .ph-stars .ph-star:nth-child(3n) {
  animation-delay: -4s;
}

@keyframes phStartwinkle {
  0% { opacity: var(--ph-star-opacity, 0.7); transform: scale(1); }
  8% { opacity: 1; transform: scale(1.3); }
  16% { opacity: var(--ph-star-opacity, 0.7); transform: scale(1); }
  24% { opacity: 0.9; transform: scale(1.15); }
  32% { opacity: var(--ph-star-opacity, 0.7); transform: scale(1); }
  45% { opacity: 0.3; transform: scale(0.7); }
  55% { opacity: 0; transform: scale(0); }
  100% { opacity: 0; transform: scale(0); }
}

/* SHOOTING STARS */

.ph-section .ph-sky .ph-stars .ph-shooting-star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.ph-section .ph-sky .ph-stars .ph-shooting-star::after {
  content: "";
  position: absolute;
  top: 0;
  right: 3px;
  width: 70px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(200, 220, 255, 0.4) 30%, transparent);
  border-radius: 1px;
  transform-origin: right center;
}

.ph-section .ph-sky .ph-stars .ph-shooting-star--1 {
  top: 12%;
  left: 25%;
}

.ph-section .ph-sky .ph-stars .ph-shooting-star--1::after {
  transform: rotate(30deg);
}

.ph-section .ph-sky .ph-stars .ph-shooting-star--2 {
  top: 8%;
  left: 68%;
}

.ph-section .ph-sky .ph-stars .ph-shooting-star--2::after {
  transform: rotate(20deg);
}

.ph-animate .ph-sky .ph-stars .ph-shooting-star--1 {
  animation: phShootingstar1 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.ph-animate .ph-sky .ph-stars .ph-shooting-star--2 {
  animation: phShootingstar2 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes phShootingstar1 {
  0% { opacity: 0; transform: translate(0, 0); }
  9% { opacity: 0; transform: translate(0, 0); }
  10% { opacity: 1; transform: translate(0, 0); }
  13% { opacity: 0.8; transform: translate(120px, 65px); }
  14% { opacity: 0; transform: translate(160px, 85px); }
  100% { opacity: 0; transform: translate(160px, 85px); }
}

@keyframes phShootingstar2 {
  0% { opacity: 0; transform: translate(0, 0); }
  17% { opacity: 0; transform: translate(0, 0); }
  18% { opacity: 1; transform: translate(0, 0); }
  21% { opacity: 0.8; transform: translate(100px, 55px); }
  22% { opacity: 0; transform: translate(140px, 75px); }
  100% { opacity: 0; transform: translate(140px, 75px); }
}

/* MOON */

.ph-section .ph-sky .ph-moon {
  position: absolute;
  top: 18%;
  right: 18%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f8f4e8 0%, #e8e0c8 50%, #d4c8a0 100%);
  box-shadow: 0 0 25px rgba(248, 244, 232, 0.4), 0 0 50px rgba(248, 244, 232, 0.2), 0 0 80px rgba(200, 195, 170, 0.1);
  opacity: 1;
}

.ph-section .ph-sky .ph-moon .ph-moon-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 244, 232, 0.12) 0%, rgba(248, 244, 232, 0.04) 40%, transparent 70%);
}

.ph-animate .ph-sky .ph-moon {
  animation: phMooncycle 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.ph-animate .ph-sky .ph-moon .ph-moon-glow {
  animation: phMoonglow 4s ease-in-out infinite alternate;
}

@keyframes phMooncycle {
  0% { opacity: 1; transform: translateY(0); }
  25% { opacity: 1; transform: translateY(0); }
  45% { opacity: 0.3; transform: translateY(15px); }
  55% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 0; transform: translateY(25px); }
}

@keyframes phMoonglow {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.15); opacity: 0.7; }
}

/* HORIZON GLOW */

.ph-section .ph-sky .ph-horizon-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  opacity: 0;
  z-index: 1;
  background: radial-gradient(ellipse 120% 90% at 30% 100%, rgba(255, 140, 40, 0.55) 0%, rgba(255, 100, 20, 0.3) 25%, rgba(255, 70, 10, 0.12) 50%, transparent 75%);
  pointer-events: none;
}

.ph-animate .ph-sky .ph-horizon-glow {
  animation: phHorizonglow 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes phHorizonglow {
  0% { opacity: 0; }
  25% { opacity: 0; }
  35% { opacity: 0.8; }
  45% { opacity: 1; }
  55% { opacity: 0.6; }
  70% { opacity: 0.15; }
  80% { opacity: 0; }
  100% { opacity: 0; }
}

/* SUN — ARC PATH */

.ph-section .ph-sky .ph-sun {
  position: absolute;
  bottom: -15%;
  left: 20%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #fff5d4 30%, #fde68a 55%, #fbbf24 80%, rgba(251, 191, 36, 0) 100%);
  box-shadow: 0 0 40px rgba(255, 200, 50, 0.6), 0 0 80px rgba(255, 180, 30, 0.3), 0 0 160px rgba(255, 160, 20, 0.15);
  opacity: 0;
  z-index: 2;
}

.ph-section .ph-sky .ph-sun .ph-sun-corona {
  position: absolute;
  top: -75%;
  left: -75%;
  width: 250%;
  height: 250%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 50, 0.1) 0%, rgba(255, 180, 30, 0.05) 30%, transparent 60%);
}

.ph-section .ph-sky .ph-sun .ph-sun-rays {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 80, 0.12) 0%, transparent 70%);
}

.ph-animate .ph-sky .ph-sun {
  animation: phSuncycle 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.ph-animate .ph-sky .ph-sun .ph-sun-rays {
  animation: phRayspulse 4s ease-in-out infinite alternate;
}

.ph-animate .ph-sky .ph-sun .ph-sun-corona {
  animation: phCoronapulse 6s ease-in-out infinite alternate;
}

@keyframes phSuncycle {
  0% { bottom: -15%; left: 20%; opacity: 0; }
  30% { bottom: -15%; left: 22%; opacity: 0; }
  40% { bottom: 10%; left: 30%; opacity: 0.4; }
  55% { bottom: 35%; left: 40%; opacity: 0.8; }
  75% { bottom: 60%; left: 48%; opacity: 1; }
  100% { bottom: 65%; left: 52%; opacity: 1; }
}

@keyframes phRayspulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.25); opacity: 0.6; }
}

@keyframes phCoronapulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

/* CLOUDS — FLUFFY SHAPES */

.ph-section .ph-sky .ph-clouds .ph-cloud {
  position: absolute;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 0;
}

.ph-section .ph-sky .ph-clouds .ph-cloud::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.ph-section .ph-sky .ph-clouds .ph-cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.ph-section .ph-sky .ph-clouds .ph-cloud--1 {
  top: 22%;
  left: -15%;
  width: 180px;
  height: 40px;
}

.ph-section .ph-sky .ph-clouds .ph-cloud--1::before {
  width: 70px;
  height: 55px;
  top: -28px;
  left: 35px;
}

.ph-section .ph-sky .ph-clouds .ph-cloud--1::after {
  width: 50px;
  height: 42px;
  top: -18px;
  left: 95px;
}

.ph-section .ph-sky .ph-clouds .ph-cloud--2 {
  top: 35%;
  right: -10%;
  width: 150px;
  height: 35px;
}

.ph-section .ph-sky .ph-clouds .ph-cloud--2::before {
  width: 60px;
  height: 48px;
  top: -24px;
  left: 30px;
}

.ph-section .ph-sky .ph-clouds .ph-cloud--2::after {
  width: 42px;
  height: 36px;
  top: -15px;
  left: 80px;
}

.ph-section .ph-sky .ph-clouds .ph-cloud--3 {
  top: 15%;
  left: 30%;
  width: 120px;
  height: 30px;
}

.ph-section .ph-sky .ph-clouds .ph-cloud--3::before {
  width: 50px;
  height: 40px;
  top: -20px;
  left: 20px;
}

.ph-section .ph-sky .ph-clouds .ph-cloud--3::after {
  width: 36px;
  height: 30px;
  top: -12px;
  left: 65px;
}

.ph-animate .ph-sky .ph-clouds .ph-cloud--1 {
  animation: phCloud1 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate, phClouddrift1 25s linear infinite;
}

.ph-animate .ph-sky .ph-clouds .ph-cloud--2 {
  animation: phCloud2 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate, phClouddrift2 30s linear infinite;
}

.ph-animate .ph-sky .ph-clouds .ph-cloud--3 {
  animation: phCloud3 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate, phClouddrift3 22s linear infinite;
}

@keyframes phCloud1 {
  0% { opacity: 0; }
  60% { opacity: 0; }
  80% { opacity: 0.5; }
  100% { opacity: 0.5; }
}

@keyframes phCloud2 {
  0% { opacity: 0; }
  65% { opacity: 0; }
  85% { opacity: 0.45; }
  100% { opacity: 0.45; }
}

@keyframes phCloud3 {
  0% { opacity: 0; }
  70% { opacity: 0; }
  90% { opacity: 0.4; }
  100% { opacity: 0.4; }
}

@keyframes phClouddrift1 {
  0% { transform: translateX(0); }
  100% { transform: translateX(120vw); }
}

@keyframes phClouddrift2 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-120vw); }
}

@keyframes phClouddrift3 {
  0% { transform: translateX(0); }
  100% { transform: translateX(100vw); }
}

/* BIRDS */

.ph-section .ph-sky .ph-birds .ph-bird {
  position: absolute;
  width: 18px;
  height: 8px;
  opacity: 0;
}

.ph-section .ph-sky .ph-birds .ph-bird::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  background: rgba(40, 40, 40, 0.6);
  top: 50%;
  left: 0;
  transform-origin: right center;
  border-radius: 1px;
}

.ph-section .ph-sky .ph-birds .ph-bird::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  background: rgba(40, 40, 40, 0.6);
  top: 50%;
  right: 0;
  transform-origin: left center;
  border-radius: 1px;
}

.ph-section .ph-sky .ph-birds .ph-bird--1 {
  top: 18%;
  left: -5%;
}

.ph-section .ph-sky .ph-birds .ph-bird--2 {
  top: 12%;
  left: -15%;
  transform: scale(0.7);
}

.ph-section .ph-sky .ph-birds .ph-bird--3 {
  top: 25%;
  left: -10%;
  transform: scale(1.2);
}

.ph-animate .ph-sky .ph-birds .ph-bird--1 {
  animation: phBirdvisible 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate, phBirddrift1 18s linear infinite;
}

.ph-animate .ph-sky .ph-birds .ph-bird--1::before {
  animation: phBirdflapL 0.4s ease-in-out infinite alternate;
}

.ph-animate .ph-sky .ph-birds .ph-bird--1::after {
  animation: phBirdflapR 0.4s ease-in-out infinite alternate;
}

.ph-animate .ph-sky .ph-birds .ph-bird--2 {
  animation: phBirdvisible 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate, phBirddrift2 22s linear infinite;
  animation-delay: 0s, -3s;
}

.ph-animate .ph-sky .ph-birds .ph-bird--2::before {
  animation: phBirdflapL 0.5s ease-in-out infinite alternate;
}

.ph-animate .ph-sky .ph-birds .ph-bird--2::after {
  animation: phBirdflapR 0.5s ease-in-out infinite alternate;
}

.ph-animate .ph-sky .ph-birds .ph-bird--3 {
  animation: phBirdvisible 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate, phBirddrift3 15s linear infinite;
  animation-delay: 0s, -6s;
}

.ph-animate .ph-sky .ph-birds .ph-bird--3::before {
  animation: phBirdflapL 0.35s ease-in-out infinite alternate;
}

.ph-animate .ph-sky .ph-birds .ph-bird--3::after {
  animation: phBirdflapR 0.35s ease-in-out infinite alternate;
}

@keyframes phBirdvisible {
  0% { opacity: 0; }
  62% { opacity: 0; }
  72% { opacity: 0.7; }
  100% { opacity: 0.7; }
}

@keyframes phBirdflapL {
  0% { transform: rotate(-28deg); }
  100% { transform: rotate(8deg); }
}

@keyframes phBirdflapR {
  0% { transform: rotate(28deg); }
  100% { transform: rotate(-8deg); }
}

@keyframes phBirddrift1 {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(60vw) translateY(-15px); }
  100% { transform: translateX(120vw) translateY(5px); }
}

@keyframes phBirddrift2 {
  0% { transform: translateX(0) translateY(0) scale(0.7); }
  50% { transform: translateX(55vw) translateY(10px) scale(0.7); }
  100% { transform: translateX(115vw) translateY(-8px) scale(0.7); }
}

@keyframes phBirddrift3 {
  0% { transform: translateX(0) translateY(0) scale(1.2); }
  50% { transform: translateX(50vw) translateY(-20px) scale(1.2); }
  100% { transform: translateX(110vw) translateY(10px) scale(1.2); }
}

/* HILLS — LAYERED DEPTH */

.ph-section .ph-sky .ph-hills {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.ph-section .ph-sky .ph-hills .ph-hill {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0;
}

.ph-section .ph-sky .ph-hills .ph-hill--1 {
  left: -5%;
  width: 45%;
  height: calc(220px * var(--ph-hill-scale));
  background: #0d1f3a;
  z-index: 3;
  box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.2);
}

.ph-section .ph-sky .ph-hills .ph-hill--2 {
  left: 30%;
  width: 50%;
  height: calc(190px * var(--ph-hill-scale));
  background: #0d1f3a;
  z-index: 2;
}

.ph-section .ph-sky .ph-hills .ph-hill--3 {
  right: -5%;
  width: 40%;
  height: calc(180px * var(--ph-hill-scale));
  background: #0d1f3a;
  z-index: 1;
}

/* TREE SILHOUETTES */

.ph-section .ph-sky .ph-hills .ph-hill::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 8%;
  width: 84%;
  height: 40px;
  pointer-events: none;
  background: radial-gradient(ellipse 14px 16px at 8% 100%, #0d1f3a 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #0d1f3a 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #0d1f3a 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #0d1f3a 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #0d1f3a 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #0d1f3a 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #0d1f3a 95%, transparent);
}

.ph-animate .ph-sky .ph-hills .ph-hill--1 {
  animation: phHillcolor 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.ph-animate .ph-sky .ph-hills .ph-hill--1::before {
  animation: phHillcolorTrees 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.ph-animate .ph-sky .ph-hills .ph-hill--2 {
  animation: phHillcolorMid 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  animation-delay: -0.5s;
}

.ph-animate .ph-sky .ph-hills .ph-hill--2::before {
  animation: phHillcolorTreesMid 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  animation-delay: -0.5s;
}

.ph-animate .ph-sky .ph-hills .ph-hill--3 {
  animation: phHillcolorFar 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  animation-delay: -1s;
}

.ph-animate .ph-sky .ph-hills .ph-hill--3::before {
  animation: phHillcolorTreesFar 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  animation-delay: -1s;
}

@keyframes phHillcolor {
  0% { background: #0d1f3a; }
  30% { background: #0d1f3a; }
  50% { background: #1a3d2e; }
  75% { background: #1b6b42; }
  100% { background: #22a05a; }
}

@keyframes phHillcolorTrees {
  0% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #091520 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #091520 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #091520 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #091520 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #091520 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #091520 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #091520 95%, transparent); }
  30% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #091520 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #091520 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #091520 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #091520 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #091520 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #091520 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #091520 95%, transparent); }
  50% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #132e22 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #132e22 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #132e22 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #132e22 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #132e22 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #132e22 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #132e22 95%, transparent); }
  75% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #155235 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #155235 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #155235 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #155235 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #155235 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #155235 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #155235 95%, transparent); }
  100% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #1a7d45 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #1a7d45 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #1a7d45 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #1a7d45 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #1a7d45 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #1a7d45 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #1a7d45 95%, transparent); }
}

@keyframes phHillcolorMid {
  0% { background: #0d1f3a; }
  30% { background: #0d1f3a; }
  50% { background: #163828; }
  75% { background: #18604a; }
  100% { background: #1b8a4a; }
}

@keyframes phHillcolorTreesMid {
  0% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #091520 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #091520 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #091520 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #091520 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #091520 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #091520 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #091520 95%, transparent); }
  30% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #091520 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #091520 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #091520 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #091520 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #091520 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #091520 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #091520 95%, transparent); }
  50% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #0f2a1c 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #0f2a1c 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #0f2a1c 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #0f2a1c 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #0f2a1c 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #0f2a1c 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #0f2a1c 95%, transparent); }
  75% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #124a38 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #124a38 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #124a38 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #124a38 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #124a38 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #124a38 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #124a38 95%, transparent); }
  100% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #156e3a 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #156e3a 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #156e3a 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #156e3a 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #156e3a 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #156e3a 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #156e3a 95%, transparent); }
}

@keyframes phHillcolorFar {
  0% { background: #0d1f3a; }
  30% { background: #0d1f3a; }
  50% { background: #133020; }
  75% { background: #155838; }
  100% { background: #178040; }
}

@keyframes phHillcolorTreesFar {
  0% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #091520 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #091520 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #091520 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #091520 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #091520 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #091520 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #091520 95%, transparent); }
  30% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #091520 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #091520 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #091520 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #091520 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #091520 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #091520 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #091520 95%, transparent); }
  50% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #0d2418 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #0d2418 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #0d2418 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #0d2418 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #0d2418 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #0d2418 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #0d2418 95%, transparent); }
  75% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #10432a 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #10432a 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #10432a 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #10432a 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #10432a 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #10432a 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #10432a 95%, transparent); }
  100% { background: radial-gradient(ellipse 14px 16px at 8% 100%, #126532 95%, transparent), radial-gradient(ellipse 18px 20px at 22% 100%, #126532 95%, transparent), radial-gradient(ellipse 12px 14px at 38% 100%, #126532 95%, transparent), radial-gradient(ellipse 16px 18px at 52% 100%, #126532 95%, transparent), radial-gradient(ellipse 13px 15px at 68% 100%, #126532 95%, transparent), radial-gradient(ellipse 17px 19px at 82% 100%, #126532 95%, transparent), radial-gradient(ellipse 11px 13px at 92% 100%, #126532 95%, transparent); }
}

/* MASCOT */

.ph-section .ph-sky .ph-mascot {
  position: absolute;
  z-index: 6;
  width: 50px;
  height: 50px;
  left: -8%;
  bottom: 60px;
  pointer-events: none;
  filter: none;
}

.ph-section .ph-sky .ph-mascot .ph-mascot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ph-animate .ph-sky .ph-mascot {
  animation: phMascotHop 10s linear infinite;
}

@keyframes phMascotHop {
  /* ENTER FROM LEFT */
  0% { left: -8%; bottom: 60px; transform: rotate(5deg) scaleX(1) scaleY(1); opacity: 1; }
  1% { left: -6%; bottom: 150px; transform: rotate(-2deg) scaleX(0.92) scaleY(1.08); }
  3% { left: -1%; bottom: 270px; transform: rotate(-8deg) scaleX(0.88) scaleY(1.12); }
  4.5% { left: 2%; bottom: 305px; transform: rotate(-12deg) scaleX(0.86) scaleY(1.14); }
  5% { left: 3%; bottom: 310px; transform: rotate(-10deg) scaleX(0.88) scaleY(1.12); }
  5.5% { left: 4%; bottom: 305px; transform: rotate(-8deg) scaleX(0.9) scaleY(1.1); }
  7% { left: 7%; bottom: 260px; transform: rotate(-2deg) scaleX(0.94) scaleY(1.06); }
  9% { left: 11%; bottom: 215px; transform: rotate(4deg) scaleX(0.98) scaleY(1.02); }
  10% { left: 12%; bottom: 200px; transform: rotate(8deg) scaleX(1.12) scaleY(0.88); }

  /* HOP 2 — OVER HILL 1 PEAK */
  10.5% { left: 13%; bottom: 210px; transform: rotate(3deg) scaleX(1) scaleY(1); }
  11% { left: 14%; bottom: 260px; transform: rotate(-3deg) scaleX(0.92) scaleY(1.08); }
  13% { left: 19%; bottom: 315px; transform: rotate(-8deg) scaleX(0.88) scaleY(1.12); }
  14.5% { left: 22%; bottom: 335px; transform: rotate(-12deg) scaleX(0.86) scaleY(1.14); }
  15% { left: 23%; bottom: 338px; transform: rotate(-10deg) scaleX(0.88) scaleY(1.12); }
  15.5% { left: 24%; bottom: 335px; transform: rotate(-8deg) scaleX(0.9) scaleY(1.1); }
  17% { left: 27%; bottom: 280px; transform: rotate(-2deg) scaleX(0.94) scaleY(1.06); }
  19% { left: 30%; bottom: 180px; transform: rotate(4deg) scaleX(0.98) scaleY(1.02); }
  20% { left: 32%; bottom: 150px; transform: rotate(8deg) scaleX(1.12) scaleY(0.88); }

  /* HOP 3 — VALLEY TO HILL 2 */
  20.5% { left: 33%; bottom: 160px; transform: rotate(3deg) scaleX(1) scaleY(1); }
  21% { left: 34%; bottom: 210px; transform: rotate(-3deg) scaleX(0.92) scaleY(1.08); }
  23% { left: 39%; bottom: 285px; transform: rotate(-8deg) scaleX(0.88) scaleY(1.12); }
  24.5% { left: 42%; bottom: 305px; transform: rotate(-12deg) scaleX(0.86) scaleY(1.14); }
  25% { left: 43%; bottom: 308px; transform: rotate(-10deg) scaleX(0.88) scaleY(1.12); }
  25.5% { left: 44%; bottom: 305px; transform: rotate(-8deg) scaleX(0.9) scaleY(1.1); }
  27% { left: 47%; bottom: 250px; transform: rotate(-2deg) scaleX(0.94) scaleY(1.06); }
  29% { left: 50%; bottom: 200px; transform: rotate(4deg) scaleX(0.98) scaleY(1.02); }
  30% { left: 52%; bottom: 185px; transform: rotate(8deg) scaleX(1.12) scaleY(0.88); }

  /* HOP 4 — OVER HILL 2 */
  30.5% { left: 53%; bottom: 195px; transform: rotate(3deg) scaleX(1) scaleY(1); }
  31% { left: 54%; bottom: 240px; transform: rotate(-3deg) scaleX(0.92) scaleY(1.08); }
  33% { left: 58%; bottom: 290px; transform: rotate(-8deg) scaleX(0.88) scaleY(1.12); }
  34.5% { left: 61%; bottom: 310px; transform: rotate(-12deg) scaleX(0.86) scaleY(1.14); }
  35% { left: 62%; bottom: 312px; transform: rotate(-10deg) scaleX(0.88) scaleY(1.12); }
  35.5% { left: 63%; bottom: 310px; transform: rotate(-8deg) scaleX(0.9) scaleY(1.1); }
  37% { left: 66%; bottom: 250px; transform: rotate(-2deg) scaleX(0.94) scaleY(1.06); }
  39% { left: 70%; bottom: 175px; transform: rotate(4deg) scaleX(0.98) scaleY(1.02); }
  40% { left: 72%; bottom: 155px; transform: rotate(8deg) scaleX(1.12) scaleY(0.88); }

  /* HOP 5 — BETWEEN HILL 2 AND 3 */
  40.5% { left: 73%; bottom: 165px; transform: rotate(3deg) scaleX(1) scaleY(1); }
  41% { left: 74%; bottom: 210px; transform: rotate(-3deg) scaleX(0.92) scaleY(1.08); }
  43% { left: 78%; bottom: 275px; transform: rotate(-8deg) scaleX(0.88) scaleY(1.12); }
  44.5% { left: 81%; bottom: 295px; transform: rotate(-12deg) scaleX(0.86) scaleY(1.14); }
  45% { left: 82%; bottom: 298px; transform: rotate(-10deg) scaleX(0.88) scaleY(1.12); }
  45.5% { left: 83%; bottom: 295px; transform: rotate(-8deg) scaleX(0.9) scaleY(1.1); }
  47% { left: 86%; bottom: 240px; transform: rotate(-2deg) scaleX(0.94) scaleY(1.06); }
  49% { left: 89%; bottom: 185px; transform: rotate(4deg) scaleX(0.98) scaleY(1.02); }
  50% { left: 90%; bottom: 170px; transform: rotate(8deg) scaleX(1.12) scaleY(0.88); }

  /* HOP 6 — EXIT OVER HILL 3 */
  50.5% { left: 91%; bottom: 180px; transform: rotate(3deg) scaleX(1) scaleY(1); }
  51% { left: 92%; bottom: 220px; transform: rotate(-3deg) scaleX(0.92) scaleY(1.08); }
  53% { left: 95%; bottom: 265px; transform: rotate(-8deg) scaleX(0.88) scaleY(1.12); }
  54.5% { left: 97%; bottom: 280px; transform: rotate(-12deg) scaleX(0.86) scaleY(1.14); }
  55% { left: 98%; bottom: 282px; transform: rotate(-10deg) scaleX(0.88) scaleY(1.12); }
  55.5% { left: 99%; bottom: 278px; transform: rotate(-8deg) scaleX(0.9) scaleY(1.1); }
  57% { left: 102%; bottom: 210px; transform: rotate(-2deg) scaleX(0.94) scaleY(1.06); }
  59% { left: 106%; bottom: 100px; transform: rotate(4deg) scaleX(0.98) scaleY(1.02); }
  60% { left: 108%; bottom: 60px; transform: rotate(0deg) scaleX(1) scaleY(1); opacity: 1; }

  /* INVISIBLE RESET */
  61% { left: 108%; bottom: 60px; transform: rotate(0deg) scaleX(1) scaleY(1); opacity: 0; }
  62% { left: -8%; bottom: 60px; transform: rotate(0deg) scaleX(1) scaleY(1); opacity: 0; }
  92% { left: -8%; bottom: 60px; transform: rotate(0deg) scaleX(1) scaleY(1); opacity: 0; }
  100% { left: -8%; bottom: 60px; transform: rotate(5deg) scaleX(1) scaleY(1); opacity: 1; }
}

/* CONTENT OVERLAY — TYPOGRAPHY WITH GLASS PILLS */

.ph-section .content-inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ph-section .content-inner .ph-legend {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.25);
  padding: 5px 25px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ph-section .content-inner .ph-heading {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #fde68a 40%, #ffffff 60%, #fde68a 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ph-animate .content-inner .ph-heading {
  animation: phHeadingshimmer 8s ease-in-out infinite;
}

@keyframes phHeadingshimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.ph-section .content-inner .ph-heading .ph-heading-separator {
  opacity: 0.5;
}

.ph-section .content-inner .ph-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  background: none;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* TIME PROGRESS BAR */

.ph-section .content-inner .ph-time-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 250px;
  margin-top: 10px;
}

.ph-section .content-inner .ph-time-bar .ph-time-marker span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.ph-section .content-inner .ph-time-bar .ph-time-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.ph-section .content-inner .ph-time-bar .ph-time-track .ph-time-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  border-radius: 25px;
  background: linear-gradient(90deg, #1c3a6b, #c2649a, #f5b461, #fde68a, #47a8e8, #1d8fdb);
}

.ph-animate .content-inner .ph-time-bar .ph-time-track .ph-time-progress {
  animation: phTimeprogress 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes phTimeprogress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

  .ph-animate .ph-sky .ph-sky-night,
  .ph-animate .ph-sky .ph-sky-dawn,
  .ph-animate .ph-sky .ph-sky-day,
  .ph-animate .ph-sky .ph-stars .ph-star,
  .ph-animate .ph-sky .ph-stars .ph-shooting-star--1,
  .ph-animate .ph-sky .ph-stars .ph-shooting-star--2,
  .ph-animate .ph-sky .ph-horizon-glow,
  .ph-animate .ph-sky .ph-sun,
  .ph-animate .ph-sky .ph-sun .ph-sun-rays,
  .ph-animate .ph-sky .ph-sun .ph-sun-corona,
  .ph-animate .ph-sky .ph-moon,
  .ph-animate .ph-sky .ph-moon .ph-moon-glow,
  .ph-animate .ph-sky .ph-clouds .ph-cloud--1,
  .ph-animate .ph-sky .ph-clouds .ph-cloud--2,
  .ph-animate .ph-sky .ph-clouds .ph-cloud--3,
  .ph-animate .ph-sky .ph-birds .ph-bird--1,
  .ph-animate .ph-sky .ph-birds .ph-bird--2,
  .ph-animate .ph-sky .ph-birds .ph-bird--3,
  .ph-animate .ph-sky .ph-hills .ph-hill--1,
  .ph-animate .ph-sky .ph-hills .ph-hill--2,
  .ph-animate .ph-sky .ph-hills .ph-hill--3,
  .ph-animate .ph-sky .ph-hills .ph-hill--1::before,
  .ph-animate .ph-sky .ph-hills .ph-hill--2::before,
  .ph-animate .ph-sky .ph-hills .ph-hill--3::before,
  .ph-animate .ph-sky .ph-mascot,
  .ph-animate .content-inner .ph-heading,
  .ph-animate .content-inner .ph-time-bar .ph-time-track .ph-time-progress {
    animation-duration: 0.01s;
  }

  .ph-animate .ph-sky .ph-birds .ph-bird--1::before,
  .ph-animate .ph-sky .ph-birds .ph-bird--1::after,
  .ph-animate .ph-sky .ph-birds .ph-bird--2::before,
  .ph-animate .ph-sky .ph-birds .ph-bird--2::after,
  .ph-animate .ph-sky .ph-birds .ph-bird--3::before,
  .ph-animate .ph-sky .ph-birds .ph-bird--3::after {
    animation-duration: 0.01s;
  }
}

/* RESPONSIVE — PROSPECTING HOURS */

@media (max-width: 768px) {

  .ph-section {
    --ph-hill-scale: 0.6;
    min-height: 500px;
  }

  .ph-section .content-inner .ph-heading {
    font-size: 28px;
  }

  .ph-section .ph-sky .ph-moon {
    width: 40px;
    height: 40px;
  }

  .ph-section .ph-sky .ph-sun {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {

  .ph-section {
    --ph-hill-scale: 0.45;
    min-height: 400px;
  }

  .ph-section .content-inner .ph-heading {
    font-size: 22px;
  }

  .ph-section .ph-sky .ph-moon {
    width: 30px;
    height: 30px;
  }

  .ph-section .ph-sky .ph-sun {
    width: 55px;
    height: 55px;
  }

  .ph-section .ph-sky .ph-mascot {
    display: none;
  }

  .ph-section .ph-sky .ph-hills .ph-hill::before {
    top: 15px;
    height: 22px;
  }

  .ph-section .content-inner .ph-time-bar {
    width: 180px;
  }
}

@media (min-width: 1400px) {

  .ph-section {
    --ph-hill-scale: 1.2;
    min-height: 800px;
  }

  .ph-section .content-inner .ph-heading {
    font-size: 44px;
  }

  .ph-section .ph-sky .ph-moon {
    width: 60px;
    height: 60px;
  }

  .ph-section .ph-sky .ph-sun {
    width: 110px;
    height: 110px;
  }
}


/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (min-width: 640px) {

  /* TYPOGRAPHY */

  .headline {
    font-size: 32px;
  }

  .subheadline {
    font-size: 18px;
  }

  /* SECTION HEADERS */

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  /* CONHECA */

  .conheca-header-with-logo {
    gap: 50px;
  }

  /* COMO FUNCIONA */

  .como-funciona-header {
    margin-bottom: 75px;
    padding-bottom: 50px;
  }

  /* STEP NUMBER / TITLE / DESCRIPTION */

  .step-number {
    font-size: 48px;
  }

  .step-title {
    font-size: 24px;
  }

  .step-description {
    font-size: 18px;
  }

  /* IPHONE MOCKUP */

  .iphone-mockup {
    width: 240px;
    max-width: 240px;
    height: 480px;
    aspect-ratio: auto;
    border-radius: 40px;
    padding: 7px;
  }

  .iphone-mockup::after {
    top: 7px;
  }

  .iphone-mockup::before {
    top: 16px;
    width: 95px;
    height: 24px;
  }

  .iphone-screen {
    border-radius: 36px;
  }

  /* WHATSAPP */

  .whatsapp-header {
    padding: 50px 10px 10px;
    gap: 10px;
  }

  .whatsapp-contact-avatar {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .whatsapp-contact-name {
    font-size: 11px;
  }

  .whatsapp-contact-status {
    font-size: 11px;
  }

  .whatsapp-header-icons {
    gap: 25px;
    font-size: 18px;
  }

  .whatsapp-chat {
    padding: 10px;
    gap: 10px;
  }

  .wa-message {
    max-width: 85%;
    padding: 10px 10px;
    font-size: 11px;
  }

  .wa-message-meta {
    margin-top: 4px;
    font-size: 11px;
  }

  .wa-typing-indicator {
    padding: 10px 25px;
    gap: 5px;
  }

  .wa-typing-indicator span {
    width: 7px;
    height: 7px;
  }

  .whatsapp-input-icons {
    font-size: 18px;
  }

  .whatsapp-right-icons svg {
    width: 16px;
    height: 16px;
  }

  .whatsapp-input-field {
    padding: 10px 10px;
    min-height: 32px;
    font-size: 11px;
  }

  .whatsapp-input-text {
    font-size: 11px;
  }

  .typing-cursor {
    height: 14px;
  }
}

@media (min-width: 768px) {

  /* HEADER */

  .header-nav {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-nav {
    display: none !important;
    visibility: hidden !important;
  }

  /* STEPS */

  .steps {
    gap: 50px;
    margin-top: 0px;
  }

  .step {
    flex-direction: row;
    gap: 50px;
    padding: 50px;
  }

  .step-demo {
    order: 0;
  }

  .step-content {
    text-align: left;
    align-items: flex-start;
    gap: 25px;
  }

  .step-header {
    align-items: flex-start;
  }

  /* LAYOUT CARDS */

  .layout-cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* ILLUSTRATED STEPS */

  .illustrated-steps {
/*    background: #fff;*/
/*    padding: 25px;*/
    border-radius: 25px;
    flex-direction: row;
    gap: 25px;
  }

  .illustrated-step {
    flex: 1;
  }

  .illustrated-step__title {
    font-size: 32px;
  }

  /* STEP ACTIONS */

  .step-actions {
    justify-content: flex-start;
  }

  /* STEP WITH CHAT DEMO */

  .step--with-chat {
    flex-direction: row;
    align-items: center;
  }

  .step--with-chat .step-content {
    flex: 1;
    text-align: right;
    align-items: flex-end;
  }

  .step--with-chat .step-header {
    align-items: flex-end;
  }

  .step--with-chat .step-chat-demo {
    width: 320px;
    max-width: 320px;
    margin: 0;
  }

  /* RECORDS ANIMATION */

  .records-animation .records-container--2,
  .records-animation .records-container--3 {
    display: flex;
  }

  /* IPHONE MOCKUP */

  .iphone-mockup {
    width: 280px;
    max-width: 280px;
    height: 560px;
    border-radius: 42px;
    padding: 8px;
  }

  .iphone-mockup::after {
    top: 8px;
  }

  /* PARA QUEM NAO E */

  .para-quem-nao-e-showcase {
    padding: 50px 0;
  }

  /* PRICING STATEMENT */

  .pricing-statement {
    padding: 100px 0;
  }

  .pricing-statement-terms {
    font-size: 14px;
  }

  .pricing-statement-currency {
    font-size: 48px;
  }

  .pricing-statement-amount {
    font-size: 12rem;
  }

  .pricing-statement-period {
    font-size: 14px;
  }

  /* IMPORT LISTS */

  .import-lists-section .import-visual-flow {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .import-lists-section .import-visual-flow .import-step {
    flex: 1;
  }

  .import-lists-section .import-visual-flow .import-connector {
    width: 80px;
    height: 2px;
    margin-top: 50px;
  }

  .import-lists-section .import-visual-flow .import-connector .import-connector-line {
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 2px;
  }

  .import-lists-section .import-visual-flow .import-connector .import-connector-dot {
    top: -2px;
    animation: importDotFlowH 2s ease-in-out infinite;
  }

  @keyframes importDotFlowH {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
  }

  /* INTEGRATIONS */

  .integrations-section .integrations-grid .integrations-card {
    flex: 0 0 calc(33.333% - 17px);
  }

  /* PLAYBOOK */

  .playbook-section .playbook-stats {
    flex-direction: row;
    justify-content: center;
  }

  .playbook-section .playbook-stats .playbook-stat {
    flex: 1;
  }

  /* LGPD COVER */

  .lgpd-cover-section .lgpd-cover-stats {
    flex-direction: row;
    justify-content: center;
  }

  .lgpd-cover-section .lgpd-cover-stats .lgpd-cover-stat {
    flex: 1;
  }

  /* PROSPECTING HOURS */

  .ph-section .content-inner .ph-heading {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {

  /* TYPOGRAPHY */

  .headline {
    font-size: 48px;
  }

  /* SECTION HEADERS */

  .section-header {
    text-align: left;
  }

  .pricing-statement .section-header,
  .faq-editorial .section-header,
  .integrations-section .section-header,
  .rejection-learning-section .section-header,
  .playbook-section .section-header,
  .lgpd-cover-section .section-header,
  .import-lists-section .section-header {
    text-align: center;
  }

  #conheca .conheca-header-with-logo .section-title .text-secondary {
    display: inline;
  }

  /* LAYOUT UTILITIES */

  .content-inner {
    padding-left: 50px;
    padding-right: 50px;
  }

  /* CONHECA */

  .conheca-header-with-logo {
    flex-direction: row;
    align-items: center;
  }

  .conheca-header-logo {
    width: 75PX;
    height: 75px;
  }

  .para-quem-nao-e-showcase .pqne-header .pqne-header-logo {
    width: 75px;
    height: 75px;
  }

  .skills-cover-section .section-header .skills-cover-logo {
    width: 75px;
    height: 75px;
  }

  .conheca-intro {
    max-width: 400px;
    margin-top: 0;
    font-size: 18px;
    padding: 25px 50px;
  }

  .conheca-intro::before {
    bottom: -10px;
    left: calc(50% - 10px);
  }

  /* STEPS */

  .steps {
    gap: 50px;
  }

  .step {
    gap: 50px;
    padding: 50px 50px;
  }

  .step-content {
    gap: 50px;
  }

  .step-title {
    font-size: 32px;
  }

  /* LAYOUT CARDS */

  .layout-cards {
    gap: 50px;
  }

  /* ILLUSTRATED STEPS */

  .illustrated-steps {
    gap: 50px;
  }

  .illustrated-step__content {
    padding-left: 0px;
    padding-right: 0px;
  }

  .illustrated-step__drawing {
    justify-content: flex-start;
  }

  .illustrated-step__drawing img {
    max-width: 250px;
  }

  /* STEP WITH CHAT DEMO */

  .step--with-chat .step-chat-demo {
    width: 400px;
    max-width: 400px;
  }

  /* RECORDS ANIMATION */

  .records-animation .records-button {
    width: 175px;
    height: 175px;
  }

  .records-animation .records-button img {
    width: 75px;
    height: 75px;
  }

  /* IPHONE MOCKUP */

  .iphone-mockup {
    width: 320px;
    max-width: 320px;
    height: 640px;
    border-radius: 44px;
  }

  /* PRICING STATEMENT */

  .pricing-statement-currency {
    font-size: 48px;
  }

  .pricing-statement-amount {
    font-size: 18rem;
  }

  /* PLAYBOOK */

  .playbook-section .playbook-stats .playbook-stat .playbook-stat-value {
    font-size: 64px;
  }

  /* LGPD COVER */

  .lgpd-cover-section .lgpd-cover-stats .lgpd-cover-stat .lgpd-cover-stat-value {
    font-size: 64px;
  }

  /* PROSPECTING HOURS */

  .ph-section .content-inner .ph-heading {
    font-size: 52px;
  }
}

@media (min-width: 1280px) {

  /* HERO */

  .hero {
  }

  /* TYPOGRAPHY */

  .subheadline {
    font-size: 18px;
    max-width: 100%;
  }

  /* HERO LAYOUT */

  .hero-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }

  .hero-content {
    flex: 1 1 auto;
    max-width: 720px;
  }

  /* CHAT DEMO */

  .chat-demo {
    flex: 0 0 auto;
    width: 500px;
    max-width: 500px;
  }

  .chat-demo-window {
    border-radius: 24px;
    box-shadow:
      0 25px 80px rgba(28, 145, 228, 0.15),
      0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .chat-demo-header {
    padding: 25px 25px;
  }

  .chat-messages {
    padding: 25px 25px;
    gap: 25px;
  }

  .message-bubble .message-content {
    padding: 10px 25px;
    border-radius: 20px;
  }
}

@media (max-width: 1024px) {

  /* CONHECA */

  .conheca-header-text {
    gap: 10px;
  }

  .conheca-intro {
    margin-top: 0px;
    margin-right: 0px;
    top: 0;
  }

  /* STEPS */

  .step {
    gap: 50px;
  }

  .step-content br {
    display: none;
  }

  /* NOTEBOOK */

  .notebook__header {
    font-size: 24px;
    margin-top: 10px;
  }

  .notebook__lines {
    margin-top: 25px;
  }

  .notebook__text {
    font-size: 24px;
  }

  .notebook__phrase {
    line-height: 36px;
  }

    .notebook-lines-flex {
        flex-direction: column;
    }
}

@media (max-width: 900px) {

  /* HEADER */

  .header img {
    height: 1.2rem;
  }

  /* TYPOGRAPHY */

  ul.subheadline {
    gap: 25px;
  }

  ul.subheadline li {
    line-height: 21px;
    font-size: 14px;
    gap: 10px;
  }
}

@media (max-width: 767px) {

  /* INTEGRATIONS */

  .integrations-section .integrations-grid-wrap {
    margin-left: -25px;
    margin-right: -25px;
  }

  .integrations-section .integrations-grid-wrap::before,
  .integrations-section .integrations-grid-wrap::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
  }

  .integrations-section .integrations-grid-wrap::before {
    left: 0;
    background: linear-gradient(to right, #dbeafe, transparent);
  }

  .integrations-section .integrations-grid-wrap::after {
    right: 0;
    background: linear-gradient(to left, #dbeafe, transparent);
  }

  .integrations-section .integrations-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 25px;
    margin-bottom: 25px;
  }

  .integrations-section .integrations-grid::-webkit-scrollbar {
    display: none;
  }

  .integrations-section .integrations-grid .integrations-card {
    flex: 0 0 260px;
    text-align: left;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 639px) {

  /* NOTEBOOK */

  .notebook {
    padding: 25px 25px 50px 50px;
  }

  .notebook::before {
    left: 40px;
  }

  .notebook__margin-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
    text-align: left;
    margin-top: 25px;
    transform: rotate(0deg);
  }

  /* PROSPECTING HOURS */

  .ph-section .content-inner .ph-heading {
    font-size: 22px;
  }

  .ph-section .ph-sky .ph-moon {
    width: 35px;
    height: 35px;
    top: 15%;
    right: 12%;
  }

  .ph-section .ph-sky .ph-sun {
    width: 60px;
    height: 60px;
  }

  .ph-section .ph-sky .ph-clouds .ph-cloud {
    display: none;
  }

  .ph-section .ph-sky .ph-hills .ph-hill--1 {
    height: 70px;
  }

  .ph-section .ph-sky .ph-hills .ph-hill--2 {
    height: 55px;
  }

  .ph-section .ph-sky .ph-hills .ph-hill--3 {
    height: 50px;
  }

  .ph-section {
    min-height: 500px;
  }
}
