/* ==========================================
   GLOBAL STYLES
   ========================================== */

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 7rem;
}

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

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 11vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 6.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 2rem;
}

h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.005em;
}

h3 .premium-accent {
  color: var(--teal);
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  opacity: 1;
}

.highlight {
  font-style: italic;
  color: var(--muted-foreground);
  font-weight: 500;
}

.premium-accent {
  color: var(--teal);
  font-weight: 600;
}

/* ==========================================
   LAYOUT
   ========================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: clamp(5rem, 12vw, 7rem) 0;
  position: relative;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

header {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem;
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1400px;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-base);
  padding: 0 var(--spacing-lg);
}

header:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.8);
}

header .container {
  padding: 0;
}

header .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  right: calc(var(--spacing-lg) + 2rem) !important;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem var(--spacing-lg);
  position: relative;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: transform var(--transition-base);
  position: absolute;
  left: var(--spacing-lg);
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 36px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
  transition: all var(--transition-base);
  position: relative;
  padding: 0.5rem 0;
}

nav a:hover,
nav a.active {
  color: var(--teal);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--navy-deep));
  transition: width var(--transition-base);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  nav ul {
    gap: 1.5rem;
  }

  nav a {
    font-size: 0.8rem;
  }
}

@media (max-width: 1180px) {
  nav ul {
    gap: 1.25rem;
  }

  header .btn {
    display: none;
  }
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left var(--transition-base);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  border: 2px solid rgba(11, 154, 160, 0.4);
  box-shadow: 0 12px 36px rgba(11, 154, 160, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(11, 154, 160, 0.35);
  border-color: rgba(11, 154, 160, 0.6);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.btn-secondary {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background-color: var(--cream);
  border-color: var(--teal);
  color: var(--teal);
}

/* ==========================================
   CARDS & BOXES
   ========================================== */

.card {
  padding: 2.5rem;
  border: 1px solid var(--hairline);
  border-radius: 1.5rem;
  background: var(--background);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 154, 160, 0.15);
  border-color: rgba(11, 154, 160, 0.3);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  font-family: var(--font-body);
  color: var(--navy);
  margin-top: 1rem;
  font-weight: 600;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}

.card p {
  min-height: 3.5rem;
  display: flex;
  align-items: center;
}

h1 span,
h2 span {
  font-style: inherit;
}

h1 .premium-accent,
h2 .premium-accent {
  color: var(--teal);
  font-weight: 600;
}

h1 .highlight,
h2 .highlight {
  font-style: italic;
  color: var(--muted-foreground);
  font-weight: 500;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-soft) 0%, rgba(11, 154, 160, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition-base);
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-deep) 100%);
  color: white;
  transform: scale(1.1);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(2rem, 4vw, 5rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(600px, 620px) minmax(520px, 560px);
  justify-content: space-between;
  column-gap: clamp(7rem, 10vw, 12rem);
  align-items: start;
  padding: 1.5rem 0 clamp(4rem, 10vw, 8rem) 0;
}

.hero-content {
  justify-self: start;
  max-width: 650px;
}

.hero > div:last-child {
  justify-self: end;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-content p {
  font-size: 1.1875rem;
  line-height: 1.75;
  max-width: 550px;
  color: var(--foreground);
  font-weight: 400;
}

.hero-image {
  position: relative;
  border-radius: 3rem;
  overflow: visible;
  box-shadow: 0 30px 60px rgba(26, 58, 82, 0.2);
}

.hero-image img {
  border-radius: 3rem;
  width: 100%;
  height: auto;
  display: block;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 154, 160, 0.1) 0%, rgba(26, 58, 82, 0.1) 100%);
  z-index: 1;
  border-radius: 3rem;
}

@media (max-width: 1200px) {
  .hero-container {
    max-width: 1200px;
  }

  .hero {
    grid-template-columns: minmax(520px, 0.85fr) minmax(480px, 1fr);
    column-gap: clamp(5rem, 8vw, 8rem);
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(480px, 0.8fr) minmax(440px, 1fr);
    column-gap: clamp(4rem, 6vw, 6rem);
  }

  .hero-content {
    max-width: 600px;
  }
}

/* Centered hero for secondary pages (digestivo, obesidade, longevidade) */
.hero.hero-center {
  grid-template-columns: 1fr;
  justify-items: center;
  column-gap: 0;
}

.hero.hero-center .hero-content {
  justify-self: center;
  text-align: center;
  max-width: 100%;
}

.hero.hero-center h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero.hero-center .hero-content p {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}


@media (max-width: 1200px) {
  .hero.hero-center {
    justify-items: center;
  }
}

@media (max-width: 1024px) {
  .hero.hero-center {
    justify-items: center;
  }
}

