/* ═══════════════════════════════════════════
   TOKENS & BASE
═══════════════════════════════════════════ */

/* Logo */
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .4s;
}

.site-header.scrolled .logo-img {
  filter: none;
}

.logo-footer {
  filter: brightness(0) invert(1) !important;
  height: 44px;
}

/* Diferenciais */
.diferencial-card {
  background: #f5f6f8;
  border: 1px solid rgba(128, 130, 133, .15);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  height: 100%;
}

.text-navy {
  color: var(--navy) !important;
}

.space-y {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .95rem;
  color: var(--dark-slate);
  line-height: 1.6;
}

.diferencial-item i {
  flex-shrink: 0;
  margin-top: .2rem;
  font-size: 1rem;
}

.para-quem-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.para-quem-list li {
  font-size: .95rem;
  color: var(--dark-slate);
}

/* Accordion custom */
.acc-btn {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  padding: 1rem 0;
  box-shadow: none !important;
}

.acc-btn:not(.collapsed) {
  color: var(--cyan);
  background: transparent;
}

.acc-btn::after {
  filter: none;
}

.acc-body {
  font-size: .9rem;
  color: var(--dark-slate);
  line-height: 1.7;
  padding: 0 0 1rem 0;
}

.accordion-item {
  background: transparent;
  border: none;
}

.border-cyan {
  border-color: var(--cyan) !important;
}

/* ═══════════════════════════════════════════
   SPLIT LAYOUT (texto | imagem)
═══════════════════════════════════════════ */
.split-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 45, 88, .15);
}

.split-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.split-img-wrap:hover .split-img {
  transform: scale(1.03);
}

.split-img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--cyan);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 4px;
}

.split-highlight-cards {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 1.5rem;
}

.split-highlight {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: #f5f6f8;
  border-radius: 8px;
  padding: .9rem 1.1rem;
  font-size: .9rem;
  color: var(--dark-slate);
  line-height: 1.5;
}

.split-highlight i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.split-highlight strong {
  display: block;
  color: var(--navy);
  margin-bottom: .15rem;
  font-size: .9rem;
}

:root {
  --navy: #002D58;
  --cyan: #00AEFF;
  --slate: #808285;
  --dark-slate: #4A4C4E;
  --white: #ffffff;
  --light: #f5f6f8;
  --border: rgba(128, 130, 133, .25);
  --font: 'Inter', 'Aileron', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark-slate);
  background: var(--white);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.text-cyan {
  color: var(--cyan) !important;
}

.bg-navy {
  background: var(--navy) !important;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY SYSTEM
═══════════════════════════════════════════ */
.section-tag {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.body-text {
  font-size: 1.05rem;
  color: var(--dark-slate);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem .99rem;
  background: var(--cyan);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter .2s, box-shadow .2s;
}

.btn-cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(0, 174, 255, .3);
  color: var(--white);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  padding: .85rem 2rem;
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.btn-outline-hero:hover {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .4s, box-shadow .4s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  color: var(--white);
  transition: color .4s;
}

.site-header.scrolled .brand-name {
  color: var(--navy);
}

.nav-link-item {
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: color .2s;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--cyan);
}

.site-header.scrolled .nav-link-item {
  color: var(--dark-slate);
}

.site-header.scrolled .nav-link-item:hover {
  color: var(--cyan);
}

.mobile-toggle {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: color .4s;
  line-height: 1;
  padding: .25rem;
}

.site-header.scrolled .mobile-toggle {
  color: var(--navy);
}

.mobile-menu {
  background: var(--white);
  border-top: 1px solid var(--border);
  display: none;
  animation: slideDown .25s ease;
}

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

.mobile-nav-link {
  display: block;
  padding: .6rem 0;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.mobile-nav-link:hover {
  color: var(--cyan);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 45, 88, .92) 0%, rgba(0, 45, 88, .65) 55%, rgba(0, 45, 88, .35) 100%);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bp-h {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, .08);
}

.bp-v {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .08);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: .45rem 1.25rem;
  border: 1px solid rgba(0, 174, 255, .5);
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .7);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-counters {
  position: absolute;
  bottom: 6rem;
  right: 2rem;
  display: flex;
  gap: 3rem;
  z-index: 2;
}

.hero-counter {
  text-align: right;
}

.counter-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: .25rem;
}

.counter-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .4);
  font-size: 1.4rem;
  z-index: 2;
}

/* ═══════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════ */
.py-section {
  padding: 6rem 0;
}

.bg-light-section {
  background: #f5f6f8;
}

.blueprint-line.top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(128, 130, 133, .2);
}

section {
  position: relative;
}

/* ═══════════════════════════════════════════
   ABOUT — STAT CARDS
═══════════════════════════════════════════ */
.stat-card {
  background: var(--white);
  border: 1px solid rgba(128, 130, 133, .15);
  border-radius: 8px;
  padding: 1.75rem 1.25rem;
}

.stat-icon {
  font-size: 1.75rem;
  color: var(--cyan);
  display: block;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ═══════════════════════════════════════════
   SERVICE CARDS (home)
═══════════════════════════════════════════ */
.service-card {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 340px;
  text-decoration: none;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 45, 88, .95) 0%, rgba(0, 45, 88, .45) 55%, transparent 100%);
}

.service-index {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .1);
  line-height: 1;
  pointer-events: none;
}

.service-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.75rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}

.service-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  transition: transform .3s;
}

.service-card:hover .service-cta {
  transform: translateX(6px);
}

/* ═══════════════════════════════════════════
   SOLUTION CARDS
═══════════════════════════════════════════ */

