@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --bg: #f6faff;
  --surface: #ffffff;
  --surface-soft: #eef5ff;
  --text: #14253b;
  --muted: #617389;
  --brand: #0d66b5;
  --brand-2: #11a5c9;
  --brand-dark: #0a2342;
  --line: #d7e3f0;
  --radius: 22px;
  --shadow: 0 18px 42px rgba(20, 37, 59, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }

img { max-width: 100%; height: auto; display: block; }

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(17, 165, 201, 0.09), transparent 20%),
    radial-gradient(circle at 94% 0%, rgba(13, 102, 181, 0.08), transparent 18%),
    linear-gradient(180deg, #fbfdff 0%, #f5f9ff 48%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

.container { width: min(1140px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(20, 37, 59, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(20, 37, 59, 0.07);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-wrap { display: flex; align-items: center; gap: 0.7rem; }
.logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand { font-weight: 800; color: var(--brand-dark); font-size: 1.06rem; letter-spacing: 0.01em; font-family: "Space Grotesk", "Manrope", sans-serif; }


.nav-toggle {
  display: none;
  border: 1px solid rgba(20, 37, 59, 0.14);
  background: #fff;
  color: var(--brand-dark);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
}

.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.nav-item-has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: min(920px, 92vw);
  background: #ffffff;
  border: 1px solid #d7e3f0;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(20, 37, 59, 0.12);
  padding: 1.2rem;
  display: none;
  z-index: 90;
}

.nav-item-has-mega:focus-within .mega-menu,
.nav-item-has-mega:hover .mega-menu {
  display: grid;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.mega-menu {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.mega-column h4 {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
}

.mega-column a {
  display: block;
  padding: 0.35rem 0;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
}

.mega-column a:hover {
  color: var(--brand);
}

.nav-links a:hover {
  color: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.18rem;
  border: 1px solid rgba(20, 37, 59, 0.1);
  border-radius: 999px;
  background: #f3f7fb;
}

.lang-switcher__btn {
  border: 0;
  background: transparent;
  color: #617389;
  border-radius: 999px;
  padding: 0.35rem 0.58rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-switcher__btn.is-active {
  background: #ffffff;
  color: var(--brand-dark);
  box-shadow: 0 6px 16px rgba(20, 37, 59, 0.08);
}

.btn {
  display: inline-block;
  padding: 0.84rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: linear-gradient(135deg, var(--brand), #1184ce);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(13, 102, 181, 0.18);
}

.btn:hover { background: linear-gradient(135deg, #0a5a96, #0f71b7); color: #fff; }
.btn-outline {
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 8px 20px rgba(20, 37, 59, 0.05);
}

.hero .btn-outline {
  color: var(--brand);
  border-color: rgba(13, 102, 181, 0.2);
}

.hero .btn-outline:hover {
  background: #f3f8ff;
}

.hero {
  padding: 5.2rem 0 4.3rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(17, 165, 201, 0.14), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(13, 102, 181, 0.12), transparent 28%),
    linear-gradient(180deg, #f4f9ff 0%, #ecf4ff 58%, #ffffff 100%);
  color: var(--text);
  border-bottom: 1px solid rgba(20, 37, 59, 0.06);
}

.hero--compact {
  padding: 3.25rem 0 2.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr;
  gap: 1.4rem;
  align-items: stretch;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.04em;
}

h1, h2, h3 {
  line-height: 1.1;
  margin-top: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 3.4vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.4rem); }

.hero h1 {
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  letter-spacing: -0.03em;
  color: var(--brand-dark);
}

.hero .lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero a:not(.btn) {
  color: var(--brand);
}

.hero a:not(.btn):hover {
  color: var(--brand-dark);
}

.lead { max-width: 68ch; color: var(--muted); }
.actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.2rem; }

.hero-panel,
.card,
.form-wrap,
.info-box,
.metric,
.highlight {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  box-shadow: var(--shadow);
}

.hero-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #d9e6f1;
  color: var(--text);
  box-shadow: 0 20px 44px rgba(20, 37, 59, 0.11);
}

.card,
.form-wrap {
  color: var(--text);
}

.info-box {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: var(--text);
  border: 1px solid #d7e3eb;
}

.info-box .tag {
  background: rgba(13, 99, 165, 0.1);
  border-color: rgba(13, 99, 165, 0.14);
  color: var(--brand-dark);
}

.hero-visual {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #d8e5ef;
  margin-top: 1rem;
}

.tag {
  display: inline-block;
  border-radius: 999px;
  background: rgba(13, 99, 165, 0.1);
  color: var(--brand-dark);
  border: 1px solid rgba(13, 99, 165, 0.14);
  padding: 0.32rem 0.72rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-panel .tag {
  background: rgba(13, 102, 181, 0.08);
  border-color: rgba(13, 102, 181, 0.14);
  color: var(--brand-dark);
}

.section { padding: 4.5rem 0; }
.section.alt {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}
.section-sub { color: var(--muted); }

.industry-snapshots .grid-3 {
  margin-top: 1.15rem;
}

.snapshot-card,
.service-next-step {
  color: var(--muted);
}

.service-next-step {
  margin: 0.4rem 0 0.95rem;
  font-weight: 600;
}

.service-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.service-link-row a {
  display: inline-flex;
  align-items: center;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d7e3f0;
  color: var(--brand-dark);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(20, 37, 59, 0.06);
}

.service-link-row a:hover {
  border-color: #9cc7e7;
  color: var(--brand);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; align-items: start; }

.card ul, .hero-panel ul, .info-box ul { padding-left: 1.1rem; }
.card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  background: linear-gradient(180deg, #ffffff 0%, #fcfeff 100%);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(20, 37, 59, 0.11);
  border-color: #bed7eb;
}

.services-grid .card,
.highlight,
.metric,
.visual-card,
.package-card {
  position: relative;
}

.services-grid .card::before,
.highlight::before,
.metric::before,
.visual-card::before,
.package-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.service-media {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #d7e3eb;
  margin: 0.55rem 0 0.95rem;
  background: #f4f8fc;
}

.service-media--contain {
  object-fit: contain;
  background: linear-gradient(180deg, #f6fbff 0%, #eef4fa 100%);
  padding: 0.65rem;
}

.service-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.1rem;
  align-items: center;
}

.service-block > div {
  min-width: 0;
}


.grid-3 .service-media {
  height: 220px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.2rem;
}

.highlight h3 {
  margin-bottom: 0.4rem;
}

.metric strong {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
  color: var(--brand-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 1.15rem;
  align-items: start;
}

.form-wrap {
  padding: 1.3rem;
}

.contact-form { display: grid; gap: 0.6rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.input-group {
  display: grid;
  gap: 0.35rem;
}

.contact-form label,
.contact-form .consent,
.contact-form .consent span {
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bfd0dc;
  border-radius: 10px;
  padding: 0.72rem;
  font: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #8bc4e0;
  outline-offset: 1px;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.3;
}

.consent span {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.consent input {
  margin-top: 0.15rem;
  margin-right: 0;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}


.contact-meta p { margin: 0.35rem 0; }
.notice { margin-top: 0.7rem; color: var(--muted); font-size: 0.95rem; }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0 1.75rem;
  color: rgba(231, 239, 247, 0.8);
  background: linear-gradient(180deg, #08192d 0%, #0a2342 100%);
}
.site-footer p { margin: 0.2rem 0; overflow-wrap: anywhere; word-break: break-word; }
.site-footer a { color: #8fdbf1; }
.site-footer a:hover { color: #d8f6ff; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem 2rem;
}
.footer-left {
  display: grid;
  gap: 0.15rem;
}
.footer-legal {
  margin: 0.2rem 0;
  max-width: 56ch;
  text-align: right;
}
.footer-legal p {
  margin: 0.1rem 0;
}
.footer-links {
  margin-top: 0.65rem !important;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}
.social-icon {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
.social-whatsapp .social-icon {
  background: #25d366;
}
.social-whatsapp .social-icon::before {
  content: "wa";
}
.social-linkedin .social-icon {
  background: #0a66c2;
}
.social-linkedin .social-icon::before {
  content: "in";
}

@media (max-width: 920px) {
  .hero-grid, .grid-3, .grid-2, .service-block, .contact-layout, .highlight-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .mega-menu {
    position: static;
    width: 100%;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 0.6rem 0 0.2rem;
    grid-template-columns: 1fr;
  }
  .mega-column {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5eef7;
  }
  .mega-column:last-child {
    border-bottom: 0;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-legal {
    max-width: 100%;
    text-align: left;
  }
  .nav-toggle { display: inline-block; }
  .header-actions {
    margin-left: auto;
  }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    border-bottom: 1px solid rgba(20, 37, 59, 0.08);
    background: #ffffff;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav-links { flex-direction: column; gap: 0; padding: 0.7rem 1rem 1rem; }
  .nav-links a { display: block; padding: 0.62rem 0; }
  .lang-switcher__btn {
    padding: 0.34rem 0.52rem;
  }
  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .faq-chatbot {
    right: 0.6rem;
    bottom: 0.6rem;
  }
  .visual-grid {
    grid-template-columns: 1fr;
  }
  .visual-media {
    height: auto;
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(980px, calc(100vw - 1.5rem));
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.8rem 0.95rem;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--text);
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 0.5rem 0.9rem;
}

.faq-chatbot {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + var(--cookie-banner-height, 0px));
  z-index: 1150;
  transition: bottom 0.2s ease;
}

.faq-chatbot-toggle {
  border: 1px solid var(--brand);
  background: linear-gradient(135deg, var(--brand), #1385d4);
  color: #fff;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.faq-chatbot-panel {
  width: min(360px, calc(100vw - 1.2rem));
  max-height: 70vh;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 0.6rem;
  display: grid;
  grid-template-rows: auto minmax(120px, 1fr) auto auto;
  overflow: hidden;
}

.faq-chatbot-panel[hidden] {
  display: none !important;
}

.faq-chatbot-header {
  background: #eef6fb;
  border-bottom: 1px solid var(--line);
  color: var(--brand-dark);
  font-weight: 700;
  padding: 0.7rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.faq-chatbot-minimize {
  border: 1px solid #bfd0dc;
  background: #fff;
  color: var(--brand-dark);
  border-radius: 8px;
  padding: 0.15rem 0.45rem;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.faq-chatbot-messages {
  padding: 0.65rem;
  overflow-y: auto;
  background: #fbfdff;
}

.faq-msg {
  margin: 0.35rem 0;
  padding: 0.48rem 0.62rem;
  border-radius: 10px;
  max-width: 92%;
  font-size: 0.93rem;
}

.faq-msg-bot {
  background: #eef6fb;
  border: 1px solid #d8e7f1;
  color: #0f2a3a;
}

.faq-msg-user {
  margin-left: auto;
  background: #0c5b83;
  border: 1px solid #0c5b83;
  color: #fff;
}

.faq-chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.55rem 0.6rem 0.4rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.faq-chip {
  border: 1px solid #bfd0dc;
  background: #fff;
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.faq-chatbot-hint {
  display: none;
  margin: 0;
  padding: 0.1rem 0.62rem 0.4rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.faq-chatbot-input-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  padding: 0.58rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.faq-chatbot-input {
  border: 1px solid #bfd0dc;
  border-radius: 9px;
  padding: 0.52rem 0.58rem;
  font: inherit;
}

.faq-chatbot-send {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  border-radius: 9px;
  padding: 0.52rem 0.72rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}




.service-block .service-media {
  height: 280px;
}



.contact-meta a { overflow-wrap: anywhere; word-break: break-word; }











.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 999;
  background: var(--brand-dark);
  color: #fff;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.skip-link:focus {
  top: 0.75rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #7fb9d7;
  outline-offset: 2px;
}

.nav-links a[aria-current="page"] {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.form-alert {
  display: none;
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  margin: 0.6rem 0 0.8rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.form-alert.is-visible {
  display: block;
}

.form-alert.is-error {
  background: #fff2f2;
  border-color: #f0b6b6;
  color: #7a1e1e;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.visual-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  box-shadow: var(--shadow);
}

.visual-card h3 {
  margin: 0.6rem 0 0;
  font-size: 1rem;
}

.visual-media {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid #d7e3eb;
  border-radius: 14px;
  background: #eef5f9;
}

.visual-media.service-media--contain {
  object-fit: contain;
}

@media (max-width: 920px) {
  .faq-chatbot-hint {
    display: block;
  }
}

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

.lead-magnet {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(135deg, #eaf5ff 0%, #f8fbff 100%);
  color: var(--text);
  border-color: #dce9f4;
}

.lead-magnet .eyebrow,
.lead-magnet h2,
.lead-magnet p {
  color: inherit;
}

.lead-magnet .btn-outline {
  color: var(--brand);
  border-color: rgba(13, 102, 181, 0.22);
}

.package-card {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.package-card .btn {
  justify-self: start;
  margin-top: 0.2rem;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-magnet {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
