/* Estilos personalizados OptimusUP */
:root {
  --primary: #2e8fc5;
  --primary-dark: #1d6f9f;
  --primary-soft: #e9f8fd;
  --cyan: #36c6da;
  --navy: #111827;
  --ink: #20242b;
  --muted: #657384;
  --line: #e4edf3;
  --light: #f7fbfe;
  --white: #ffffff;
  --yellow: #ffcb21;
  --orange: #f36b21;
  --red: #ed1c24;
  --shadow: 0 24px 60px rgba(30, 91, 134, 0.15);
  --shadow-hover: 0 30px 75px rgba(30, 91, 134, 0.22);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --transition: 280ms ease;
  --bs-font-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --bs-body-font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

::selection {
  background: rgba(54, 198, 218, 0.24);
  color: var(--navy);
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 450ms ease, visibility 450ms ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  position: relative;
  animation: spin 1.1s linear infinite;
}

.loader-mark span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 9px solid transparent;
}

.loader-mark span:nth-child(1) {
  border-top-color: var(--primary);
}

.loader-mark span:nth-child(2) {
  border-right-color: var(--cyan);
  transform: rotate(115deg);
}

.loader-mark span:nth-child(3) {
  border-bottom-color: var(--yellow);
  transform: rotate(230deg);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.site-navbar {
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  transition: padding var(--transition), box-shadow var(--transition), background var(--transition);
  border-bottom: 1px solid rgba(228, 237, 243, 0.65);
}

@media (min-width: 1200px) {
  .site-navbar .container {
    max-width: 1320px;
  }
}

.site-navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(22, 67, 103, 0.1);
}

.navbar-brand img {
  width: 205px;
  height: auto;
  transition: width var(--transition);
}

.site-navbar.scrolled .navbar-brand img {
  width: 178px;
}

.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.navbar-toggler-icon {
  width: 24px;
  height: 18px;
  background-position: center;
  background-size: contain;
}

.navbar .nav-link {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.7rem 0.8rem !important;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.88rem 1.45rem;
  border-width: 0;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  box-shadow: 0 14px 30px rgba(46, 143, 197, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 18px 38px rgba(46, 143, 197, 0.32);
}

.btn-outline-primary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(46, 143, 197, 0.22);
  box-shadow: none;
}

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

.btn-light {
  color: var(--primary-dark);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: "";
  position: absolute;
  inset: -60% -20%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-120%) rotate(20deg);
  animation: btnShine 4.5s infinite;
}

@keyframes btnShine {
  0%, 35% { transform: translateX(-120%) rotate(20deg); }
  55%, 100% { transform: translateX(140%) rotate(20deg); }
}

.nav-cta {
  padding: 0.72rem 1.35rem !important;
  color: var(--white) !important;
}

.hero-section {
  min-height: 100vh;
  padding-top: 128px;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 12%, rgba(54,198,218,0.18), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(46,143,197,0.14), transparent 28%),
    linear-gradient(180deg, #f6fcff 0%, #ffffff 78%);
  overflow: hidden;
}

.hero-section .min-vh-100 {
  min-height: calc(100vh - 128px) !important;
}

.hero-section .container {
  padding-top: 10px;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 108px;
  }

  .hero-section .min-vh-100 {
    min-height: auto !important;
  }
}


