:root {
  --blue: #00a0e3;
  --blue-dark: #006fa3;
  --gray-light: #d9d9d9;
  --gray: #4a4a4a;
  --white: #ffffff;
  --ink: #17212b;
  --muted: #667380;
  --line: #e8eef3;
  --soft: #f5f9fc;
  --shadow: 0 24px 70px rgba(0, 111, 163, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-width: 0;
}

.section {
  padding: 88px 0;
}

.section-compact {
  padding: 34px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 12px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 217, 217, 0.65);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 158px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 26px rgba(0, 160, 227, 0.25);
}

.btn-secondary {
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(0, 160, 227, 0.24);
}

.btn-white {
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 111, 163, 0.22);
}

.whatsapp-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-dark);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 144px 0 82px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.84) 43%, rgba(255, 255, 255, 0.3) 100%);
}

.hero-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 660px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 7vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero p,
.section-copy p,
.mei-box p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-portrait {
  position: relative;
  display: none;
}

.hero-portrait img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 0.84;
  object-fit: cover;
}

.trust-badge {
  position: absolute;
  right: -14px;
  bottom: 28px;
  width: 178px;
  padding: 18px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 111, 163, 0.28);
}

.trust-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  min-height: 132px;
  padding: 24px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(23, 33, 43, 0.06);
}

.stat-card strong,
.stat-card span {
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 5vw, 2.55rem);
  font-weight: 800;
}

.stat-card p {
  margin: 6px 0 0;
  color: var(--gray);
  font-weight: 600;
}

.about,
.process,
.contact {
  background: var(--soft);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  padding: 10px 14px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(0, 160, 227, 0.18);
  border-radius: var(--radius);
  font-weight: 700;
}

.about-panel,
.chart-card,
.contact-form,
.contact-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-panel {
  overflow: hidden;
}

.panel-header {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-header span {
  width: 12px;
  height: 12px;
  background: var(--gray-light);
  border-radius: 999px;
}

.panel-header span:first-child {
  background: var(--blue);
}

.panel-body {
  padding: 34px;
}

.mini-dashboard {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mini-dashboard div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.mini-dashboard span {
  height: 12px;
  background: linear-gradient(90deg, var(--blue), rgba(0, 160, 227, 0.14));
  border-radius: 999px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 160, 227, 0.34);
  box-shadow: var(--shadow);
}

i[data-icon] {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  background: rgba(0, 160, 227, 0.09);
  border-radius: var(--radius);
  font-style: normal;
}

i[data-icon] svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.service-card p,
.testimonial p {
  margin-bottom: 0;
  color: var(--muted);
}

.why {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.section-heading.light .eyebrow,
.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light .eyebrow::before {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.why-grid div {
  min-height: 118px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.why-grid i[data-icon] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.why-grid span {
  display: block;
  font-weight: 700;
}

.mei-box {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(135deg, rgba(0, 160, 227, 0.08), rgba(217, 217, 217, 0.18));
  border: 1px solid rgba(0, 160, 227, 0.16);
  border-radius: var(--radius);
}

.chart-card {
  position: relative;
  min-height: 380px;
  padding: 28px;
  overflow: hidden;
}

.chart-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  color: var(--muted);
  font-weight: 700;
}

.chart-top strong {
  color: var(--blue-dark);
  font-size: 2rem;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 18px;
  height: 210px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
}

.bar-chart span {
  flex: 1;
  height: var(--h);
  min-height: 40px;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius) var(--radius) 0 0;
}

.chart-line {
  position: absolute;
  right: -34px;
  bottom: -68px;
  width: 230px;
  height: 230px;
  border: 34px solid rgba(0, 160, 227, 0.1);
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue-dark);
  font-weight: 800;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 1.25rem;
}

.timeline span {
  font-weight: 700;
}

.testimonial-carousel {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(23, 33, 43, 0.06);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial span {
  color: #f6b91f;
}

.final-cta {
  padding-top: 0;
}

.final-cta-box {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 44px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius);
}

.final-cta-box h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

.contact-grid {
  align-items: start;
}

.contact-form,
.contact-info {
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 160, 227, 0.12);
}

.contact-info iframe {
  width: 100%;
  height: 280px;
  margin-top: 18px;
  border: 0;
  border-radius: var(--radius);
}

.footer {
  color: rgba(255, 255, 255, 0.82);
  background: #17212b;
}

.footer-grid {
  display: grid;
  gap: 30px;
  padding: 54px 0;
}

.footer h3 {
  color: var(--white);
}

.footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer img {
  width: 160px;
  height: auto;
  margin-bottom: 18px;
  filter: brightness(1.08);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a,
.floating-whatsapp {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 800;
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a:nth-child(2) svg,
.socials a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.copyright {
  padding: 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 58px;
  height: 58px;
  box-shadow: 0 18px 38px rgba(0, 160, 227, 0.28);
}

.floating-whatsapp .whatsapp-icon {
  width: 32px;
  height: 32px;
}

[data-aos] {
  transition-duration: 0.7s;
}

@media (min-width: 760px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }

  .hero-portrait {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mei-box,
  .final-cta-box {
    grid-template-columns: 1fr auto;
  }

  .timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .timeline div {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.menu-open .main-nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .main-nav a {
    padding: 13px 10px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero-copy {
    width: min(100%, 330px);
  }

  h1 {
    font-size: 1.92rem;
    line-height: 1.15;
    overflow-wrap: break-word;
  }

  .hero p,
  .section-copy p,
  .mei-box p {
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .btn,
  .header-cta {
    width: 100%;
  }

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

  .mei-box,
  .final-cta-box,
  .contact-form,
  .contact-info {
    padding: 24px;
  }
}
