@font-face {
  font-family: 'Syne';
  src: url('fonts/Syne-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('fonts/Syne-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('fonts/Syne-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('fonts/Syne-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Gradiente azul claro para branco na palavra 'solução' */
.solucao-gradient {
  background: linear-gradient(90deg, #b78628 0%, #ffd700 50%, #b78628 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.cycle-step-icon {
  font-size: 2rem;
}
p {
  font-family: 'Inter', sans-serif;
}
header.hero h1 span {
  font-family: 'Syne', sans-serif !important;
}
:root {
  --primary-color: #2563eb;
  --secondary-color: #8b5cf6;
  --dark-bg: #0f172a;
  --light-bg: #f1f5f9;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

.page-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
}

.container {
  /* max-width removido */
  margin: 0 auto;
  padding: 0;
}

.br-mobile {
  display: none;
}

/* ========================
   HAMBURGER + MOBILE MENU
======================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: #06102f;
  z-index: 500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.6rem 2rem;
  gap: 2rem;
  transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.mobile-menu.open {
  top: 0;
}

.mobile-menu-wa {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  background: #1ebe5d;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  width: auto;
  justify-content: center;
  transition: background 0.2s;
}

.mobile-menu-wa:hover {
  background: #1ebe5d;
}

.mobile-menu-socials {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: center;
  padding-top: 0.5rem;
}

.mobile-menu-socials a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.mobile-menu-socials a:hover {
  color: #fff;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-menu-logo .logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.mobile-menu-cta {
  width: 100%;
  text-align: center;
  font-size: 1rem !important;
  padding: 0.9rem 1.4rem !important;
  justify-content: center;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ========================
   NAVBAR
======================== */
.navbar {
  background: transparent;
  color: var(--white);
  padding: 1.2rem 0;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-42%);
  width: 100%;
  height: 320px;
  background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.55) 0%, rgba(59, 130, 246, 0.3) 45%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}

.container-nav {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--white);
  text-decoration: none;
}

.logo-icon {
  font-size: 1.6rem;
  background: var(--primary-color);
  border-radius: 8px;
  padding: 4px 8px;
}

.logo-text {
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

.logo-image {
  width: auto;
  height: 32px;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.language-selector {
  display: flex;
  gap: 0.4rem;
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  padding: 0.2rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.lang-btn.active,
.lang-btn:hover {
  opacity: 1;
}

.cta-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1ebe5d;
  color: var(--white);
  text-decoration: none;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 8px 28px rgba(37,211,102,0.2);
  position: relative;
  z-index: 0;
}

.cta-nav-button::after {
  display: none;
}

.cta-nav-button:hover {
  background: #1ebe5d;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.65), 0 12px 40px rgba(37,211,102,0.3);
}

.cta-nav-button:visited,
.cta-nav-button:focus,
.cta-nav-button:active,
.cta-button:visited,
.cta-button:focus,
.cta-button:active {
  text-decoration: none;
}

/* ========================
   HERO
======================== */
.hero {
  background: url('bg-hero-desktop2.jpg') center / cover no-repeat;
  color: var(--white);
  padding: 232px 0 80px;
  min-height: 95vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 0%, rgba(220, 80, 30, 0.45) 0%, transparent 65%),
    radial-gradient(circle at 15% 30%, rgba(59, 130, 246, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 100%;
  width: 100%;
  padding: 0 200px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
  position: relative;
}


.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease both;
  position: relative;
  z-index: 1;
}

.hero-content::after {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -25%;
  width: 70%;
  height: 1000px;
  background: radial-gradient(ellipse at left center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.55) 50%, transparent 80%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: none;
}

.hero-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.2s both;
  position: relative;
  z-index: 1;
}

.hero-content p.hero-lead-p {
  margin-bottom: 20px !important;
}

.hero-pillar-spacing {
  margin-top: 0.3rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1e3a8a;
  color: var(--white);
  padding: 1.1rem 2.4rem;
  font-size: 1.3rem;
  border: 1px solid rgba(99,179,255,0.15);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-style: normal;
  transition: all 0.3s ease;
  text-decoration: none;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(59,130,246,0.35), 0 8px 32px rgba(59,130,246,0.15);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-button svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.cta-subtext-mobile {
  display: none;
}

.cta-text-mobile {
  display: none;
}

.cta-text-desktop {
  font-size: 1.2rem;
}

.cta-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  border-color: #2563eb;
  box-shadow: 0 6px 24px rgba(59,130,246,0.55), 0 12px 48px rgba(59,130,246,0.25);
}

/* Clients strip */
.hero-clients-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.6s both;
  position: relative;
  z-index: 1;
}

.clients-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.clients-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.client-logo-placeholder {
  width: 80px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
}

/* ========================
   PAIN SECTION
======================== */
.pain-section {
  background: #f8fafc;
  padding: 30px 0 150px;
  color: var(--text-dark);
}

.pain-headline {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.mobile-br {
  display: none;
}

.pain-section-title {
  margin-top: 10rem;
  margin-bottom: 3rem;
}

.pain-tag {
  display: inline-block;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.pain-headline h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark-bg);
  margin-bottom: 1rem;
}

.pain-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

.highlight {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-red {
  background: linear-gradient(90deg, #ef4444, #f59e42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pain-divider {
  text-align: center;
  margin: 2rem 0 2.5rem;
  position: relative;
}

.pain-divider::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: rgba(0,0,0,0.1);
  margin: 0 auto 1rem;
}

.pain-divider span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.pain-grid {
    padding: 0 200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.pain-card {
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border: 1px solid #e2e8f0;
  background: var(--white);
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}

.pain-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 24px rgba(0,0,0,0.12);
}

.pain-card--red {
  border-color: #e2e8f0;
  background: var(--white);
}

.pain-card--orange {
  border-color: #e2e8f0;
  background: var(--white);
}

.pain-card-icon {
    font-size: 2.0rem;
}

.pain-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-bg);
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.pain-highlight-box {
  background: #fef2f2;
  border-left: 3px solid #ef4444;
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  color: #991b1b;
  line-height: 1.6;
}

.pain-people-section {
  background: #06102f;
  padding: 9rem 0 11rem;
}

/* ========================
   TRES PILARES
======================== */
 .tres-pilares {
  padding: 170px 200px 200px;
  background: #06102f;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tres-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tres-titulo {
  display: block;
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 52px;
  padding-bottom: 30px;
  color: #fff !important;
}

.tres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 640px) { .tres-grid { grid-template-columns: 1fr; } }