.hero-section::before {
  content: "";
  position: absolute;
  right: -160px;
  top: 100px;
  width: 600px;
  height: 600px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTIwIiBoZWlnaHQ9IjUyMCIgdmlld0JveD0iMCAwIDUyMCA1MjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGcgZmlsbD0iIzJFOEZDNSIgZmlsbC1vcGFjaXR5PSIwLjEiPgogICAgPGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjQyIiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSI3NCIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iMTA2IiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSIxMzgiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjE3MCIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iMjAyIiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSIyMzQiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjI2NiIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iMjk4IiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSIzMzAiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjM2MiIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iMzk0IiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSI0MjYiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjQ1OCIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iNDkwIiBjeT0iMTAiIHI9IjMiLz4KICAgIDxjaXJjbGUgY3g9IjEwIiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSI0MiIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iNzQiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjEwNiIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iMTM4IiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSIxNzAiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjIwMiIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iMjM0IiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSIyNjYiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjI5OCIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iMzMwIiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSIzNjIiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjM5NCIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iNDI2IiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSI0NTgiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjQ5MCIgY3k9IjQyIiByPSIzIi8+CiAgICA8Y2lyY2xlIGN4PSIxMCIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iNDIiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9Ijc0IiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSIxMDYiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9IjEzOCIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iMTcwIiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSIyMDIiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9IjIzNCIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iMjY2IiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSIyOTgiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9IjMzMCIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iMzYyIiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSIzOTQiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9IjQyNiIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iNDU4IiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSI0OTAiIGN5PSI3NCIgcj0iMyIvPgogICAgPGNpcmNsZSBjeD0iMTAiIGN5PSIxMDYiIHI9IjMiLz48Y2lyY2xlIGN4PSI0MiIgY3k9IjEwNiIgcj0iMyIvPjxjaXJjbGUgY3g9Ijc0IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMTA2IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMTM4IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMTcwIiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMjAyIiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMjM0IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMjY2IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMjk4IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMzMwIiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMzYyIiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMzk0IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iNDI2IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iNDU4IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iNDkwIiBjeT0iMTA2IiByPSIzIi8+CiAgPC9nPgo8L3N2Zz4K") repeat;
  opacity: 0.55;
  z-index: -1;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  z-index: -1;
}

.hero-shape-one {
  width: 230px;
  height: 280px;
  background: rgba(255, 203, 33, 0.14);
  left: -80px;
  bottom: 80px;
}

.hero-shape-two {
  width: 170px;
  height: 170px;
  background: rgba(237, 28, 36, 0.08);
  right: 11%;
  top: 20%;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.eyebrow {
  padding: 9px 14px;
  background: rgba(54, 198, 218, 0.12);
  border: 1px solid rgba(54, 198, 218, 0.22);
  border-radius: 999px;
}

.display-4 {
  color: var(--navy);
  letter-spacing: -0.045em;
  line-height: 1.03;
  margin-bottom: 24px;
}

.hero-text,
.section-text,
.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-mini-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 610px;
}

.hero-mini-grid div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(30, 91, 134, 0.08);
}

.hero-mini-grid strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.hero-mini-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  max-width: 650px;
  margin-inline: auto;
}

.hero-visual img {
  width: 100%;
  animation: floatY 6s ease-in-out infinite;
}

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

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(228, 237, 243, 0.95);
  box-shadow: var(--shadow);
  border-radius: 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  min-width: 230px;
}

.floating-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--primary));
}

.floating-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
}

.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.card-one {
  left: 2%;
  bottom: 13%;
  animation: floatX 5.2s ease-in-out infinite;
}

.card-two {
  right: 2%;
  top: 16%;
  animation: floatX 5.6s ease-in-out infinite reverse;
}

@keyframes floatX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(12px); }
}

.brand-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-strip-title {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.brand-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.brand-pill-wrap span {
  color: var(--primary-dark);
  background: var(--primary-soft);
  border: 1px solid rgba(46, 143, 197, 0.13);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 0.86rem;
}

.section-pad {
  padding: 112px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-title {
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  margin-bottom: 18px;
}

.section-kicker::after {
  content: "";
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--primary-dark));
  border-radius: 99px;
}

.section-subtitle {
  max-width: 660px;
  margin: 0 auto;
}

.image-card {
  position: relative;
  background: linear-gradient(145deg, rgba(54, 198, 218, 0.12), rgba(46, 143, 197, 0.07));
  border-radius: var(--radius-xl);
  padding: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 203, 33, 0.16);
  right: -56px;
  top: -48px;
}

.image-card img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.check-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.check-list span,
.solution-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

.check-list i,
.solution-list i {
  color: var(--primary);
  margin-top: 4px;
}