@media (max-width: 768px) {
  .hero-container {
    max-width: 100%;
    padding: 0 var(--spacing-lg);
  }

  .hero {
    grid-template-columns: 1fr;
    row-gap: 3rem;
    padding: 3rem 0;
    column-gap: 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    aspect-ratio: 3 / 4;
  }
}

/* ==========================================
   GRID LAYOUTS
   ========================================== */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

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

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

/* ==========================================
   SECTION BACKGROUNDS
   ========================================== */

.section-cream {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(245, 241, 237, 0.5) 100%);
}

.section-cream h1,
.section-cream h2 {
  font-family: var(--font-serif);
}

.section-navy {
  background: linear-gradient(90deg, #1a3a52 0%, #1a4a5f 50%, #1a3a52 100%);
  background-size: 200% 200%;
  animation: gradientFlow 18s ease-in-out infinite;
  color: white;
}

.section-navy h1,
.section-navy h2,
.section-navy h3 {
  color: white;
}

.section-navy h1,
.section-navy h2 {
  font-family: var(--font-serif);
}

.section-navy p {
  color: rgba(255, 255, 255, 0.85);
}

.section-navy .premium-accent {
  color: rgba(11, 154, 160, 0.8);
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  z-index: 1000;
  box-shadow: 0 0 12px rgba(11, 154, 160, 0.4);
  transition: width 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-deep) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 100;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 8px 24px rgba(11, 154, 160, 0.25);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11, 154, 160, 0.35);
}

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

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

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 12px 40px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 12px 40px rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 12px 40px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  z-index: 99;
  animation: pulseWhatsapp 2.5s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
}

/* ==========================================
   UNITS GRID
   ========================================== */

.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.unit-card {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(11, 154, 160, 0.35);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.04) 100%), radial-gradient(circle at 30% 40%, rgba(11, 154, 160, 0.12) 0%, transparent 60%);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 12px rgba(11, 154, 160, 0.08);
  text-decoration: none;
  color: inherit;
  cursor: default;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.unit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.unit-card:hover {
  border-color: rgba(11, 154, 160, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%), radial-gradient(circle at 30% 40%, rgba(11, 154, 160, 0.18) 0%, transparent 60%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 18px rgba(11, 154, 160, 0.18);
  transform: translateY(-4px);
}

.unit-card:hover::before {
  opacity: 1;
}

.unit-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0;
}

.unit-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: -0.015em;
}

.unit-state {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.8;
  white-space: nowrap;
}

.unit-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0.5rem 0;
}

.unit-address svg {
  min-width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.unit-map {
  width: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.unit-map iframe {
  display: block;
}

.unit-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.unit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 0.8rem;
  border: 1px solid;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex: 1;
}

.unit-btn-whatsapp {
  border-color: rgba(11, 154, 160, 0.6);
  color: white;
  background: linear-gradient(135deg, rgba(11, 154, 160, 0.25) 0%, rgba(11, 154, 160, 0.15) 100%);
  box-shadow: 0 4px 12px rgba(11, 154, 160, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.unit-btn-whatsapp:hover {
  background: linear-gradient(135deg, rgba(11, 154, 160, 0.35) 0%, rgba(11, 154, 160, 0.22) 100%);
  border-color: rgba(11, 154, 160, 0.8);
  box-shadow: 0 8px 24px rgba(11, 154, 160, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  color: white;
}

.unit-btn-map {
  border: 1px solid rgba(11, 154, 160, 0.4);
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
}

.unit-btn-map:hover {
  border-color: rgba(11, 154, 160, 0.7);
  background: rgba(11, 154, 160, 0.08);
  box-shadow: 0 4px 12px rgba(11, 154, 160, 0.08);
  color: white;
  transform: translateY(-1px);
}

.unit-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  .units-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .units-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .unit-card {
    padding: 1.5rem;
  }

  .unit-header h3 {
    font-size: 1.25rem;
  }

  .unit-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .unit-btn {
    flex: 1;
  }

  .units-grid {
    gap: 2rem;
    margin-top: 2.5rem;
  }
}

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

footer {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

footer h4 {
  font-family: var(--font-serif);
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition-base);
  position: relative;
}

footer a:hover {
  color: var(--teal);
  padding-left: 0.5rem;
}

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ==========================================
   BLIND SPOT SYMPTOMS (MINIMALISTA)
   ========================================== */

.blind-spot-symptoms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
}

.blind-symptom {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(11, 154, 160, 0.2);
  border-radius: 0.75rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  transition: all var(--transition-base);
}

.blind-symptom:hover {
  border-color: var(--teal);
  background: rgba(11, 154, 160, 0.05);
  color: var(--teal);
}

@media (max-width: 768px) {
  .blind-spot-symptoms {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .blind-symptom {
    padding: 1.25rem;
    font-size: 0.9rem;
  }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.journey-timeline-unified {
  filter: drop-shadow(0 0 6px rgba(11, 154, 160, 0.4));
}

.reveal {
  animation: fadeInUp 0.7s ease-out forwards;
  opacity: 0;
}

.reveal-delay-1 {
  animation-delay: 0.15s;
}

.reveal-delay-2 {
  animation-delay: 0.3s;
}

.reveal-delay-3 {
  animation-delay: 0.45s;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted-foreground);
}

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }

/* ==========================================
   FORMS
   ========================================== */

input[type="email"],
input[type="text"],
textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--hairline);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-base);
  background: white;
}