.tres-card {
  background: #101c3b;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s;
}

.tres-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.tres-card:hover { background: #132553; }

.tres-numero {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  opacity: 1;
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}

.tres-icon {
  font-size: 36px;
  line-height: 1;
}

.tres-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #F0F6FF;
  line-height: 1.2;
}

.tres-card p {
  font-size: 14px;
  color: #B0BECE;
  line-height: 1.65;
}

.tres-destaque {
  display: inline-block;
  background: rgb(29 0 255 / 8%);
  border: 1px solid rgb(0 116 255 / 25%);
  color: rgba(255,255,255,0.75) !important;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 24px;
  border-radius: 100px;
  margin-top: 4px;
}

.pain-people-want {
  text-align: center;
}

.pain-people-label {
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 3rem;
}

.highlight-light {
  color: #a78bfa;
}

.pain-wants-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.pain-want-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 2.8rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: transform 0.3s, background 0.3s;
}

.pain-want-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}

.scroll-indicator {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
  margin-top: -32px;
  margin-bottom: -32px;
}

.scroll-indicator-ball {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ========================
   SOLUTION SECTION
======================== */
.solution-section {
  background: #f8fafc;
  padding: 100px 0 80px;
  color: var(--text-dark);
}

.solution-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 3.5rem;
}

.solution-tag {
  display: inline-block;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.solution-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark-bg);
  margin-bottom: 1rem;
  white-space: nowrap;
}

.solution-header p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

.solution-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1;
  min-width: 380px;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 24px rgba(0,0,0,0.12);
}

.solution-card-icon {
  font-size: 2.4rem;
}