.metrics-section {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(16, 67, 103, 0.82), rgba(46, 143, 197, 0.88)),
    radial-gradient(circle at 20% 30%, rgba(54, 198, 218, 0.45), transparent 34%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.metrics-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTIwIiBoZWlnaHQ9IjUyMCIgdmlld0JveD0iMCAwIDUyMCA1MjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGcgZmlsbD0iIzJFOEZDNSIgZmlsbC1vcGFjaXR5PSIwLjEiPgogICAgPGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjQyIiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSI3NCIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iMTA2IiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSIxMzgiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjE3MCIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iMjAyIiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSIyMzQiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjI2NiIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iMjk4IiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSIzMzAiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjM2MiIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iMzk0IiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSI0MjYiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjQ1OCIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iNDkwIiBjeT0iMTAiIHI9IjMiLz4KICAgIDxjaXJjbGUgY3g9IjEwIiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSI0MiIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iNzQiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjEwNiIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iMTM4IiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSIxNzAiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjIwMiIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iMjM0IiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSIyNjYiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjI5OCIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iMzMwIiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSIzNjIiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjM5NCIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iNDI2IiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSI0NTgiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjQ5MCIgY3k9IjQyIiByPSIzIi8+CiAgICA8Y2lyY2xlIGN4PSIxMCIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iNDIiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9Ijc0IiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSIxMDYiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9IjEzOCIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iMTcwIiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSIyMDIiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9IjIzNCIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iMjY2IiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSIyOTgiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9IjMzMCIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iMzYyIiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSIzOTQiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9IjQyNiIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iNDU4IiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSI0OTAiIGN5PSI3NCIgcj0iMyIvPgogICAgPGNpcmNsZSBjeD0iMTAiIGN5PSIxMDYiIHI9IjMiLz48Y2lyY2xlIGN4PSI0MiIgY3k9IjEwNiIgcj0iMyIvPjxjaXJjbGUgY3g9Ijc0IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMTA2IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMTM4IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMTcwIiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMjAyIiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMjM0IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMjY2IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMjk4IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMzMwIiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMzYyIiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMzk0IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iNDI2IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iNDU4IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iNDkwIiBjeT0iMTA2IiByPSIzIi8+CiAgPC9nPgo8L3N2Zz4K") repeat;
  opacity: 0.22;
}

.metric-card {
  position: relative;
  z-index: 1;
  padding: 26px 16px;
}

.metric-card i {
  font-size: 2rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.82);
}

.metric-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.metric-card span:last-child {
  display: block;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 10px;
}

.metrics-cta-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.metrics-cta-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.metrics-cta-title {
  margin: 0 auto 18px;
  max-width: 820px;
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.metrics-cta-text {
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.8;
}

.metrics-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #e9f8ff);
  color: #2e8fc5 !important;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(6, 44, 71, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.metrics-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(6, 44, 71, 0.28);
  background: linear-gradient(135deg, #ffffff, #f6fcff);
  color: #2e8fc5 !important;
}

.metrics-cta-button i {
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .metrics-section {
    padding: 56px 0;
  }

  .metrics-cta-title {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .metrics-cta-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .metrics-cta-button {
    width: 100%;
    max-width: 260px;
  }
}

.services-section {
  background: linear-gradient(180deg, var(--white), #f7fbfe);
}

.service-card,
.case-card,
.blog-card,
.contact-card,
.step-card {
  height: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.case-card::before,
.blog-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: auto 28px -2px 28px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--cyan), var(--primary-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover,
.case-card:hover,
.blog-card:hover,
.contact-card:hover,
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 143, 197, 0.22);
}

.service-card:hover::before,
.case-card:hover::before,
.blog-card:hover::before,
.contact-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.85rem;
  background: var(--primary-soft);
  margin-bottom: 24px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.service-card:hover .service-icon,
.featured-service .service-icon {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  transform: rotate(-4deg) scale(1.04);
}

.service-card h3,
.case-card h3,
.blog-card h3,
.contact-card h3,
.step-card h3 {
  color: var(--navy);
  font-size: 1.23rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.service-card p,
.case-card p,
.blog-card p,
.contact-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 22px;
}

.service-card a,
.blog-card a {
  color: var(--primary-dark);
  font-weight: 500;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.service-card a i,
.blog-card a i {
  transition: transform var(--transition);
}

.service-card a:hover i,
.blog-card a:hover i {
  transform: translateX(5px);
}

.featured-service {
  background: linear-gradient(180deg, #ffffff, #effaff);
  border-color: rgba(46, 143, 197, 0.2);
}

.method-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(54, 198, 218, 0.28), transparent 28%),
    linear-gradient(135deg, #145b88, #2e8fc5);
  position: relative;
  overflow: hidden;
}

.method-section .section-kicker {
  color: #ffffff;
}

.method-section .section-kicker::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.75), rgba(255,255,255,0.18));
}

.method-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.text-white-75 {
  color: rgba(255,255,255,0.76) !important;
}