input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 154, 160, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Animated gradient for CTA section */
@keyframes gradientFlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.section-animated-cta {
  background: linear-gradient(90deg, #1a3a52 0%, #1a4a5f 50%, #1a3a52 100%);
  background-size: 200% 200%;
  animation: gradientFlow 18s ease-in-out infinite;
}

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

@media (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-md);
  }

  .section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h2 span[style*="white-space: nowrap"] {
    white-space: normal !important;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  nav ul {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 0;
  }

  .card {
    padding: 1.5rem;
  }

  nav ul {
    display: none;
  }
}

/* ========================================
   JOURNEY VISUALIZATION - JORNADA VISUAL
   ======================================== */

.section-journey {
  position: relative;
}

.section-journey .eyebrow {
  letter-spacing: 0.15em;
  font-size: 0.75rem;
}

/* Spacing between journey sections */
.section-journey + .section-journey {
  padding-top: clamp(4rem, 10vw, 6rem);
}

/* Subtle line connector between sections */
.section-cream.section-journey::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 154, 160, 0.2), transparent);
  pointer-events: none;
}

.section:not(.section-cream).section-journey::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 154, 160, 0.15), transparent);
  pointer-events: none;
}

/* ========================================
   SEÇÃO PASSO 02 - INVESTIGAÇÃO PREMIUM
   ======================================== */

.section-passo-02 {
  position: relative;
}

.headline-premium {
  color: var(--teal);
  font-weight: 600;
  font-family: var(--font-serif);
}

.investigacao-subtitle {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Grid Premium para Investigação */
.grid-investigacao {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 0.5rem;
}

/* Card Investigação Premium */
.card-investigacao {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(245, 241, 237, 0.3) 100%);
  border: 1px solid rgba(11, 154, 160, 0.1);
  border-radius: 1.75rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card-investigacao::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(11, 154, 160, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.card-investigacao:hover {
  border-color: rgba(11, 154, 160, 0.25);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(245, 241, 237, 0.5) 100%);
  box-shadow: 0 8px 32px rgba(11, 154, 160, 0.08);
  transform: translateY(-2px);
}

.card-investigacao:hover::before {
  opacity: 1;
}

.card-investigacao > * {
  position: relative;
  z-index: 1;
}

/* Ícone Premium */
.card-inv-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all 0.4s ease;
}

.card-investigacao:hover .card-inv-icon {
  transform: scale(1.1) rotate(2deg);
}

.card-inv-icon svg {
  width: 100%;
  height: 100%;
}

/* Conteúdo Card */
.card-inv-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-inv-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  font-family: var(--font-serif);
}

.card-inv-desc {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.85;
}

/* CTA Investigação */
.btn-investigacao {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 8px 24px rgba(11, 154, 160, 0.2);
  text-decoration: none;
}

.btn-investigacao:hover {
  background: var(--teal);
  box-shadow: 0 12px 36px rgba(11, 154, 160, 0.3);
  transform: translateY(-2px);
}

.btn-investigacao:active {
  transform: translateY(0);
}

/* ========================================
   SEÇÃO PASSO 03 - ESTRUTURA INTEGRADA PREMIUM
   ======================================== */

.section-passo-03 {
  position: relative;
}

/* Headline Premium para Passo 03 */
.estrutura-subtitle {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Grid Premium para Pilares */
.grid-estrutura {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 0.5rem;
  position: relative;
}

/* Card Pilar Premium */
.card-pilar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(245, 241, 237, 0.4) 100%);
  border: 1px solid rgba(11, 154, 160, 0.12);
  border-radius: 1.75rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.card-pilar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(11, 154, 160, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.card-pilar:hover {
  border-color: rgba(11, 154, 160, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(245, 241, 237, 0.6) 100%);
  box-shadow: 0 12px 40px rgba(11, 154, 160, 0.1);
  transform: translateY(-3px);
}

.card-pilar:hover::before {
  opacity: 1;
}

.card-pilar > * {
  position: relative;
  z-index: 1;
}

/* Ícone Pilar Premium */
.pilar-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all 0.4s ease;
}

.card-pilar:hover .pilar-icon {
  transform: scale(1.12) rotate(-3deg);
}

.pilar-icon svg {
  width: 100%;
  height: 100%;
}

/* Conteúdo Pilar */
.pilar-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Título Pilar */
.pilar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  font-family: var(--font-serif);
}