.solution-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark-bg);
  white-space: nowrap;
}

.solution-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.solution-chat-demo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.4rem 0;
}

.chat-bubble {
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 88%;
}

.chat-user {
  background: #eff6ff;
  color: #1e40af;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-ai {
  background: #f0fdf4;
  color: #15803d;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.solution-badge {
  display: inline-block;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  line-height: 1.4;
  margin-top: auto;
}

/* ========================
   CYCLE SECTION
======================== */
.cycle-section {
  background: #f8fafc;
  padding: 100px 0 80px;
  color: var(--text-dark);
}

.cycle-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 3.5rem;
}

.cycle-tag {
  display: inline-block;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.3);
  color: #7c3aed;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.cycle-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark-bg);
  margin-bottom: 1rem;
}

.cycle-header p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

.cycle-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.cycle-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cycle-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.cycle-step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 0 20px rgba(59,130,246,0.4);
}

.cycle-step-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex: 1;
}

.cycle-step-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.cycle-step-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-bg);
  margin-bottom: 0.4rem;
}

.cycle-step-content > div > p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.cycle-features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.cycle-features span {
  font-size: 0.88rem;
  color: var(--text-light);
}

.cycle-highlight-box {
  background: #eff6ff;
  border-left: 3px solid #3b82f6;
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  color: #1e40af;
  line-height: 1.6;
}

.cycle-connector {
  text-align: center;
  color: rgba(0,0,0,0.2);
  font-size: 1.6rem;
  padding: 0.4rem 0;
  line-height: 1;
}

.cycle-tag-inline {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}

.cycle-sub-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.cycle-sub-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.2rem;
}

.cycle-sub-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cycle-sub-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark-bg);
  margin-bottom: 0.3rem;
}

.cycle-sub-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Chat bubbles override for light background (cycle section) */
.cycle-section .chat-ai {
  background: #dcfce7;
  color: #14532d;
}