.step-card {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  min-height: 254px;
  z-index: 1;
}

.step-card span {
  position: absolute;
  right: 26px;
  top: 24px;
  color: rgba(255,255,255,0.2);
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.step-card i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--primary-dark);
  background: var(--white);
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.step-card h3,
.step-card p {
  color: var(--white);
}

.step-card p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}

.juridico-section {
  background: var(--white);
  position: relative;
}

.juridico-section::before {
  content: "";
  position: absolute;
  left: -130px;
  top: 120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(54, 198, 218, 0.08);
}

.solution-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.solution-list div {
  background: var(--light);
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 18px;
}

.solution-list i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  margin-top: 0;
  color: #2e8fc5;
  font-size: 1.35rem;
}

.aviation-section {
  position: relative;
  overflow: hidden;
  background: #eeeeee;
}

.aviation-section::before {
  content: "";
  position: absolute;
  right: -140px;
  top: 80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 143, 197, 0.12) 0%, rgba(46, 143, 197, 0.05) 45%, rgba(46, 143, 197, 0) 70%);
}

.aviation-section::after {
  content: "072";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 6%;
  bottom: 54px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(46, 143, 197, 0.16);
  transform: rotate(-10deg);
}

.aviation-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aviation-decor span {
  position: absolute;
  display: block;
  border-radius: 999px;
}


.aviation-decor .cloud-one {
  right: 11%;
  top: 64px;
  width: 96px;
  height: 28px;
  background: rgba(255,255,255,0.85);
  box-shadow: 26px -10px 0 4px rgba(255,255,255,0.72), 54px 0 0 0 rgba(255,255,255,0.85);
}

.aviation-decor .cloud-two {
  left: 17%;
  bottom: 84px;
  width: 72px;
  height: 22px;
  background: rgba(255,255,255,0.8);
  box-shadow: 22px -8px 0 3px rgba(255,255,255,0.68), 42px 0 0 0 rgba(255,255,255,0.8);
}

.aviation-section .section-kicker::after {
  display: none;
}

.aviation-section .section-kicker {
  margin-bottom: 14px;
}

.aviation-visual-card {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    radial-gradient(circle at 28% 26%, rgba(54, 198, 218, 0.22), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #eef9fd 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.aviation-visual-card::before {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px dashed rgba(46, 143, 197, 0.30);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite;
}

.aviation-visual-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -38px;
  bottom: -42px;
  border-radius: 50%;
  background: rgba(255, 203, 33, 0.22);
}

.aviation-icon-main {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 138px;
  height: 138px;
  border-radius: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 3.1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 26px 55px rgba(46, 143, 197, 0.30);
  z-index: 2;
}

.aviation-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(46, 143, 197, 0.15);
  box-shadow: 0 18px 45px rgba(6, 44, 71, 0.12);
  color: var(--ink);
  font-weight: 700;
}

.aviation-floating-card i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(46, 143, 197, 0.9);
  color: #2e8fc5;
  box-shadow: inset 0 0 0 1px rgba(46, 143, 197, 0.14);
  font-size: 1rem;
  flex: 0 0 34px;
}

.aviation-floating-card.card-one {
  left: 34px;
  top: 74px;
}

.aviation-floating-card.card-two {
  right: 34px;
  top: 118px;
}

.aviation-floating-card.card-three {
  left: 56px;
  bottom: 82px;
}

.aviation-floating-card.card-four {
  right: 48px;
  bottom: 58px;
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.98px) {
  .aviation-visual-card {
    min-height: 380px;
  }

  .aviation-floating-card {
    min-width: 170px;
    font-size: 0.92rem;
  }
}

@media (max-width: 575.98px) {
  .aviation-section::after,
  .aviation-decor {
    display: none;
  }

  .aviation-visual-card {
    min-height: 460px;
  }

  .aviation-floating-card {
    left: 24px !important;
    right: 24px !important;
    min-width: auto;
  }

  .aviation-floating-card.card-one { top: 44px; bottom: auto; }
  .aviation-floating-card.card-two { top: 116px; bottom: auto; }
  .aviation-floating-card.card-three { top: auto; bottom: 116px; }
  .aviation-floating-card.card-four { top: auto; bottom: 44px; }
}

.cases-section,
.blog-section {
  background: #f7fbfe;
}

.case-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.case-top i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  font-size: 1.55rem;
}