/* Descrição Pilar */
.pilar-desc {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.65;
  font-weight: 400;
  opacity: 0.85;
}

/* CTA Pilar */
.pilar-cta {
  color: var(--teal);
  font-weight: 600;
  margin-top: 0.75rem;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.card-pilar:hover .pilar-cta {
  color: var(--teal);
  transform: translateX(4px);
}

/* ========================================
   SEÇÃO PASSO 04 - PRECISÃO TECNOLÓGICA PREMIUM
   ======================================== */

.section-passo-04 {
  position: relative;
}

/* Container para Conexões */
/* SVG Conexões e Progresso - Editorial elegante e orgânica */
.tech-connections-svg-layer {
  opacity: 1;
}

/* Fluxo Editorial - Linhas suaves e orgânicas */
.tech-connector {
  stroke: rgba(11, 154, 160, 0.1);
  stroke-width: 0.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke 0.6s ease-out, stroke-width 0.6s ease-out;
  opacity: 0.45;
}

/* Estado ATIVO - Destaque sutil e elegante */
.tech-connector.active {
  stroke: rgba(11, 154, 160, 0.28);
  stroke-width: 0.8;
  opacity: 0.95;
}

.tech-connections-container {
  position: relative;
  margin-bottom: 0;
  overflow: visible;
}

/* SVG Conexões - Fallback (antigo) */
.tech-connections-svg {
  opacity: 0.5;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.320, 1), filter 0.4s ease;
}



/* Grid 2x2 Tecnologias - BASE VISUAL */
.grid-tecnologias-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

/* Card Tecnologia - Premium integrado e elegante com glassmorphism */
.card-tecnologia {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 241, 237, 0.55) 100%);
  border: 1.15px solid rgba(11, 154, 160, 0.15);
  border-radius: 1.75rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(11, 154, 160, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
}

.card-tecnologia:hover {
  border-color: rgba(11, 154, 160, 0.25);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 241, 237, 0.65) 100%);
  box-shadow: 0 12px 32px rgba(11, 154, 160, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.card-tecnologia > * {
  position: relative;
  z-index: 1;
}

/* Ícone Tecnologia - Refinado e elegante */
.tech-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(11, 154, 160, 0.9);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  flex-shrink: 0;
  opacity: 0.95;
}

.card-tecnologia:hover .tech-icon {
  transform: scale(1.1) rotate(-1.5deg);
  filter: drop-shadow(0 3px 10px rgba(11, 154, 160, 0.18));
  color: var(--teal);
  opacity: 1;
}

.tech-icon svg {
  width: 100%;
  height: 100%;
}

/* Conteúdo Tecnologia */
.tech-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Nome Tecnologia - Título elegante e forte da jornada */
.tech-name {
  font-size: 1.32rem;
  font-weight: 760;
  color: var(--navy);
  line-height: 1.32;
  font-family: var(--font-serif);
  margin: 0;
  letter-spacing: -0.2px;
  transition: color 0.45s ease, text-shadow 0.45s ease;
}

.card-tecnologia:hover .tech-name {
  color: var(--teal);
  text-shadow: 0 0 12px rgba(11, 154, 160, 0.12);
}

/* Benefício Tecnologia - Descrição legível e refinada */
.tech-benefit {
  font-size: 0.94rem;
  color: #3f5f7f;
  line-height: 1.72;
  font-weight: 400;
  opacity: 0.72;
  margin: 0;
  transition: opacity 0.45s ease;
}

.card-tecnologia:hover .tech-benefit {
  opacity: 0.88;
}

/* Responsividade */
@media (max-width: 1024px) {
  .grid-tecnologias-2x2 {
    gap: 2rem;
  }

  .card-tecnologia {
    padding: 2.75rem;
  }

  .tech-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .grid-tecnologias-2x2 {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 0;
  }

  .card-tecnologia {
    padding: 2.5rem;
    gap: 1.5rem;
  }

  .tech-icon {
    width: 64px;
    height: 64px;
  }

  .tech-name {
    font-size: 1.15rem;
  }

  .tech-benefit {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .cta-convergencia-tech {
    padding: 3rem 2rem;
  }

  .btn-cta-tech-final {
    padding: 1.1rem 2.5rem;
    font-size: 0.98rem;
  }
}

/* ==========================================
   SEÇÃO PASSO 05 - TIMELINE PREMIUM
   ========================================== */

.section-passo-05 {
  position: relative;
}

/* Timeline Container */
.journey-timeline-container {
  position: relative;
  margin-bottom: 4rem;
  overflow: visible;
}

/* SVG Timeline Conectora - Premium e Visível */
.journey-timeline-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  pointer-events: none;
  z-index: 1;
}

/* LINHA HORIZONTAL PRINCIPAL - À PROVA DE ALTERAÇÕES */
.journey-main-line {
  transition: none !important;
  pointer-events: none !important;
}