/* ========================
   CLOSING SECTION
======================== */
/* PRÓXIMO PASSO */
.next-step-section {
  background: #06102f;
  padding: 170px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.next-step-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.next-step-section .section-label {
  background: transparent;
  border: none;
  color: #60a5fa;
  margin-bottom: 2rem;
}

.next-step-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.next-step-title em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.next-step-desc {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.next-step-desc strong {
  color: #fff;
}

.next-step-cta {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.next-step-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

.next-step-section .cta-button,
.hero .cta-button {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #4f8dff 0%, #2f6dff 100%);
  border: none;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(255,255,255,0.18);
  box-shadow: 0 8px 24px rgba(79,141,255,0.38), 0 16px 44px rgba(47,109,255,0.24);
  padding: 1.4rem 3rem;
  border-radius: 12px;
  animation: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1), transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.next-step-section .cta-button.cta-visible,
.hero .cta-button.cta-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hero .cta-button:hover,
.next-step-section .cta-button:hover {
  background: linear-gradient(135deg, #66a3ff 0%, #3f7dff 100%);
  border: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(102,163,255,0.5), 0 18px 52px rgba(63,125,255,0.32);
}

.closing-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 60%);
  padding: 100px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.closing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(59,130,246,0.25) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(139,92,246,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.closing-tag {
  display: inline-block;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.35);
  color: #60a5fa;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.closing-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1rem;
}

.closing-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.closing-cta-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.closing-cta-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

.closing-cta-box > p:not(.closing-cta-label):not(.closing-cta-small) {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

.closing-cta-small {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin: 0;
}

.cta-button--large {
  font-size: 1rem;
  padding: 1.1rem 2rem;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ========================
   PORTFOLIO
======================== */
.portfolio h2 {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  color: var(--dark-bg);
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.portfolio-card-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.portfolio-card-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  flex: 1;
}

.portfolio-card-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  flex-shrink: 0;
}

.portfolio-card-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--dark-bg);
}

.portfolio-card-author span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

.portfolio-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* ========================
   WHY TECH
======================== */
.why-tech {
  background: var(--dark-bg);
  padding: 100px 0;
}

.why-tech-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-tech h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.why-tech p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* ========================
   SERVICES
======================== */
.services {
  padding: 100px 0;
  background: var(--light-bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-bg);
  letter-spacing: 0.3px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================
   SECTORS
======================== */
.sectors {
  padding: 100px 0;
  background: var(--white);
}

.sectors h2 {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark-bg);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sectors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.sector-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--light-bg);
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-bg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.sector-item:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.sector-icon {
  font-size: 1.1rem;
}

/* ========================
   TECH STACK
======================== */
.tech-stack {
  padding: 100px 0;
  background: var(--dark-bg);
}

.tech-stack h2 {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.tech-stack .section-sub {
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.7rem 1.3rem;
  border-radius: 50px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
}

.tech-item:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}

.tech-icon {
  font-size: 1.1rem;
}

/* ========================
   TEAM CTA
======================== */
.team-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  position: relative;
  overflow: hidden;
}

.team-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(59,130,246,0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(139,92,246,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.team-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.team-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* ========================
   FOOTER
======================== */
.footer {
  background: #06102f;
  color: rgba(255,255,255,0.55);
  padding: 2.8rem 200px 7rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 700px 400px at 78% 0%, rgba(225, 145, 20, 0.38) 0%, transparent 70%),
    radial-gradient(ellipse 600px 380px at 58% 15%, rgba(90, 80, 210, 0.30) 0%, transparent 70%),
    radial-gradient(ellipse 800px 500px at 50% 0%, rgba(120, 40, 180, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  justify-self: start;
}

.footer-contact {
  justify-self: center;
}

.footer-socials {
  justify-self: end;
}

/* Brand / logo */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand-icon {
  width: 42px;
  height: 42px;
  background: #1d4ed8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-brand-text {
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.footer-logo-image {
  width: auto;
  height: 34px;
  display: block;
}

/* Contact links */
.footer-contact {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 1.15rem;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}

.footer-contact-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.footer-contact-item:hover {
  color: #ffffff;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social-icon {
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-social-icon svg {
  width: 26px;
  height: 26px;
}

.footer-social-icon:hover {
  color: #ffffff;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 2rem 0 1.4rem;
  position: relative;
  z-index: 1;
}

/* Bottom row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  position: relative;
  z-index: 1;
}

.footer-bottom strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* ========================
   ANIMATIONS
======================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================
   PILLARS SECTION
======================== */
.pillars-section {
  background: #ffffff;
  padding: 180px 0 160px;
  color: var(--text-dark);
}

.pillars-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.pillars-label {
  display: table;
  margin: 0 auto 1.2rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.pillars-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-bg);
  margin-bottom: 3rem;
  text-align: center;
}

.pillars-intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
}

.pillar {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 56px 0;
  align-items: start;
  position: relative;
}

.pillars-list {
  position: relative;
}

.pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 112px;
  bottom: -84px;
  width: 2px;
  background: linear-gradient(180deg, #3b82f6, #8b5cf6);
  z-index: 0;
}

.pillar-num {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pillar-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 0.6rem;
}

.pillar-content > p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.pillar-tag {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
}

.pillar-hl {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #3b82f6;
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

.pillar-hl strong {
  color: var(--dark-bg);
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 768px) {

  .br-mobile {
    display: block;
  }

  /* ── GLOBAL HEADINGS ── */
  h2 {
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.65rem !important;
    font-weight: 600;
    line-height: 1.2;
  }

  /* ── GLOBAL ── */
  .container {
    padding: 0 20px;
    margin: 0;
  }

  .container-nav {
    padding: 0 20px;
    margin: 0;
  }

  /* ── NAVBAR ── */
  .navbar {
    position: absolute;
    top: 0 !important;
    padding: 1rem 0;
    background: transparent;
    transition: background 0.3s ease;
  }

  .logo-brand {
    font-size: 1.05rem;
    gap: 0.55rem;
    transform: translateY(3px);
  }

  .logo-icon {
    font-size: 1.2rem;
    padding: 3px 7px;
  }

  .logo-image {
    height: 24px;
  }

  .navbar.menu-open {
    position: fixed;
    background: rgba(6, 16, 47, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .nav-links {
    display: none;
  }

  .nav-links-desktop {
    display: none !important;
  }

  .cta-nav-whats { display: none; }

  .cta-nav-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-menu-overlay {
    display: block;
  }

  /* ── HERO ── */
  .hero {
    padding: 105px 0 60px;
    min-height: 100svh;
    align-items: flex-start;
    background-image: url('bg-hero-__mobile.jpg');
    background-size: cover;
    background-position: center center;
  }

  .hero-container {
    padding: 0 40px;
    gap: 2rem;
  }

  .hero-content {
    gap: 2rem;
    align-items: center;
    text-align: center;
    margin-top: 22px;
  }

  .hero-content h1 {
    font-size: 1.68rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 0;
    text-align: center;
  }

  .hero-content p {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .hero-lead-p {
    margin-top: 0.5rem !important;
  }

  .hero-content p.hero-lead-p {
    font-size: 1.15rem !important;
    margin-bottom: 15px !important;
  }

  .hero-pillar-spacing {
    margin-top: 0.5rem !important;
  }

  .hero-content > div:has(.hero-lead-p) {
    padding-bottom: 0rem;
  }

  .cta-button {
    align-self: stretch;
    justify-content: center;
    font-size: 0.95rem;
    padding: 14px 20px;
    margin-top: 8px !important;
  }

  .hero .cta-button {
    align-self: center;
    padding: 14px 22px !important;
  }

  .hero .cta-button svg {
    width: 26px;
    height: 26px;
  }

  .cta-text-desktop {
    display: none;
  }

  .cta-text-mobile {
    display: inline;
  }

  .hero-content .cta-subtext-mobile,
  .next-step-cta .cta-subtext-mobile {
    display: block;
    color: #ffffff;
    font-size: 0.95rem !important;
    font-family: 'Syne', sans-serif;
    font-weight: 600 !important;
    text-align: center;
    margin-top: -14px;
    opacity: 1;
    text-shadow:
      0 0 4px rgba(0,0,0,1),
      0 0 8px rgba(0,0,0,1),
      0 0 16px rgba(0,0,0,1),
      0 0 30px rgba(0,0,0,1),
      0 0 50px rgba(0,0,0,1),
      0 0 80px rgba(0,0,0,1),
      0 0 120px rgba(0,0,0,1),
      0 0 180px rgba(0,0,0,1),
      0 0 250px rgba(0,0,0,1),
      0 0 350px rgba(0,0,0,1),
      0 0 500px rgba(0,0,0,1),
      4px 4px 20px rgba(0,0,0,1),
      -4px -4px 20px rgba(0,0,0,1),
      4px -4px 20px rgba(0,0,0,1),
      -4px 4px 20px rgba(0,0,0,1),
      8px 8px 40px rgba(0,0,0,1),
      -8px -8px 40px rgba(0,0,0,1),
      8px -8px 40px rgba(0,0,0,1),
      -8px 8px 40px rgba(0,0,0,1),
      0 0 3px rgba(255,255,255,1),
      0 0 6px rgba(255,255,255,1),
      0 0 10px rgba(255,255,255,0.9),
      1px 1px 3px rgba(255,255,255,0.8),
      -1px -1px 3px rgba(255,255,255,0.8);
  }

  .next-step-cta .cta-subtext-mobile {
    text-shadow: none;
  }

  /* ── SCROLL INDICATOR ── */
  .scroll-indicator {
    margin-top: -30px;
    margin-bottom: -30px;
  }

  /* ── PAIN SECTION ── */
  .mobile-br { display: inline; }

  .chatbot-claim {
    font-size: 1.2rem !important;
  }

  .chat-demo-section p.chatbot-claim {
    font-size: 1.2rem !important;
    text-align: center !important;
  }

  .pain-section {
    padding: 96px 0 100px;
  }

  .cycle-header {
    padding: 0 20px;
    margin-bottom: 2rem !important;
  }

  .cycle-header h2 {
    font-size: 1.65rem !important;
    margin-top: 0 !important;
    margin-bottom: 2rem !important;
    white-space: normal !important;
  }

  .pain-section-title {
    margin-top: 1.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .cycle-header p {
    white-space: normal !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 66px !important;
  }

  .pain-grid {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 2.7rem;
  }

  .pain-card {
    padding: 1.5rem;
  }

  .pain-headline h2,
  .solution-header h2 {
    font-size: 1.65rem;
  }

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

  /* ── 3 PILARES ── */
  .tres-pilares {
    padding: 140px 20px 160px;
  }

  .tres-titulo {
    font-size: 1.65rem;
    margin-bottom: 56px;
    padding-bottom: 14px;
  }

  .tres-grid {
    grid-template-columns: 1fr;
    gap: 2.7rem;
  }

  .tres-card {
    padding: 24px 18px;
  }

  .tres-numero {
    font-size: 38px;
  }

  .tres-card h3 {
    font-size: 17px;
  }

  /* ── CHAT DEMO SECTIONS ── */
  .chat-demo-section {
    padding: 150px 0 0 !important;
    text-align: left;
  }

  .chat-demo-section--last {
    padding-bottom: 150px !important;
  }

  .chat-demo-section .section-label {
    margin-bottom: 2rem !important;
    display: inline-block !important;
  }

  .chat-demo-section .container {
    margin: 0 !important;
    padding: 0 20px;
  }

  .chat-demo-section h2 {
    font-size: 1.65rem !important;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 3rem !important;
  }

  .chat-demo-section .section-intro,
  .chat-demo-section p.section-intro {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 100%;
  }

  .chat-demo-section .section-intro--tight {
    margin-bottom: 3rem !important;
  }

  .chat-demo-section p[style*="font-size:1.3rem"],
  .chat-demo-section p[style*="font-size: 1.3rem"] {
    font-size: 1rem !important;
    text-align: left;
  }

  .chat-demo-section p.chatbot-claim {
    font-size: 1.2rem !important;
    text-align: center !important;
  }

  .chat-demo-row {
    flex-direction: column !important;
    gap: 48px !important;
    align-items: center !important;
  }

  .chat-demo-cards {
    width: 100% !important;
    flex: 0 0 auto !important;
    padding-top: 0 !important;
  }

  .chat-window {
    max-width: 100%;
    min-width: unset;
    width: 100%;
    flex: none !important;
  }

  .chat-window .chat-body {
    padding: 16px 14px;
    gap: 10px;
  }

  .chat-window .msg {
    font-size: 13px;
    padding: 10px 13px;
    max-width: 90%;
  }

  .chat-feature-card {
    padding: 1.2rem;
  }

  /* ── PILLARS SECTION ── */
  .pillars-section {
    padding: 100px 0 120px;
  }

  .pillars-section .container {
    margin: 0 !important;
    padding: 0 20px;
  }

  .pillars-label {
    margin-top: 3rem !important;
    margin-bottom: 1.8rem !important;
  }

  .pillars-title {
    font-size: 1.65rem;
    margin-bottom: 3rem !important;
  }

  .pillars-intro {
    margin-bottom: 3rem !important;
  }

  .pillar {
    grid-template-columns: 46px 1fr;
    gap: 20px;
    padding: 28px 0;
  }

  .pillar-num {
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 10px;
  }

  .pillar:not(:last-child)::after {
    left: 22px;
    top: 74px;
    bottom: -56px;
  }

  .pillar-tags {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* ── NEXT STEP SECTION ── */
  .next-step-section {
    padding: 150px 20px 150px;
  }

  .next-step-title {
    font-size: 1.65rem !important;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .next-step-desc {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .next-step-cta .cta-button {
    align-self: center;
    justify-content: center;
    text-align: center;
    padding: 14px 28px !important;
  }

  .next-step-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  /* ── CYCLE SECTION ── */
  .cycle-section {
    padding: 56px 0;
  }

  .cycle-step {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.4rem;
  }

  .cycle-step-content {
    flex-direction: column;
    gap: 0.6rem;
  }

  .cycle-step-number {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .cycle-sub-cards {
    gap: 3.6rem;
  }

  .cycle-sub-card {
    padding: 1rem;
  }

  /* ── CLOSING SECTION ── */
  .closing-section {
    padding: 60px 0;
  }

  .closing-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .closing-text h2 {
    font-size: 1.65rem;
  }

  .closing-cta-box {
    padding: 1.5rem;
    gap: 1rem;
  }

  .cta-button--large {
    font-size: 0.88rem;
    padding: 1rem 1.4rem;
    text-align: center;
  }

  /* ── FOOTER ── */
  .footer {
    padding: 6rem 1.4rem 3rem;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding-bottom: 5rem;
  }

  .footer-brand,
  .footer-contact,
  .footer-socials {
    justify-self: unset;
  }

  .footer-brand {
    margin-bottom: 1.5rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.9rem;
    align-items: center;
  }

  .footer-contact-item {
    font-size: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
  }

  /* ── MISC ── */
  .pain-wants-row {
    flex-direction: column;
    align-items: center;
  }

  .solution-card {
    min-width: unset;
  }
}

/* ── CHAT DEMO SECTION (copied from petshop) ── */
.chat-demo-section {
  padding: 170px 0 170px;
  background: #f8fafc;
  color: var(--text-dark);
  text-align: center;
}

.chat-demo-section .container {
  margin: 0 200px;
  max-width: unset;
}

.chat-demo-section .section-label {
  display: inline-block;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.chat-demo-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 3rem;
  color: var(--dark-bg);
}

.chat-demo-section .section-intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 1000px;
  margin: 0 auto 7rem;
}

.chat-demo-section .section-intro--tight {
  margin-bottom: 1.5rem;
}

.chat-demo-section .section-intro--strong {
  margin-bottom: 3.5rem;
}

.chat-window {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 12px rgba(0,0,0,0.08);
  max-width: 520px;
  flex: 1;
  min-width: 280px;
}

.chat-window .chat-header {
  background: #FFF;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.chat-window .chat-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), transparent);
  z-index: 3;
  pointer-events: none;
}

.chat-window .chat-avatar {
  width: 38px;
  height: 38px;
  background: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.chat-window .chat-info { flex: 1; }
.chat-window .chat-name { font-size: 14px; font-weight: 600; color: var(--dark-bg); }
.chat-window .chat-status { font-size: 11px; color: #1e40af; }

.chat-window .chat-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  background-image: url('bg_whats.png');
  background-size: cover;
  background-position: center;
  border-radius: 0 0 16px 16px;
  overflow-y: auto;
  max-height: 740px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.22) transparent;
}

.chat-window .chat-body::-webkit-scrollbar {
  width: 6px;
}

.chat-window .chat-body::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.04);
  border-radius: 4px;
}

.chat-window .chat-body::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.22);
  border-radius: 4px;
}

.chat-window .chat-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.35);
}

.chat-window .msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  animation: msgIn 0.4s ease both;
  animation-play-state: paused;
  opacity: 0;
}

.chat-window.in-view .msg {
  animation-play-state: running;
}

@keyframes msgIn { from{opacity:0;transform:scale(.95)} to{opacity:1;transform:scale(1)} }

.chat-window .msg.agent {
  background: #d9fdd3;
  color: #15803d;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
  text-align: left;
}

.chat-window .msg.user {
  background: #FFF;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: #1e40af;
  text-align: left;
}

.chat-window .msg-time { font-size: 10px; opacity: 0.5; margin-top: 4px; display: block; }

.chat-window .msg.agent .msg-time { text-align: right; }

.chat-window .msg.user .msg-time { text-align: left; }

.chat-feature-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 12px rgba(0,0,0,0.08);
  text-align: left;
}

.chat-feature-card .feature-label {
  font-size: 0.75rem;
  color: #1e40af;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.chat-feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6d28d9;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(109,40,217,0.45), 0 8px 28px rgba(109,40,217,0.2);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  pointer-events: none;
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#backToTop:hover {
  background: #5b21b6;
  transform: translateY(-3px);
}