.case-top span {
  font-weight: 500;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.case-tags span {
  font-size: 0.78rem;
  color: var(--muted);
  background: #f2f7fb;
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 700;
}

.highlighted-case {
  background: linear-gradient(180deg, #ffffff, #edfaff);
}

.cta-section {
  padding: 0 0 112px;
  background: #f7fbfe;
}

.cta-box {
  background:
    radial-gradient(circle at 20% 20%, rgba(54,198,218,0.34), transparent 32%),
    linear-gradient(135deg, #155d8c, #2e8fc5);
  border-radius: 38px;
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 42px solid rgba(255,255,255,0.08);
}

.cta-box h2 {
  font-weight: 500;
  letter-spacing: -0.04em;
  max-width: 720px;
  margin-bottom: 12px;
}

.cta-box p {
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin-bottom: 0;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.clients-section {
  background: var(--white);
  overflow: hidden;
}

.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 18px;
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 92px;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255,255,255,0));
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255,255,255,0));
}

.clients-track {
  display: flex;
  width: max-content;
  animation: clientsMarquee 34s linear infinite;
  will-change: transform;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.clients-set {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding-right: 24px;
  flex: 0 0 auto;
}

.client-logo-card {
  width: 278px;
  min-height: 148px;
  border: 1px solid var(--line);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff, #f7fbfe);
  padding: 18px 16px;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.client-logo-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(46, 143, 197, 0.22);
  background: #ffffff;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 98px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.72);
  opacity: 0.88;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.client-logo-card:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.04);
}

@keyframes clientsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  .clients-set {
    gap: 18px;
    padding-right: 18px;
  }

  .client-logo-card {
    width: 240px;
    min-height: 132px;
    padding: 16px 14px;
  }

  .client-logo-card img {
    max-height: 84px;
  }
}

@media (max-width: 575.98px) {
  .clients-marquee::before,
  .clients-marquee::after {
    width: 44px;
  }

  .clients-set {
    gap: 14px;
    padding-right: 14px;
  }

  .client-logo-card {
    width: 210px;
    min-height: 118px;
    padding: 14px 12px;
    border-radius: 22px;
  }

  .client-logo-card img {
    max-height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }

  .clients-set[aria-hidden="true"] {
    display: none;
  }
}

.blog-card {
  padding-top: 76px;
}

.blog-date {
  position: absolute;
  top: 0;
  left: 32px;
  width: 66px;
  height: 76px;
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  color: var(--white);
  border-radius: 0 0 18px 18px;
  display: grid;
  place-items: center;
  align-content: center;
  box-shadow: 0 14px 28px rgba(46, 143, 197, 0.2);
}

.blog-date strong {
  font-size: 1.55rem;
  line-height: 1;
}

.blog-date span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.blog-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 1.9rem;
  margin-bottom: 24px;
}