/* CONECTORES - Transições suaves */
.timeline-branch {
  transition: opacity 0.3s ease, stroke 0.3s ease;
}

/* NODES - Transições elegantes */
.timeline-dot {
  transition: opacity 0.3s ease, r 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

/* ENDPOINTS - Cantos arredondados dos branches */
.timeline-endpoint {
  transition: opacity 0.3s ease, r 0.3s ease, fill 0.3s ease;
}

/* Grid dos Steps */
.grid-journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

/* Step Individual */
.journey-step {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
}

.journey-step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(11, 154, 160, 0.25);
  box-shadow: 0 8px 24px rgba(11, 154, 160, 0.08);
  transform: translateY(-3px);
}

/* Número do Step - Integrado */
.journey-step-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.journey-step:hover .journey-step-number {
  opacity: 1;
  transform: scale(1.1);
}

/* Conteúdo do Step */
.journey-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.journey-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0;
  font-family: var(--font-serif);
  line-height: 1.3;
}

.journey-step p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.journey-step:hover p {
  opacity: 0.95;
}

/* PROTEÇÃO: Linha principal intocada no hover */
.grid-journey-steps:has(.journey-step:hover) .journey-main-line {
  opacity: 1 !important;
}

/* Timeline Hover Premium - Destaque refinado e discreto */
/* Card 1 */
.grid-journey-steps:has(.journey-step:nth-child(1):hover) .timeline-branch-1 {
  opacity: 0.95;
}

.grid-journey-steps:has(.journey-step:nth-child(1):hover) circle[cx="200"] {
  opacity: 1;
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(11, 154, 160, 0.12));
}

.grid-journey-steps:has(.journey-step:nth-child(1):hover) circle[cx="200"][cy="115"] {
  opacity: 0.95;
  r: 4.5;
}

/* Card 2 */
.grid-journey-steps:has(.journey-step:nth-child(2):hover) .timeline-branch-2 {
  opacity: 0.95;
}

.grid-journey-steps:has(.journey-step:nth-child(2):hover) circle[cx="466"] {
  opacity: 1;
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(11, 154, 160, 0.12));
}

.grid-journey-steps:has(.journey-step:nth-child(2):hover) circle[cx="466"][cy="115"] {
  opacity: 0.95;
  r: 4.5;
}

/* Card 3 */
.grid-journey-steps:has(.journey-step:nth-child(3):hover) .timeline-branch-3 {
  opacity: 0.95;
}

.grid-journey-steps:has(.journey-step:nth-child(3):hover) circle[cx="733"] {
  opacity: 1;
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(11, 154, 160, 0.12));
}

.grid-journey-steps:has(.journey-step:nth-child(3):hover) circle[cx="733"][cy="115"] {
  opacity: 0.95;
  r: 4.5;
}

/* Card 4 */
.grid-journey-steps:has(.journey-step:nth-child(4):hover) .timeline-branch-4 {
  opacity: 0.95;
}

.grid-journey-steps:has(.journey-step:nth-child(4):hover) circle[cx="1000"] {
  opacity: 1;
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(11, 154, 160, 0.12));
}

.grid-journey-steps:has(.journey-step:nth-child(4):hover) circle[cx="1000"][cy="115"] {
  opacity: 0.95;
  r: 4.5;
}

/* Resultado Climático */
/* Animação de Pulse para Selo */
@keyframes seal-pulse {
  0%, 100% {
    opacity: 0.75;
  }
  50% {
    opacity: 0.95;
  }
}

.journey-result-climax {
  display: grid;
  grid-template-columns: 1fr 100px;
  align-items: center;
  gap: 2.5rem;
  padding: 2.8rem 3.2rem;
  background: linear-gradient(135deg, rgba(11, 154, 160, 0.08) 0%, rgba(11, 154, 160, 0.04) 100%);
  border: 1px solid rgba(11, 154, 160, 0.2);
  border-radius: 1.2rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 0 25px rgba(11, 154, 160, 0.06);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* Profundidade elegante do fundo */
.journey-result-climax::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle at 40% 40%, rgba(11, 154, 160, 0.12) 0%, rgba(11, 154, 160, 0.02) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

/* Linha de integração que desce dos cards */
.journey-result-climax::after {
  content: '';
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 85px;
  background: linear-gradient(180deg, rgba(11, 154, 160, 0.25) 0%, rgba(11, 154, 160, 0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

.journey-result-climax:hover {
  border-color: rgba(11, 154, 160, 0.35);
  box-shadow:
    inset 0 0 30px rgba(11, 154, 160, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(11, 154, 160, 0.15);
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(11, 154, 160, 0.12) 0%, rgba(11, 154, 160, 0.06) 100%);
}

/* Conteúdo do Resultado - Layout Refinado */
.result-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.result-headline {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin: 0;
  font-family: var(--font-serif);
  line-height: 1.4;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.5rem;
}

/* Detalhe teal subtil na headline */
.result-headline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background-color: rgba(11, 154, 160, 0.7);
}

.result-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  letter-spacing: 0.002em;
  margin: 0;
  font-weight: 400;
  max-width: 650px;
  word-spacing: 0.05em;
}

/* Ícone do Resultado - Selo de Conclusão Premium */
.result-icon-container {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.result-icon-container svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 4px rgba(11, 154, 160, 0.25));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: seal-pulse 4s ease-in-out infinite;
  color: rgba(11, 154, 160, 0.8);
}

.journey-result-climax:hover .result-icon-container svg {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(11, 154, 160, 0.4));
  color: rgba(11, 154, 160, 0.95);
  animation-play-state: paused;
}

