:root {
  --bg: #eef5f7;
  --bg-2: #f8fbfc;
  --surface: #ffffff;
  --surface-2: #f4f8fa;
  --surface-3: #eaf2f5;
  --text: #153243;
  --muted: #3d5666;
  --line: rgba(21, 50, 67, 0.12);
  --line-strong: rgba(21, 50, 67, 0.18);
  --primary: #1f55c9;
  --primary-2: #17b7dd;
  --accent: #12b8db;
  --accent-soft: rgba(18, 184, 219, 0.12);
  --success: #1aa56f;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(14, 47, 72, 0.09);
  --shadow-soft: 0 18px 40px rgba(14, 47, 72, 0.06);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1160px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(23, 183, 221, 0.06), transparent 24%),
    linear-gradient(180deg, #f6fbfd 0%, #eef5f7 100%);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 8px 16px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.skip-link:focus {
  left: 8px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section,
.page-hero,
.cta-banner,
.hero {
  padding: 84px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.92));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  color: #eaf7fb;
  background:
    radial-gradient(circle at top right, rgba(18, 184, 219, 0.14), transparent 24%),
    linear-gradient(180deg, #0f2534 0%, #153243 100%);
}

.section-dark .section-heading p,
.section-dark .service-detail p,
.section-dark .split-copy p,
.section-dark .info-card p {
  color: #c4d8e2;
}

.section-dark .section-heading h2,
.section-dark .section-heading .eyebrow,
.section-dark h3,
.section-dark h2 {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(246, 251, 253, 0.88);
  border-bottom: 1px solid rgba(21, 50, 67, 0.08);
}

.topbar {
  border-bottom: 1px solid rgba(21, 50, 67, 0.07);
  background: rgba(255, 255, 255, 0.72);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.92rem;
  color: var(--muted);
}

.topbar-inner a:hover {
  color: var(--primary);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.footer-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.hero-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links .active-link {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.96rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 36px rgba(31, 85, 201, 0.24);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.84);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-home {
  padding-top: 76px;
}

.hero-grid,
.split,
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.5vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-text,
.page-hero p,
.section-heading p,
.split-copy p,
.service-detail p,
.contact-info p,
.info-card p,
.brand-group p,
.footer-brand-block p,
.contact-note p,
.form-intro {
  color: var(--muted);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.hero-badges li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.brand-surface,
.info-card,
.service-card,
.service-detail,
.brand-group,
.contact-card,
.form-card,
.quote-panel,
.contact-note,
.stats-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pattern-surface {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245,250,252,0.95));
}

.pattern-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(23, 183, 221, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 183, 221, 0.08) 1px, transparent 1px),
    linear-gradient(150deg, rgba(31, 85, 201, 0.06) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 40px 40px;
  pointer-events: none;
}

.hero-brand-card {
  padding: 28px;
}

.brand-card-text {
  padding: 32px;
}

.text-logo-panel {
  position: relative;
  z-index: 1;
  padding: 28px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 50, 67, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}


.hero-kpis {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.kpi-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  display: grid;
  gap: 6px;
}

.kpi-card strong {
  font-size: 1.55rem;
  color: var(--primary);
}

.kpi-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.grid-3,
.grid-4,
.services-grid,
.brand-groups,
.footer-grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-groups {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.service-card,
.brand-group,
.contact-card {
  padding: 24px;
}

.info-card h3,
.service-card h3,
.brand-group h3,
.contact-card h3,
.timeline-item h3,
.service-detail h2 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.info-card p,
.service-card p,
.brand-group p,
.contact-card p {
  margin: 0;
}

.info-card-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}

.info-card-dark p {
  color: #c4d8e2;
}

.service-icon,
.service-detail-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(31, 85, 201, 0.12), rgba(23, 183, 221, 0.16));
  color: var(--primary);
}

.service-icon svg,
.service-detail-icon svg {
  width: 28px;
  height: 28px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.lang-toggle:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.service-detail-grid {
  display: grid;
  gap: 20px;
}

.service-detail {
  padding: 26px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.check-list.compact {
  margin-top: 16px;
}

.stats-panel {
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-box {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  display: grid;
  gap: 6px;
}

.stat-number,
.stat-plain {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-2);
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero-light {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(245,250,252,0.92)),
    radial-gradient(circle at top right, rgba(18, 184, 219, 0.08), transparent 22%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
}

.quote-panel {
  padding: 36px;
}

.quote-panel blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 24px 24px 86px;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.timeline-step {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
}

.brand-group-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}

.brand-group-dark h3 {
  color: #ffffff;
}

.brand-group-dark .brand-tags span {
  color: #eaf7fb;
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}

.contact-layout {
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-card a {
  color: var(--primary);
  font-weight: 700;
}

.contact-note {
  margin-top: 24px;
  padding: 22px;
}

.contact-note strong {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: var(--primary);
}

.contact-note p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.form-card {
  padding: 28px;
}

.form-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.form-intro {
  margin-top: 0;
  margin-bottom: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(245, 250, 252, 0.92);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: #7c8d98;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(23, 183, 221, 0.54);
  box-shadow: 0 0 0 4px rgba(23, 183, 221, 0.12);
  background: #ffffff;
}

.field.invalid input,
.field.invalid textarea,
.field.invalid select {
  border-color: rgba(210, 78, 78, 0.7);
  box-shadow: 0 0 0 4px rgba(210, 78, 78, 0.08);
}

.helper-text,
.error-message,
.form-success {
  font-size: 0.92rem;
}

.helper-text {
  color: var(--muted);
}

.error-message {
  min-height: 18px;
  color: #cc4b4b;
}

.turnstile-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  border: 1px dashed rgba(21, 50, 67, 0.18);
  background: rgba(245, 250, 252, 0.92);
  padding: 10px;
}

.form-success {
  margin: 16px 0 0;
  color: var(--success);
  font-weight: 700;
}

.cta-banner {
  background:
    linear-gradient(135deg, rgba(31, 85, 201, 0.08), rgba(23, 183, 221, 0.11)),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(248,251,252,0.92));
  border-top: 1px solid var(--line);
}

.cta-banner-inner {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.cta-banner-inner p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 68px 0 24px;
  background: rgba(255,255,255,0.78);
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: 1.25fr 0.8fr 0.8fr 0.9fr;
  align-items: start;
}

.footer-brand-block {
  max-width: 380px;
}


.site-footer h4 {
  margin: 0 0 12px;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
}

.site-footer li a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #10a46f, #0dc98e);
  box-shadow: 0 18px 36px rgba(16, 164, 111, 0.26);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .contact-layout,
  .services-grid,
  .grid-4,
  .grid-3,
  .brand-groups,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid,
  .grid-4,
  .grid-3,
  .brand-groups,
  .footer-grid {
    gap: 18px;
  }

  .hero-grid,
  .split,
  .contact-layout {
    align-items: start;
  }

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 10px 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .btn {
    width: 100%;
  }

  .hero-grid,
  .split,
  .contact-layout,
  .grid-4,
  .grid-3,
  .services-grid,
  .brand-groups,
  .footer-grid,
  .form-grid,
  .stats-panel {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .section,
  .cta-banner,
  .hero {
    padding: 72px 0;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .topbar {
    display: none;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .brand-logo {
    height: 26px;
  }

  .text-logo-panel {
    padding: 22px 16px;
  }

  .service-card,
  .info-card,
  .brand-group,
  .contact-card,
  .form-card,
  .timeline-item,
  .service-detail,
  .cta-banner-inner {
    padding: 20px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}