.contact-section {
  position: relative;
  background: #eeeeee;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  width: min(1100px, 96vw);
  height: 420px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTIwIiBoZWlnaHQ9IjUyMCIgdmlld0JveD0iMCAwIDUyMCA1MjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGcgZmlsbD0iIzJFOEZDNSIgZmlsbC1vcGFjaXR5PSIwLjEiPgogICAgPGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjQyIiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSI3NCIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iMTA2IiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSIxMzgiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjE3MCIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iMjAyIiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSIyMzQiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjI2NiIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iMjk4IiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSIzMzAiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjM2MiIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iMzk0IiBjeT0iMTAiIHI9IjMiLz48Y2lyY2xlIGN4PSI0MjYiIGN5PSIxMCIgcj0iMyIvPjxjaXJjbGUgY3g9IjQ1OCIgY3k9IjEwIiByPSIzIi8+PGNpcmNsZSBjeD0iNDkwIiBjeT0iMTAiIHI9IjMiLz4KICAgIDxjaXJjbGUgY3g9IjEwIiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSI0MiIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iNzQiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjEwNiIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iMTM4IiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSIxNzAiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjIwMiIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iMjM0IiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSIyNjYiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjI5OCIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iMzMwIiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSIzNjIiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjM5NCIgY3k9IjQyIiByPSIzIi8+PGNpcmNsZSBjeD0iNDI2IiBjeT0iNDIiIHI9IjMiLz48Y2lyY2xlIGN4PSI0NTgiIGN5PSI0MiIgcj0iMyIvPjxjaXJjbGUgY3g9IjQ5MCIgY3k9IjQyIiByPSIzIi8+CiAgICA8Y2lyY2xlIGN4PSIxMCIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iNDIiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9Ijc0IiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSIxMDYiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9IjEzOCIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iMTcwIiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSIyMDIiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9IjIzNCIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iMjY2IiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSIyOTgiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9IjMzMCIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iMzYyIiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSIzOTQiIGN5PSI3NCIgcj0iMyIvPjxjaXJjbGUgY3g9IjQyNiIgY3k9Ijc0IiByPSIzIi8+PGNpcmNsZSBjeD0iNDU4IiBjeT0iNzQiIHI9IjMiLz48Y2lyY2xlIGN4PSI0OTAiIGN5PSI3NCIgcj0iMyIvPgogICAgPGNpcmNsZSBjeD0iMTAiIGN5PSIxMDYiIHI9IjMiLz48Y2lyY2xlIGN4PSI0MiIgY3k9IjEwNiIgcj0iMyIvPjxjaXJjbGUgY3g9Ijc0IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMTA2IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMTM4IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMTcwIiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMjAyIiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMjM0IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMjY2IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMjk4IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMzMwIiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMzYyIiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iMzk0IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iNDI2IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iNDU4IiBjeT0iMTA2IiByPSIzIi8+PGNpcmNsZSBjeD0iNDkwIiBjeT0iMTA2IiByPSIzIi8+CiAgPC9nPgo8L3N2Zz4K") repeat;
  opacity: 0.35;
  pointer-events: none;
}

.contact-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-card i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #2e8fc5;
  background: rgba(46, 143, 197, 0.);
}

.contact-card a {
  color: var(--muted);
}

.contact-form {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.form-label {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}

.form-control {
  border: 1px solid #dce8f0;
  min-height: 54px;
  border-radius: 15px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #ffffff;
}

textarea.form-control {
  min-height: 170px;
}

.form-control:focus {
  border-color: rgba(46,143,197,0.6);
  box-shadow: 0 0 0 0.25rem rgba(46,143,197,0.12);
}

.form-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  background: linear-gradient(180deg, var(--primary), #2a7fae);
  padding: 56px 0 26px;
  color: var(--white);
}

.footer-logo {
  width: 210px;
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  transition: background var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-4px);
}

.site-footer p {
  color: rgba(255,255,255,0.78);
  font-size: 0.86rem;
  margin: 0;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 99;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.whatsapp-float {
  left: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #18c657;
  font-size: 1.75rem;
}

.back-to-top {
  right: 22px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
}

.reveal-up,
.reveal-left,
.reveal-scale {
  opacity: 0;
  transition: opacity 750ms ease, transform 750ms ease;
}

.reveal-up {
  transform: translateY(36px);
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

@media (max-width: 1199.98px) {
  .display-4 {
    font-size: 3.25rem;
  }

  .floating-card {
    min-width: 210px;
  }
}

@media (max-width: 991.98px) {
  .site-navbar {
    padding: 12px 0;
  }

  .navbar-collapse {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    margin-top: 12px;
    box-shadow: var(--shadow);
  }

  .navbar .nav-link::after {
    display: none;
  }

  .hero-section .min-vh-100 {
    min-height: auto !important;
    padding-top: 130px !important;
  }

  .display-4 {
    font-size: 2.85rem;
  }

  .section-pad {
    padding: 86px 0;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 42px;
  }

  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .navbar-brand img,
  .site-navbar.scrolled .navbar-brand img {
    width: 150px;
  }

  .display-4 {
    font-size: 2.35rem;
  }

  .hero-text,
  .section-text,
  .section-subtitle {
    font-size: 1rem;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    margin: 10px auto;
    width: 100%;
    max-width: 360px;
  }

  .hero-visual img {
    animation: none;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 72px 0;
  }

  .service-card,
  .case-card,
  .blog-card,
  .contact-card,
  .step-card,
  .contact-form {
    padding: 26px;
  }

  .blog-card {
    padding-top: 76px;
  }

  .cta-section {
    padding-bottom: 72px;
  }

  .cta-box {
    border-radius: 28px;
    padding: 32px;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .brand-pill-wrap {
    justify-content: flex-start;
  }

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

  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .back-to-top {
    right: 16px;
    bottom: 18px;
  }
}