/* CTA RESULTADO - Minimalista e Horizontal Premium */
.cta-resultado-jornada {
  padding: 2.2rem 3rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(11, 154, 160, 0.08);
  border-radius: 1.2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(11, 154, 160, 0.04);
  transition: all 0.5s ease-out;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.cta-resultado-jornada:hover {
  border-color: rgba(11, 154, 160, 0.12);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 20px rgba(11, 154, 160, 0.06);
}

/* Layout horizontal minimalista */
.cta-minimalista {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* Ícone pequeno minimalista */
.cta-icon-mini-horizontal {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(11, 154, 160, 0.6);
}

.cta-icon-mini-horizontal svg {
  width: 100%;
  height: 100%;
}

/* Texto horizontal agrupado */
.cta-text-horizontal {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* Título minimalista */
.cta-title-horizontal {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  font-family: var(--font-serif);
  line-height: 1.3;
  letter-spacing: -0.3px;
}

/* Subtítulo minimalista */
.cta-subtitle-horizontal {
  font-size: 0.91rem;
  color: #4a5f7f;
  margin: 0;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0.7;
}

/* Separador vertical sutil */
.cta-separator-horizontal {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(11, 154, 160, 0.08) 0%, rgba(11, 154, 160, 0.03) 100%);
  flex-shrink: 0;
}

/* Ação minimalista à direita */
.cta-action-horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Botão horizontal minimalista */
.btn-cta-horizontal {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: white;
  background: linear-gradient(135deg, var(--teal) 0%, #0a9ba0 100%);
  border: none;
  border-radius: 0.9rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 8px 24px rgba(11, 154, 160, 0.2);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-cta-horizontal:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 154, 160, 0.28);
}

.btn-cta-horizontal:active {
  transform: translateY(0px);
  box-shadow: 0 4px 12px rgba(11, 154, 160, 0.16);
}

/* Seta do botão */
.btn-arrow-horizontal {
  font-size: 0.9rem;
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.btn-cta-horizontal:hover .btn-arrow-horizontal {
  transform: translateX(3px);
}

/* Texto de confiança compacto */
.cta-trust-horizontal {
  font-size: 0.75rem;
  color: #4a5f7f;
  margin: 0;
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Container flexível para conteúdo + ação - proporção equilibrada */
.cta-flex-container {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* Seção de conteúdo (esquerda) - compacta e agrupada */
.cta-content-section {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

/* Ícone mini compacto */
.cta-icon-mini {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon-mini .cta-icon-convergence {
  color: rgba(11, 154, 160, 0.7);
  opacity: 0.9;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.cta-convergencia-tech:hover .cta-icon-mini .cta-icon-convergence {
  color: var(--teal);
  opacity: 1;
  transform: scale(1.12) rotate(3deg);
  filter: drop-shadow(0 2px 5px rgba(11, 154, 160, 0.12));
}

/* Bloco de texto estruturado */
.cta-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

/* Headline compacta e forte */
.cta-headline-compact {
  font-size: 1.22rem;
  font-weight: 750;
  color: var(--navy);
  margin: 0;
  font-family: var(--font-serif);
  line-height: 1.32;
  letter-spacing: -0.2px;
}

/* Subtítulo compacto */
.cta-subtitle-compact {
  font-size: 0.92rem;
  font-weight: 400;
  color: #3f5f7f;
  line-height: 1.52;
  margin: 0;
  opacity: 0.85;
  letter-spacing: 0.2px;
}

.cta-convergencia-tech:hover .cta-subtitle-compact {
  opacity: 0.95;
}

/* Divisor elegante entre conteúdo e ação - proporção compacta */
.cta-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(11, 154, 160, 0.12) 0%, rgba(11, 154, 160, 0.06) 100%);
  flex-shrink: 0;
}

/* Seção de ação (direita) */
.cta-action-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Botão compacto executivo */
.btn-cta-compact {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 1rem 2.6rem;
  font-size: 0.96rem;
  font-weight: 760;
  letter-spacing: 0.5px;
  color: white;
  background: linear-gradient(135deg, var(--teal) 0%, #0a9ba0 100%);
  border: none;
  border-radius: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 12px 36px rgba(11, 154, 160, 0.28);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.btn-cta-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: 0;
}

.btn-cta-compact span {
  position: relative;
  z-index: 1;
}

.btn-cta-compact:hover {
  background: linear-gradient(135deg, #0a9ba0 0%, var(--teal) 100%);
  box-shadow: 0 18px 52px rgba(11, 154, 160, 0.35);
  transform: translateY(-3px);
  letter-spacing: 0.8px;
}

.btn-cta-compact:hover::before {
  left: 100%;
}

.btn-cta-compact:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11, 154, 160, 0.22);
}

/* Linha de confiança compacta */
.cta-trust-line {
  font-size: 0.8rem;
  font-weight: 500;
  color: #3f5f7f;
  margin: 0;
  letter-spacing: 0.3px;
  opacity: 0.72;
  text-align: center;
  white-space: nowrap;
}

.cta-convergencia-tech:hover .cta-trust-line {
  opacity: 0.88;
}

/* Linha de convergência - fluxo descendo da seção acima */
.convergence-line-top {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1.2px;
  height: 80px;
  background: linear-gradient(180deg, rgba(11, 154, 160, 0.35) 0%, rgba(11, 154, 160, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Fundos decorativos premium com profundidade */
.cta-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 241, 237, 0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

.cta-glow-subtle {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(11, 154, 160, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cta-bg-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 154, 160, 0.08) 50%, transparent);
  pointer-events: none;
  z-index: 0;
}

/* Fundos decorativos do resultado premium */
.resultado-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 241, 237, 0.62) 100%);
  pointer-events: none;
  z-index: 0;
}

.resultado-glow-premium {
  position: absolute;
  top: -100px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(11, 154, 160, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.resultado-pattern-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.2px;
  background: linear-gradient(90deg, transparent, rgba(11, 154, 160, 0.1) 50%, transparent);
  pointer-events: none;
  z-index: 0;
}

/* Wrapper de conteúdo centralizado */
.resultado-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

/* Ícone de transformação elegante */
.resultado-icon-premium {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  opacity: 0.85;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.cta-resultado-jornada:hover .resultado-icon-premium {
  opacity: 1;
  transform: scale(1.15) rotate(-2deg);
  filter: drop-shadow(0 4px 12px rgba(11, 154, 160, 0.2));
}

/* Headline de transformação - impactante */
.resultado-headline {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  font-family: var(--font-serif);
  line-height: 1.3;
  letter-spacing: -0.5px;
  max-width: 700px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.cta-resultado-jornada:hover .resultado-headline {
  color: var(--teal);
}

/* Grid de benefícios alcançados */
.resultado-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 850px;
  margin: 0.5rem 0;
}

/* Item de benefício com checkmark */
.resultado-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: rgba(11, 154, 160, 0.04);
  border: 1px solid rgba(11, 154, 160, 0.12);
  border-radius: 1rem;
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--navy);
  transition: all 0.4s ease;
}

.resultado-benefit-item:hover {
  background: rgba(11, 154, 160, 0.08);
  border-color: rgba(11, 154, 160, 0.2);
  transform: translateY(-2px);
}

.benefit-icon {
  flex-shrink: 0;
  color: var(--teal);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.resultado-benefit-item:hover .benefit-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* Subtexto emocional */
.resultado-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: #3f5f7f;
  margin: 0.5rem 0 1rem;
  opacity: 0.88;
  line-height: 1.6;
  max-width: 600px;
  letter-spacing: 0.3px;
}

.cta-resultado-jornada:hover .resultado-subtitle {
  opacity: 0.95;
  color: var(--navy);
}

/* Botão da transformação final */
.btn-resultado-final {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 1.6rem 4.2rem;
  font-size: 1.15rem;
  font-weight: 780;
  letter-spacing: 0.8px;
  color: white;
  background: linear-gradient(135deg, var(--teal) 0%, #0a9ba0 100%);
  border: none;
  border-radius: 1.4rem;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 16px 48px rgba(11, 154, 160, 0.35);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 3;
  margin-top: 0.5rem;
}

.btn-resultado-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.7s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: 0;
}

.btn-resultado-final span {
  position: relative;
  z-index: 1;
}

.btn-resultado-final:hover {
  background: linear-gradient(135deg, #0a9ba0 0%, var(--teal) 100%);
  box-shadow: 0 24px 72px rgba(11, 154, 160, 0.45);
  transform: translateY(-5px);
  letter-spacing: 1px;
}

.btn-resultado-final:hover::before {
  left: 100%;
}

.btn-resultado-final:active {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(11, 154, 160, 0.3);
}

/* Trust line final - confirmação */
.resultado-trust {
  font-size: 0.85rem;
  font-weight: 500;
  color: #3f5f7f;
  margin: 0;
  letter-spacing: 0.4px;
  opacity: 0.75;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.cta-resultado-jornada:hover .resultado-trust {
  opacity: 0.88;
}

.cta-convergencia-tech:hover {
  border-color: rgba(11, 154, 160, 0.25);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 241, 237, 0.62) 100%);
  box-shadow: 0 12px 40px rgba(11, 154, 160, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* Botão CTA Tech Final - Ultra Premium */
.btn-cta-tech-final {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 1.4rem 3.75rem;
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: 0.7px;
  color: white;
  background: linear-gradient(135deg, var(--teal) 0%, #0a9ba0 100%);
  border: none;
  border-radius: 1.35rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 14px 40px rgba(11, 154, 160, 0.32);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-cta-tech-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.7s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: 0;
}

.btn-cta-tech-final span {
  position: relative;
  z-index: 1;
}

.btn-cta-tech-final:hover {
  background: linear-gradient(135deg, #0a9ba0 0%, var(--teal) 100%);
  box-shadow: 0 20px 60px rgba(11, 154, 160, 0.42);
  transform: translateY(-4px);
  letter-spacing: 0.9px;
}

.btn-cta-tech-final:hover::before {
  left: 100%;
}

.btn-cta-tech-final:active {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(11, 154, 160, 0.28);
}

/* Responsividade CTA Horizontal em Tablet */
@media (max-width: 1024px) {
  .cta-flex-container {
    gap: 1.5rem;
  }

  .cta-headline-compact {
    font-size: 1.2rem;
  }

  .btn-cta-compact {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
  }
}

/* Responsividade CTA Horizontal em Mobile */
@media (max-width: 768px) {
  .cta-convergencia-tech {
    padding: 2rem 1.5rem;
  }

  .cta-flex-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .cta-content-section {
    width: 100%;
    gap: 1rem;
  }

  .cta-headline-compact {
    font-size: 1.15rem;
    font-weight: 700;
  }

  .cta-subtitle-compact {
    font-size: 0.9rem;
  }

  .cta-divider {
    display: none;
  }

  .cta-action-section {
    width: 100%;
    align-items: stretch;
  }

  .btn-cta-compact {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  .cta-trust-line {
    margin-top: 0.3rem;
  }

  .grid-tecnologias-2x2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ecosystem-tecnologias {
    min-height: auto;
  }

  .ecosystem-connector-tech {
    display: none;
  }

  .card-tecnologia {
    padding: 2rem;
  }

  .tech-icon {
    width: 64px;
    height: 64px;
  }

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

  .tech-benefit {
    font-size: 0.9rem;
  }

  .cta-convergencia-tech {
    padding: 2.5rem 2rem;
  }

  .btn-cta-tech-final {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  .journey-timeline-container {
    margin-bottom: 3rem;
  }

  /* Esconder timeline em mobile */
  .journey-timeline-svg {
    display: none;
  }

  .grid-journey-steps {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .journey-timeline-container {
    margin-bottom: 2rem;
    overflow: visible;
  }

  .journey-result-climax {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.4rem 2.2rem;
  }

  .result-icon-container {
    justify-self: end;
    display: flex;
  }

  .result-headline {
    font-size: 1.25rem;
  }

  .result-description {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

/* ==========================================
   ACCORDION (FAQ)
   ========================================== */

.accordion-item {
  margin-bottom: 0;
}

.accordion-header {
  transition: all var(--transition-base);
  cursor: pointer;
  user-select: none;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(11, 154, 160, 0.3) !important;
}

.accordion-item.active .accordion-header {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(11, 154, 160, 0.5) !important;
}

.accordion-item.active .accordion-header span {
  transform: rotate(45deg);
}

.accordion-content {
  transition: max-height 0.3s ease-out;
}

/* ==========================================
   SEÇÃO DE DEPOIMENTOS
   ========================================== */

.section-cream {
  background-color: var(--cream);
}

.carousel-btn {
  outline: none;
  box-shadow: 0 2px 6px rgba(26, 58, 82, 0.1);
}

.carousel-btn:hover {
  box-shadow: 0 4px 12px rgba(11, 154, 160, 0.2);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.depoimentos-carousel {
  scrollbar-width: none;
}

.depoimentos-carousel::-webkit-scrollbar {
  display: none;
}

.depoimentos-card {
  flex: 0 0 calc(33.333% - 1.17rem);
  scroll-snap-align: start;
}

@media (max-width: 900px) {
  .depoimentos-card {
    flex: 0 0 calc(50% - 0.88rem);
  }
}

@media (max-width: 640px) {
  .depoimentos-card {
    flex: 0 0 calc(100% - 0.88rem);
  }
}

/* Media queries para depoimentos em mobile */
@media (max-width: 768px) {
  .reveal {
    animation-delay: 0ms !important;
  }
}