.solution-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(128, 130, 133, .12);
  border-radius: 18px;
  padding: 2rem;
  text-decoration: none;
  transition: .35s ease;
  box-shadow: 0 8px 30px rgba(0, 45, 88, .04);
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 174, 255, .2);
  box-shadow: 0 18px 40px rgba(0, 45, 88, .12);
}

.solution-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: rgba(0, 174, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: .3s;
}

.solution-card:hover .solution-icon {
  transform: scale(1.08);
  background: rgba(0, 174, 255, .12);
}

.solution-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 18px;
}

.solution-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: .85rem;
}

.solution-desc {
  font-size: .95rem;
  color: var(--dark-slate);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  transition: transform .3s ease;
}

.solution-card:hover .solution-cta {
  transform: translateX(6px);
}

/* MOBILE */
@media (max-width: 768px) {
  .solution-card {
    padding: 1.5rem;
  }

  .solution-title {
    font-size: 1.05rem;
  }

  .solution-desc {
    font-size: .9rem;
  }

  .solution-icon {
    width: 70px;
    height: 70px;
  }

  .solution-icon img {
    width: 50px;
    height: 50px;
  }
}

/* ═══════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: .85rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(128, 130, 133, .25);
}

.timeline-item {
  position: relative;
  padding-bottom: 3.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.35rem;
  top: .4rem;
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(0, 174, 255, .2);
  flex-shrink: 0;
}

.timeline-index {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0, 174, 255, 0.699);
  line-height: 1;
  flex-shrink: 0;
  width: 5rem;
  text-align: right;
  margin-top: -.5rem;
}

.timeline-content {
  flex: 1;
}

.timeline-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

/* ═══════════════════════════════════════════
   CLIENTS CAROUSEL
═══════════════════════════════════════════ */
.clients-track-wrapper {
  overflow: hidden;
  position: relative;
}

.clients-track-wrapper::before,
.clients-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.clients-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

.clients-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}

.clients-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollTrack 28s linear infinite;
  width: max-content;
}

/* CARD PADRÃO DAS LOGOS */
.client-logo {
  width: 220px;
  height: 110px;
  background: #fff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
}

/* IMAGEM SEM DEFORMAR */
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .client-logo {
    width: 160px;
    height: 90px;
    padding: 15px;
  }
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--dark-slate);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 174, 255, .1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(128, 130, 133, .15);
  border-radius: 10px;
  padding: 2.25rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.form-label-custom {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: .5rem;
}

.form-input-custom {
  display: block;
  width: 100%;
  padding: .8rem 1rem;
  background: #f5f6f8;
  border: 1px solid rgba(128, 130, 133, .2);
  border-radius: 4px;
  font-size: .95rem;
  color: var(--dark-slate);
  font-family: var(--font);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-input-custom::placeholder {
  color: var(--slate);
}

.form-input-custom:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 174, 255, .12);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .55);
}

.footer-heading {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  font-size: .9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}

/* ═══════════════════════════════════════════
   ANIMATIONS — SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .75s ease forwards;
}

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

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

/* ═══════════════════════════════════════════
   SERVICE PAGE HERO
═══════════════════════════════════════════ */
.service-page-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.service-page-hero--sm {
  height: 45vh !important;
  min-height: 320px !important;
}

.service-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page-hero .sph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 45, 88, .97) 0%, rgba(0, 45, 88, .5) 55%, rgba(0, 45, 88, .25) 100%);
}

.sph-content {
  position: relative;
  z-index: 2;
  padding-bottom: 3.5rem;
  width: 100%;
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 1.25rem;
}

.breadcrumb-trail a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb-trail a:hover {
  color: var(--cyan);
}

.breadcrumb-trail .current {
  color: var(--cyan);
}

.sph-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: .75rem;
}

.sph-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .7);
  max-width: 640px;
  line-height: 1.7;
}

/* ART Badge */
.art-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.5rem;
  background: rgba(0, 174, 255, .1);
  border: 1px solid rgba(0, 174, 255, .25);
  border-radius: 4px;
  margin-bottom: 3rem;
}

.art-badge i {
  color: var(--cyan);
  font-size: 1.1rem;
}

.art-badge span {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .08em;
}

/* ═══════════════════════════════════════════
   SERVICE CTA STRIP
═══════════════════════════════════════════ */
.cta-strip {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.cta-strip p {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   THANK YOU PAGE
═══════════════════════════════════════════ */

.thank-you-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 4rem;
  margin: 7rem auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .15);
}

.thank-you-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 2rem;
  border-radius: 30px;
  background: rgba(0, 174, 255, .12);
  border: 1px solid rgba(0, 174, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-icon i {
  font-size: 3rem;
  color: var(--cyan);
}

.thank-you-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, .72);
  max-width: 650px;
  margin: 0 auto 2rem;
}

.thank-you-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.thank-you-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
}

.thank-you-item i {
  color: var(--cyan);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .thank-you-card {
    padding: 2rem 1.5rem;
    border-radius: 22px;
    margin: 5rem auto;
  }

  .thank-you-title {
    font-size: 2rem;
  }

  .thank-you-text {
    font-size: .95rem;
  }

  .thank-you-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
  }

  .thank-you-icon i {
    font-size: 2.3rem;
  }

  .thank-you-item {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT + SOCIAL FOOTER
═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
  color: #fff;
}

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: 1.1rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.footer-social:hover {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .py-section {
    padding: 4rem 0;
  }

  .timeline {
    padding-left: 2rem;
  }

  .timeline-index {
    font-size: 3.5rem;
    width: 4rem;
  }

  .hero-content {
    padding-top: 4rem;
  }

  .service-card {
    height: 280px;
  }

  .timeline-item {
    gap: .75rem;
  }

  .split-img {
    height: 300px;
  }
}