:root {
  color-scheme: light dark;
  --brand: #5518e5;
  --brand-dark: #4312b8;
  --ink: #111827;
  --muted: #5f6878;
  --surface: #ffffff;
  --surface-soft: #f7f7fb;
  --line: rgba(17, 24, 39, 0.11);
  --shadow: 0 18px 48px rgba(25, 16, 55, 0.08);
}

html { scroll-behavior: smooth; }
body { background: var(--surface); color: var(--ink); text-rendering: optimizeLegibility; }
body, button, input, select, textarea { font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
a, button, input, select, textarea { outline-offset: 3px; }
:focus-visible { outline: 3px solid rgba(85, 24, 229, 0.45); }

.dark {
  --ink: #f4f5f7;
  --muted: #aeb6c5;
  --surface: #0b0d12;
  --surface-soft: #11141b;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}
.dark body { background: var(--surface); color: var(--ink); }

.site-header { background: color-mix(in srgb, var(--surface) 90%, transparent); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.brand-mark { background: var(--brand); color: #fff; box-shadow: 0 8px 18px rgba(85, 24, 229, 0.22); }
.nav-link { color: var(--muted); font-size: .92rem; font-weight: 600; transition: color .2s ease; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--brand); }

.btn { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; gap: .5rem; border-radius: .8rem; padding: .7rem 1rem; font-weight: 700; line-height: 1.15; transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(85, 24, 229, .2); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { border: 1px solid var(--line); background: var(--surface); color: var(--ink); }
.btn-secondary:hover { border-color: rgba(85, 24, 229, .45); color: var(--brand); }
.icon-btn, .lang-btn { display: inline-grid; min-width: 42px; min-height: 42px; place-items: center; border: 1px solid var(--line); border-radius: .7rem; background: var(--surface); }
.lang-btn { min-width: 38px; min-height: 34px; font-size: .75rem; font-weight: 800; }
.lang-btn[aria-pressed="true"] { border-color: var(--brand); background: var(--brand); color: #fff; }

.eyebrow { display: inline-flex; align-items: center; gap: .45rem; color: var(--brand); font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow::before { width: 1.6rem; height: 2px; background: currentColor; content: ""; }
.section-title { max-width: 760px; font-size: clamp(2rem, 4vw, 3.45rem); font-weight: 800; line-height: 1.07; letter-spacing: -.035em; }
.section-copy { max-width: 680px; color: var(--muted); font-size: 1.06rem; line-height: 1.75; }
.section-shell { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.soft-section { background: var(--surface-soft); }

.hero-grid { min-height: calc(100vh - 4rem); display: grid; align-items: center; gap: 3rem; padding-block: clamp(4.5rem, 9vw, 7rem); }
.hero-title { max-width: 760px; font-size: clamp(2.4rem, 4.7vw, 4.65rem); font-weight: 850; line-height: 1.03; letter-spacing: -.045em; }
.hero-title span { color: var(--brand); }
.hero-visual { position: relative; min-height: 470px; border: 1px solid var(--line); border-radius: 2rem; overflow: hidden; background: linear-gradient(145deg, #171322 0%, #0c0d12 68%); box-shadow: var(--shadow); }
.hero-visual::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 34px 34px; content: ""; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.code-window { position: absolute; inset: 2.2rem 1.8rem auto; border: 1px solid rgba(255,255,255,.12); border-radius: 1.15rem; background: rgba(13, 12, 19, .86); color: #dcd7e9; box-shadow: 0 22px 60px rgba(0,0,0,.28); }
.code-top { display: flex; align-items: center; gap: .4rem; padding: .8rem 1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.code-dot { width: .55rem; height: .55rem; border-radius: 50%; background: #6b6578; }
.code-body { padding: 1.3rem; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .8rem; line-height: 1.8; }
.code-key { color: #b99cff; }.code-value { color: #6de3c6; }.code-muted { color: #777083; }
.flow-card { position: absolute; right: 1.2rem; bottom: 1.4rem; width: min(82%, 330px); padding: 1.1rem; border: 1px solid rgba(255,255,255,.13); border-radius: 1rem; background: rgba(255,255,255,.08); color: #fff; backdrop-filter: blur(14px); }
.flow-row { display: flex; align-items: center; gap: .7rem; font-size: .78rem; }
.flow-icon { display: grid; width: 2rem; height: 2rem; flex: 0 0 auto; place-items: center; border-radius: .55rem; background: #5518e5; }
.flow-line { width: 1px; height: 1rem; margin-left: 1rem; background: rgba(255,255,255,.28); }

.card { position: relative; border: 1px solid var(--line); border-radius: 1.25rem; background: var(--surface); box-shadow: var(--shadow); }
.service-card { padding: 1.7rem; transition: transform .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(85, 24, 229, .35); }
.card-icon { display: grid; width: 2.85rem; height: 2.85rem; place-items: center; border-radius: .85rem; background: rgba(85, 24, 229, .09); color: var(--brand); font-size: 1.35rem; }
.solution-chip { display: flex; min-height: 54px; align-items: center; gap: .7rem; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 650; }
.solution-chip i { color: var(--brand); }
.product-panel { overflow: hidden; border-radius: 1.7rem; background: #111019; color: #fff; }
.product-panel .muted { color: #b9b5c4; }
.product-shot { border: 1px solid rgba(255,255,255,.12); border-radius: 1rem; box-shadow: 0 25px 65px rgba(0,0,0,.35); }
.step-number { display: grid; width: 2.4rem; height: 2.4rem; place-items: center; border: 1px solid rgba(85,24,229,.3); border-radius: 999px; color: var(--brand); font-size: .8rem; font-weight: 800; }
.project-card { min-height: 260px; padding: 1.6rem; overflow: hidden; }
.project-card::after { position: absolute; right: -45px; bottom: -55px; width: 160px; height: 160px; border-radius: 2rem; background: rgba(85,24,229,.07); content: ""; transform: rotate(24deg); }
.tech-list { display: flex; flex-wrap: wrap; gap: .55rem; }
.tech-list span { border: 1px solid var(--line); border-radius: 999px; padding: .45rem .75rem; color: var(--muted); font-size: .8rem; font-weight: 650; }
.cta-panel { border-radius: 1.6rem; background: var(--brand); color: #fff; box-shadow: 0 24px 65px rgba(85,24,229,.24); }

.form-control { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: .75rem; background: var(--surface); padding: .75rem .9rem; color: var(--ink); }
.phone-input-group { display: grid; grid-template-columns: minmax(9.5rem, .9fr) minmax(0, 1.1fr); gap: .5rem; }
.country-code-control { cursor: pointer; padding-right: 2rem; font-size: .82rem; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-control[aria-invalid="true"] { border-color: #dc2626; }
.field-error { min-height: 1.15rem; color: #dc2626; font-size: .76rem; }
.form-status { border-radius: .75rem; padding: .75rem .9rem; font-size: .86rem; }
.form-status:empty { display: none; }
.form-status[data-state="success"] { background: rgba(22,163,74,.11); color: #15803d; }
.form-status[data-state="error"] { background: rgba(220,38,38,.1); color: #b91c1c; }
.form-status[data-state="sending"] { background: rgba(85,24,229,.09); color: var(--brand); }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--brand); color: #fff; padding: .7rem 1rem; border-radius: .6rem; }
.skip-link:focus { top: 1rem; }
.wa-float { position: fixed; right: 1rem; bottom: 1rem; z-index: 40; display: inline-flex; min-width: 48px; min-height: 48px; align-items: center; justify-content: center; gap: .55rem; border-radius: 999px; background: #16a34a; color: #fff; padding: .75rem 1rem; font-weight: 800; box-shadow: 0 14px 35px rgba(22,163,74,.3); }
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }
@media (min-width: 1024px) and (max-width: 1279px) {
  .site-header nav > .hidden.lg\:flex { display: none !important; }
  [data-mobile-menu]:not(.hidden) { display: block !important; }
}
@media (min-width: 1280px) { [data-menu-toggle] { display: none; } }
@media (max-width: 1023px) { .hero-visual { min-height: 420px; } }
@media (max-width: 640px) { .wa-float span { display: none; }.hero-visual { min-height: 365px; }.code-window { inset: 1rem .8rem auto; }.flow-card { bottom: .8rem; right: .8rem; }.section-shell { padding-block: 4rem; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } [data-reveal] { opacity: 1; transform: none; } }

body {
  background-image:
    radial-gradient(circle at 8% 9%, rgba(85, 24, 229, .07), transparent 24rem),
    radial-gradient(circle at 92% 28%, rgba(0, 199, 190, .055), transparent 24rem);
  background-attachment: fixed;
}

.corporate-hero {
  position: relative;
  isolation: isolate;
}

.corporate-hero::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  left: -7%;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(85, 24, 229, .11);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5rem rgba(85, 24, 229, .025), 0 0 0 10rem rgba(85, 24, 229, .018);
}

.corporate-hero::after {
  position: absolute;
  z-index: -1;
  right: -4%;
  bottom: 7%;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 1.8rem;
  background: linear-gradient(145deg, rgba(85, 24, 229, .13), rgba(0, 199, 190, .09));
  content: "";
  transform: rotate(18deg);
}

.corporate-hero .eyebrow {
  border: 1px solid rgba(85, 24, 229, .17);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  padding: .55rem .85rem;
  box-shadow: 0 8px 28px rgba(85, 24, 229, .07);
  backdrop-filter: blur(12px);
}

.corporate-hero .eyebrow::before {
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  box-shadow: 0 0 0 .28rem rgba(85, 24, 229, .1);
}

.hero-title {
  text-wrap: balance;
}

.hero-title span {
  background: linear-gradient(110deg, #5518e5 5%, #7b3ff2 48%, #05a9a2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-visual {
  min-height: 550px;
  border-color: rgba(255, 255, 255, .11);
  border-radius: 2.4rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), transparent 32%),
    radial-gradient(circle at 15% 10%, rgba(123, 63, 242, .32), transparent 36%),
    radial-gradient(circle at 92% 82%, rgba(5, 169, 162, .21), transparent 32%),
    #0b0912;
  box-shadow: 0 45px 90px -35px rgba(31, 17, 67, .55), inset 0 1px 0 rgba(255, 255, 255, .1);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1.5deg);
}

.hero-visual::after {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 1.75rem;
  content: "";
  pointer-events: none;
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.visual-glow-one {
  top: 2.4rem;
  right: 2.8rem;
  width: .7rem;
  height: .7rem;
  background: #7b3ff2;
  box-shadow: 0 0 2rem .8rem rgba(123, 63, 242, .45);
}

.visual-glow-two {
  bottom: 5.5rem;
  left: 2.2rem;
  width: .55rem;
  height: .55rem;
  background: #14d8cd;
  box-shadow: 0 0 2rem .75rem rgba(20, 216, 205, .34);
}

.code-window {
  inset: 3rem 2.3rem auto;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(10, 8, 16, .78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
  transform: rotate(-1.2deg);
}

.code-top {
  background: rgba(255, 255, 255, .025);
}

.flow-card {
  right: 1.8rem;
  bottom: 2rem;
  border-color: rgba(255, 255, 255, .16);
  background: linear-gradient(145deg, rgba(34, 29, 48, .92), rgba(17, 15, 25, .88));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  transform: rotate(1.6deg);
}

.flow-icon {
  background: linear-gradient(145deg, #6d2df0, #4511bd);
  box-shadow: 0 8px 18px rgba(85, 24, 229, .3);
}

@media (max-width: 1023px) {
  .hero-visual { min-height: 480px; transform: none; }
}

@media (max-width: 640px) {
  .corporate-hero::before { width: 19rem; height: 19rem; left: -40%; }
  .corporate-hero::after { display: none; }
  .hero-visual { min-height: 410px; border-radius: 1.7rem; }
  .code-window { inset: 1.25rem .85rem auto; }
  .flow-card { right: .85rem; bottom: .9rem; }
}

.section-shell {
  position: relative;
  overflow: hidden;
}

.section-title {
  text-wrap: balance;
}

.visual-services {
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(85, 24, 229, .3), transparent 27rem),
    radial-gradient(circle at 88% 82%, rgba(5, 169, 162, .15), transparent 24rem),
    #0c0a12;
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
  color: #f8f7fb;
}

.visual-services::before {
  position: absolute;
  top: -10rem;
  right: -7rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, .018), 0 0 0 8rem rgba(255, 255, 255, .012);
}

.visual-services .section-copy { color: #aaa6b4; }
.visual-services .eyebrow { color: #9f7cff; }

.services-bento {
  counter-reset: service-card;
}

.visual-services .service-card {
  counter-increment: service-card;
  min-height: 280px;
  border-color: rgba(255, 255, 255, .09);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .018));
  box-shadow: none;
  color: #f8f7fb;
  isolation: isolate;
  overflow: hidden;
}

.visual-services .service-card::before {
  position: absolute;
  z-index: -1;
  right: 1rem;
  bottom: -.45rem;
  color: rgba(255, 255, 255, .035);
  content: "0" counter(service-card);
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.08em;
}

.visual-services .service-card::after {
  position: absolute;
  z-index: -1;
  inset: auto -30% -65% 45%;
  height: 13rem;
  border-radius: 50%;
  background: rgba(85, 24, 229, .14);
  content: "";
  filter: blur(35px);
  transition: background .3s ease, transform .3s ease;
}

.visual-services .service-card:nth-child(2n)::after { background: rgba(5, 169, 162, .1); }
.visual-services .service-card:hover { border-color: rgba(159, 124, 255, .46); background: linear-gradient(145deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .025)); }
.visual-services .service-card:hover::after { transform: translate(-1rem, -1rem) scale(1.2); }
.visual-services .service-card p { color: #aaa6b4 !important; }
.visual-services .card-icon { border: 1px solid rgba(159, 124, 255, .25); background: rgba(85, 24, 229, .18); color: #b89cff; }
.visual-services .service-card:nth-child(2n) .card-icon { border-color: rgba(20, 216, 205, .2); background: rgba(20, 216, 205, .1); color: #52ddd4; }
.visual-services .btn-secondary { border-color: rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .06); color: #fff; }

@media (min-width: 1280px) {
  .services-bento { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .services-bento .service-card:nth-child(1), .services-bento .service-card:nth-child(4) { grid-column: span 2; }
}

#soluciones {
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

#soluciones > .container {
  position: relative;
  border: 1px solid rgba(85, 24, 229, .13);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 100% 0, rgba(85, 24, 229, .09), transparent 23rem),
    color-mix(in srgb, var(--surface-soft) 70%, var(--surface));
  padding: clamp(2rem, 5vw, 4.6rem);
  box-shadow: 0 30px 90px -55px rgba(85, 24, 229, .42);
}

#soluciones > .container::after {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(85, 24, 229, .2);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 .65rem var(--surface-soft), inset 0 0 0 .78rem rgba(85, 24, 229, .15);
}

#soluciones .solution-chip {
  position: relative;
  min-height: 62px;
  border-bottom-color: rgba(85, 24, 229, .1);
  transition: color .2s ease, transform .2s ease;
}

#soluciones .solution-chip:hover { color: var(--brand); transform: translateX(.35rem); }
#soluciones .solution-chip i { font-size: 1.2rem; }

[aria-labelledby="product-title"] {
  background: transparent;
}

.product-panel {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 2.25rem;
  background:
    linear-gradient(125deg, rgba(85, 24, 229, .32), transparent 42%),
    radial-gradient(circle at 92% 10%, rgba(20, 216, 205, .17), transparent 25rem),
    #0b0911;
  box-shadow: 0 45px 100px -55px rgba(31, 17, 67, .72);
}

.product-panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 20px 20px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.product-panel::after {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -7%;
  width: 38%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 2rem;
  content: "";
  transform: rotate(8deg);
}

.product-shot {
  border-color: rgba(255, 255, 255, .18);
  box-shadow: -25px 35px 80px rgba(0, 0, 0, .42);
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg) translateX(2%);
  transition: transform .45s ease;
}

.product-panel:hover .product-shot { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateX(0); }

[aria-labelledby="process-title"] {
  background-image: linear-gradient(90deg, transparent 49.95%, rgba(85, 24, 229, .045) 50%, transparent 50.05%);
}

[aria-labelledby="process-title"] ol {
  position: relative;
  counter-reset: process;
}

[aria-labelledby="process-title"] ol::before {
  position: absolute;
  top: 1.2rem;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(90deg, rgba(85, 24, 229, .08), rgba(85, 24, 229, .42), rgba(20, 216, 205, .35), rgba(20, 216, 205, .06));
  content: "";
}

[aria-labelledby="process-title"] ol li {
  position: relative;
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  padding: 1.25rem;
  box-shadow: 0 20px 50px -38px rgba(23, 13, 52, .34);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease;
}

[aria-labelledby="process-title"] ol li:hover { border-color: rgba(85, 24, 229, .28); transform: translateY(-4px); }
[aria-labelledby="process-title"] ol .step-number { flex: 0 0 auto; background: var(--surface); box-shadow: 0 0 0 .45rem color-mix(in srgb, var(--surface) 78%, transparent); }

[aria-labelledby="projects-title"] {
  background:
    radial-gradient(circle at 6% 90%, rgba(85, 24, 229, .08), transparent 23rem),
    var(--surface-soft);
}

[aria-labelledby="projects-title"] .project-card {
  min-height: 290px;
  border: 0;
  color: #fff;
  box-shadow: 0 25px 65px -42px rgba(18, 9, 40, .8);
}

[aria-labelledby="projects-title"] .project-card::before {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 .65rem rgba(255, 255, 255, .025);
}

[aria-labelledby="projects-title"] .project-card::after { width: 210px; height: 210px; background: rgba(255, 255, 255, .055); }
[aria-labelledby="projects-title"] .project-card:nth-child(1) { background: linear-gradient(145deg, #5a20d5, #2a1160); }
[aria-labelledby="projects-title"] .project-card:nth-child(2) { background: linear-gradient(145deg, #10263b, #07131f); }
[aria-labelledby="projects-title"] .project-card:nth-child(3) { background: linear-gradient(145deg, #292032, #120e17); }
[aria-labelledby="projects-title"] .project-card:nth-child(4) { background: linear-gradient(145deg, #103a39, #071c1b); }
[aria-labelledby="projects-title"] .project-card:nth-child(5) { background: linear-gradient(145deg, #332055, #160e27); }
[aria-labelledby="projects-title"] .card-icon { border: 1px solid rgba(255, 255, 255, .13); background: rgba(255, 255, 255, .08); color: #fff; }

@media (min-width: 1280px) {
  [aria-labelledby="projects-title"] .grid:has(> .project-card) { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
  [aria-labelledby="projects-title"] .project-card:nth-child(1), [aria-labelledby="projects-title"] .project-card:nth-child(2), [aria-labelledby="projects-title"] .project-card:nth-child(3) { grid-column: span 2; }
  [aria-labelledby="projects-title"] .project-card:nth-child(4), [aria-labelledby="projects-title"] .project-card:nth-child(5) { grid-column: span 3; min-height: 240px; }
}

[aria-labelledby="tech-title"] > .container {
  align-items: center;
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.tech-list span {
  position: relative;
  border-radius: 1rem;
  background: var(--surface-soft);
  padding: 1rem 1rem 1rem 2.4rem;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease;
}

.tech-list span::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 .25rem rgba(85, 24, 229, .09);
  content: "";
  transform: translateY(-50%);
}

.tech-list span:nth-child(3n)::before { background: #05a9a2; box-shadow: 0 0 0 .25rem rgba(5, 169, 162, .09); }
.tech-list span:hover { border-color: rgba(85, 24, 229, .27); transform: translateY(-2px); }

#nosotros {
  background:
    radial-gradient(circle at 82% 22%, rgba(85, 24, 229, .08), transparent 25rem),
    var(--surface-soft);
}

#nosotros .aspect-square {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 76% 20%, rgba(20, 216, 205, .24), transparent 10rem),
    radial-gradient(circle at 15% 85%, rgba(85, 24, 229, .55), transparent 14rem),
    #0c0a12;
  box-shadow: 0 35px 75px -45px rgba(18, 9, 40, .7);
  transform: rotate(-2deg);
}

#nosotros .aspect-square::before {
  position: absolute;
  z-index: -1;
  inset: 1.2rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.5rem;
  content: "";
}

#nosotros .aspect-square::after {
  position: absolute;
  z-index: -1;
  top: 2rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 1.3rem rgba(255, 255, 255, .025), 0 0 0 2.6rem rgba(255, 255, 255, .018);
}

.contact-stage::before {
  position: absolute;
  top: 5%;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(85, 24, 229, .1);
  border-radius: 50%;
  content: "";
}

.cta-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 3% 5%, rgba(20, 216, 205, .22), transparent 22rem),
    radial-gradient(circle at 96% 90%, rgba(126, 72, 245, .6), transparent 30rem),
    #351092;
}

.cta-panel::before {
  position: absolute;
  z-index: -1;
  top: -10rem;
  right: -7rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 3.5rem rgba(255, 255, 255, .025), 0 0 0 7rem rgba(255, 255, 255, .018);
}

.cta-panel form {
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 30px 75px -35px rgba(10, 4, 30, .58);
  backdrop-filter: blur(18px);
}

.corporate-footer {
  border-top: 0 !important;
  background: #0b0910;
  color: #f7f5fa;
}

.corporate-footer .nav-link { color: #aaa6b4; }
.corporate-footer .nav-link:hover { color: #b89cff; }
.corporate-footer [style*="color:var(--muted)"] { color: #aaa6b4 !important; }

body:has([data-i18n="pageServicesTitle"]) main > .soft-section:first-child,
body:has([data-i18n="pageProjectsTitle"]) main > .soft-section:first-child {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    radial-gradient(circle at 50% -10%, rgba(85, 24, 229, .52), transparent 31rem),
    radial-gradient(circle at 92% 88%, rgba(5, 169, 162, .16), transparent 24rem),
    #0b0910;
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  color: #fff;
}

body:has([data-i18n="pageServicesTitle"]) main > .soft-section:first-child::before,
body:has([data-i18n="pageProjectsTitle"]) main > .soft-section:first-child::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(80vw, 56rem);
  height: min(80vw, 56rem);
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, .012), 0 0 0 10rem rgba(255, 255, 255, .009);
  transform: translate(-50%, -50%);
}

body:has([data-i18n="pageServicesTitle"]) main > .soft-section:first-child .section-copy,
body:has([data-i18n="pageProjectsTitle"]) main > .soft-section:first-child .section-copy { color: #b9b5c4; }
body:has([data-i18n="pageServicesTitle"]) main > .soft-section:first-child .eyebrow,
body:has([data-i18n="pageProjectsTitle"]) main > .soft-section:first-child .eyebrow { color: #b89cff; }

body:has([data-i18n="pageServicesTitle"]) main > section:nth-child(2) .service-card {
  overflow: hidden;
  min-height: 540px;
  border-color: rgba(85, 24, 229, .12);
  background:
    radial-gradient(circle at 100% 0, rgba(85, 24, 229, .075), transparent 15rem),
    var(--surface);
  box-shadow: 0 28px 70px -48px rgba(31, 17, 67, .52);
}

body:has([data-i18n="pageServicesTitle"]) main > section:nth-child(2) .service-card::after {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(85, 24, 229, .08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 2rem rgba(85, 24, 229, .018);
}

body:has([data-i18n="pageServicesTitle"]) main > section:nth-child(2) .service-card:nth-child(2n) {
  background: radial-gradient(circle at 100% 0, rgba(5, 169, 162, .065), transparent 15rem), var(--surface);
}

body:has([data-i18n="pageProjectsTitle"]) main > section:nth-child(2) .service-card {
  overflow: hidden;
  border: 0;
  color: #fff;
  background: linear-gradient(145deg, #27144d, #0d0a14);
  box-shadow: 0 30px 70px -48px rgba(15, 7, 34, .8);
}

body:has([data-i18n="pageProjectsTitle"]) main > section:nth-child(2) .service-card:nth-child(2) { background: linear-gradient(145deg, #0e3434, #081616); }
body:has([data-i18n="pageProjectsTitle"]) main > section:nth-child(2) .service-card:nth-child(3) { background: linear-gradient(145deg, #302032, #120e17); }
body:has([data-i18n="pageProjectsTitle"]) main > section:nth-child(2) .service-card:nth-child(4) { background: linear-gradient(145deg, #102a42, #08131f); }
body:has([data-i18n="pageProjectsTitle"]) main > section:nth-child(2) .service-card:nth-child(5) { background: linear-gradient(145deg, #5120ba, #241054); }
body:has([data-i18n="pageProjectsTitle"]) main > section:nth-child(2) .service-card .card-icon { border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .08); color: #fff; }
body:has([data-i18n="pageProjectsTitle"]) main > section:nth-child(2) .service-card dt { color: #bda7f5; }
body:has([data-i18n="pageProjectsTitle"]) main > section:nth-child(2) .service-card dd { color: #c1bdc9; }

.experience-grid .project-card {
  display: flex;
  min-height: 250px !important;
  flex-direction: column;
  padding: 1.4rem;
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.project-type {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  padding: .38rem .65rem;
  color: rgba(255, 255, 255, .72);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.project-summary {
  margin-top: .75rem;
  color: rgba(255, 255, 255, .68);
  font-size: .86rem;
  line-height: 1.65;
}

.project-capability {
  margin-top: auto;
  padding-top: 1.1rem;
  color: rgba(255, 255, 255, .88);
  font-size: .73rem;
  font-weight: 750;
}

html:not(.dark) {
  --surface: #fdfcff;
  --surface-soft: #f4f2fa;
  --line: rgba(42, 30, 70, .13);
  --muted: #586174;
}

html:not(.dark) body {
  background-color: #fdfcff;
  background-image:
    radial-gradient(circle at 4% 7%, rgba(85, 24, 229, .08), transparent 25rem),
    radial-gradient(circle at 96% 34%, rgba(5, 169, 162, .065), transparent 27rem),
    linear-gradient(180deg, #fdfcff, #f8f7fc 58%, #fdfcff);
}

html:not(.dark) .site-header {
  border-bottom-color: rgba(42, 30, 70, .09);
  background: rgba(253, 252, 255, .88);
  box-shadow: 0 9px 30px rgba(36, 22, 67, .035);
}

html:not(.dark) .corporate-hero::before {
  border-color: rgba(85, 24, 229, .1);
  box-shadow: 0 0 0 5rem rgba(85, 24, 229, .035), 0 0 0 10rem rgba(85, 24, 229, .02);
}

html:not(.dark) #soluciones {
  background:
    radial-gradient(circle at 0 45%, rgba(85, 24, 229, .055), transparent 23rem),
    linear-gradient(180deg, #fdfcff, #f7f4ff 52%, #fafcff);
}

html:not(.dark) #soluciones > .container {
  border-color: rgba(85, 24, 229, .17);
  background:
    radial-gradient(circle at 100% 0, rgba(85, 24, 229, .1), transparent 24rem),
    rgba(255, 255, 255, .82);
  box-shadow: 0 30px 75px -45px rgba(85, 24, 229, .3), inset 0 1px 0 #fff;
  backdrop-filter: blur(14px);
}

html:not(.dark) #soluciones > .container::after {
  box-shadow: inset 0 0 0 .65rem #fbfaff, inset 0 0 0 .78rem rgba(85, 24, 229, .18);
}

html:not(.dark) [aria-labelledby="product-title"] {
  background:
    radial-gradient(circle at 100% 10%, rgba(5, 169, 162, .06), transparent 24rem),
    linear-gradient(180deg, #fafcff, #f5f3fb 48%, #fbfaff);
}

html:not(.dark) [aria-labelledby="process-title"] {
  background:
    radial-gradient(circle at 88% 50%, rgba(5, 169, 162, .055), transparent 22rem),
    linear-gradient(180deg, #fbfaff, #f7f6fb);
}

html:not(.dark) [aria-labelledby="process-title"] ol li {
  border-color: rgba(67, 48, 103, .14);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 45px -34px rgba(62, 35, 115, .32), inset 0 1px 0 #fff;
}

html:not(.dark) [aria-labelledby="projects-title"] {
  background:
    radial-gradient(circle at 5% 88%, rgba(85, 24, 229, .1), transparent 25rem),
    radial-gradient(circle at 95% 12%, rgba(5, 169, 162, .055), transparent 22rem),
    #f1eef8;
}

html:not(.dark) [aria-labelledby="projects-title"] .project-card {
  border: 1px solid rgba(57, 40, 92, .13);
  background: rgba(255, 255, 255, .8);
  color: #171222;
  box-shadow: 0 20px 55px -38px rgba(54, 28, 105, .34), inset 0 1px 0 #fff;
  backdrop-filter: blur(12px);
}

html:not(.dark) [aria-labelledby="projects-title"] .project-card:nth-child(1) { background: linear-gradient(145deg, rgba(111, 57, 232, .13), rgba(255, 255, 255, .86)); }
html:not(.dark) [aria-labelledby="projects-title"] .project-card:nth-child(2) { background: linear-gradient(145deg, rgba(5, 169, 162, .1), rgba(255, 255, 255, .88)); }
html:not(.dark) [aria-labelledby="projects-title"] .project-card:nth-child(3) { background: linear-gradient(145deg, rgba(111, 72, 111, .1), rgba(255, 255, 255, .88)); }
html:not(.dark) [aria-labelledby="projects-title"] .project-card:nth-child(4) { background: linear-gradient(145deg, rgba(27, 124, 118, .1), rgba(255, 255, 255, .88)); }
html:not(.dark) [aria-labelledby="projects-title"] .project-card:nth-child(5) { background: linear-gradient(145deg, rgba(85, 24, 229, .11), rgba(255, 255, 255, .88)); }
html:not(.dark) [aria-labelledby="projects-title"] .project-card::before { border-color: rgba(85, 24, 229, .12); box-shadow: inset 0 0 0 .65rem rgba(85, 24, 229, .025); }
html:not(.dark) [aria-labelledby="projects-title"] .project-card::after { background: rgba(85, 24, 229, .035); }
html:not(.dark) [aria-labelledby="projects-title"] .card-icon { border-color: rgba(85, 24, 229, .14); background: rgba(85, 24, 229, .08); color: var(--brand); }
html:not(.dark) [aria-labelledby="projects-title"] .project-type { border-color: rgba(85, 24, 229, .13); background: rgba(85, 24, 229, .055); color: #5e526f; }
html:not(.dark) [aria-labelledby="projects-title"] .project-summary { color: #625b6e; }
html:not(.dark) [aria-labelledby="projects-title"] .project-capability { color: #4f1bb8; }

html:not(.dark) [aria-labelledby="tech-title"] {
  background:
    linear-gradient(105deg, transparent 55%, rgba(5, 169, 162, .045)),
    #faf9fd;
}

html:not(.dark) .tech-list span {
  border-color: rgba(58, 42, 88, .14);
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 12px 32px -28px rgba(49, 25, 99, .35);
}

html:not(.dark) #nosotros {
  background:
    radial-gradient(circle at 82% 22%, rgba(85, 24, 229, .12), transparent 26rem),
    radial-gradient(circle at 10% 84%, rgba(5, 169, 162, .05), transparent 20rem),
    #efedf7;
}

html:not(.dark) .contact-stage {
  background: linear-gradient(180deg, #f9f8fc, #fdfcff);
}

html:not(.dark) .cta-panel form .form-control {
  border-color: #d5cee3;
  background: #fbfafd;
}

html:not(.dark) .cta-panel form .form-control:focus {
  border-color: rgba(85, 24, 229, .55);
  box-shadow: 0 0 0 3px rgba(85, 24, 229, .08);
}

@media (min-width: 1280px) {
  .experience-grid .project-card { min-height: 245px !important; }
  .experience-grid .project-card:nth-child(4), .experience-grid .project-card:nth-child(5) { min-height: 225px !important; }
}

@media (max-width: 1023px) {
  .product-panel { min-height: auto; }
  .product-shot { transform: none; }
  [aria-labelledby="process-title"] ol::before { display: none; }
}

@media (max-width: 640px) {
  #soluciones > .container { border-right: 0; border-left: 0; border-radius: 0; }
  #soluciones > .container::after { display: none; }
  .visual-services .service-card { min-height: 245px; }
  .product-panel, .cta-panel { border-radius: 1.6rem; }
  .tech-list { grid-template-columns: 1fr; }
  #nosotros .aspect-square { transform: none; }
}

/* Composición móvil de la portada */
@media (max-width: 640px) {
  html { scroll-padding-top: 4rem; }
  body { overflow-x: clip; }

  .container { padding-right: 1.25rem; padding-left: 1.25rem; }
  .site-header nav { height: 3.75rem; }
  .site-header .brand-mark { width: 1.85rem; height: 1.85rem; border-radius: .55rem; font-size: .7rem; }
  .site-header nav > a { gap: .5rem; font-size: .88rem; }
  .site-header nav > a .hidden.sm\:inline { display: inline !important; }
  .site-header .icon-btn { min-width: 40px; min-height: 40px; }

  .section-shell { padding-block: 3.4rem; }
  .section-title { max-width: 21rem; font-size: clamp(1.78rem, 8.2vw, 2.05rem); line-height: 1.08; letter-spacing: -.04em; }
  .section-copy { font-size: .95rem; line-height: 1.65; }
  .eyebrow { gap: .38rem; font-size: .65rem; letter-spacing: .075em; }
  .eyebrow::before { width: 1.1rem; }

  .corporate-hero {
    min-height: auto;
    gap: 2.15rem;
    padding-top: 3rem;
    padding-bottom: 3.4rem;
  }
  .corporate-hero .eyebrow { max-width: 19rem; }
  .hero-title { max-width: 21rem; margin-top: 1rem; font-size: clamp(2.18rem, 10.5vw, 2.55rem); line-height: 1.01; letter-spacing: -.05em; }
  .corporate-hero .section-copy { margin-top: 1.15rem; font-size: .96rem; line-height: 1.6; }
  .corporate-hero > div:first-child > .mt-8 { display: grid; grid-template-columns: 1fr; gap: .65rem; margin-top: 1.4rem; }
  .corporate-hero > div:first-child > .mt-8 .btn { width: 100%; }
  .corporate-hero > div:first-child > .mt-7 { align-items: flex-start; gap: .55rem; margin-top: 1.15rem; font-size: .75rem; }
  .hero-visual { min-height: 315px; border-radius: 1.35rem; }
  .code-window { inset: .8rem .7rem auto; border-radius: .9rem; }
  .code-top { padding: .62rem .75rem; }
  .code-body { padding: .85rem; font-size: .67rem; line-height: 1.62; }
  .flow-card { right: .65rem; bottom: .65rem; width: 76%; padding: .75rem; border-radius: .8rem; }
  .flow-row { gap: .5rem; font-size: .68rem; }
  .flow-icon { width: 1.65rem; height: 1.65rem; border-radius: .45rem; }
  .flow-line { height: .65rem; margin-left: .82rem; }

  .visual-services .section-copy { margin-top: 1rem; }
  .services-bento { gap: .8rem; margin-top: 1.75rem; }
  .visual-services .service-card { min-height: 0; padding: 1.15rem; border-radius: 1rem; }
  .visual-services .service-card::before { right: .8rem; font-size: 4.5rem; }
  .visual-services .card-icon { width: 2.35rem; height: 2.35rem; border-radius: .7rem; font-size: 1.05rem; }
  .visual-services .service-card h3 { margin-top: .8rem; font-size: 1.03rem; line-height: 1.25; }
  .visual-services .service-card p { margin-top: .5rem; font-size: .84rem; line-height: 1.55; }
  .visual-services .btn-secondary { width: 100%; margin-top: 1rem; }

  #soluciones { padding-block: 3.4rem; }
  #soluciones > .container {
    width: calc(100% - 2rem);
    gap: 1.6rem;
    border: 1px solid rgba(85, 24, 229, .15);
    border-radius: 1.35rem;
    padding: 1.35rem;
  }
  #soluciones .section-copy { margin-top: 1rem; }
  #soluciones [data-reveal].grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 .75rem; }
  #soluciones .solution-chip { min-height: 50px; gap: .45rem; font-size: .73rem; line-height: 1.25; }
  #soluciones .solution-chip i { flex: 0 0 auto; }

  [aria-labelledby="product-title"] .product-panel { gap: 1.5rem; padding: 1.3rem; border-radius: 1.35rem; }
  [aria-labelledby="product-title"] .product-panel > div > p:first-child { font-size: .65rem; line-height: 1.5; }
  [aria-labelledby="product-title"] #product-title { margin-top: .75rem; font-size: 2rem; }
  [aria-labelledby="product-title"] .muted { margin-top: .8rem; font-size: .9rem; line-height: 1.6; }
  [aria-labelledby="product-title"] .product-panel .mt-8 { display: grid; gap: .6rem; margin-top: 1.15rem; }
  [aria-labelledby="product-title"] .product-panel .btn { width: 100%; }
  .product-shot { border-radius: .75rem; box-shadow: 0 18px 45px rgba(0, 0, 0, .35); }

  [aria-labelledby="process-title"] .section-copy { margin-top: 1rem; }
  [aria-labelledby="process-title"] ol { gap: .75rem; margin-top: 1.75rem; }
  [aria-labelledby="process-title"] ol li { min-height: 0; gap: .8rem; border-radius: 1rem; padding: 1rem; }
  [aria-labelledby="process-title"] ol .step-number { width: 2rem; height: 2rem; font-size: .7rem; box-shadow: none; }
  [aria-labelledby="process-title"] ol h3 { font-size: .92rem; line-height: 1.3; }
  [aria-labelledby="process-title"] ol p { margin-top: .25rem; font-size: .78rem; line-height: 1.5; }

  [aria-labelledby="projects-title"] .container > .flex { gap: 1rem; }
  [aria-labelledby="projects-title"] .section-copy { margin-top: 1rem; }
  [aria-labelledby="projects-title"] .btn-secondary { align-self: flex-start; }
  .experience-grid {
    display: flex !important;
    gap: .85rem;
    margin-top: 1.6rem;
    margin-right: -1.25rem;
    margin-left: -1.25rem;
    overflow-x: auto;
    padding: 0 1.25rem 1rem;
    scroll-padding-left: 1.25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .experience-grid::-webkit-scrollbar { display: none; }
  .experience-grid .project-card { min-height: 228px !important; flex: 0 0 84%; padding: 1.15rem; scroll-snap-align: start; }
  .experience-grid .project-card::before { top: .85rem; right: .85rem; width: 3rem; height: 3rem; }
  .experience-grid .card-icon { width: 2.3rem; height: 2.3rem; font-size: 1rem; }
  .experience-grid .project-type { max-width: 66%; padding: .3rem .5rem; font-size: .58rem; text-align: right; }
  .experience-grid .project-card h3 { margin-top: .9rem; font-size: 1.05rem; }
  .experience-grid .project-summary { margin-top: .45rem; font-size: .78rem; line-height: 1.5; }
  .experience-grid .project-capability { padding-top: .7rem; font-size: .65rem; }

  [aria-labelledby="tech-title"] > .container { gap: 1.6rem; }
  [aria-labelledby="tech-title"] .section-copy { margin-top: 1rem; }
  .tech-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem; }
  .tech-list span { min-height: 44px; border-radius: .75rem; padding: .7rem .55rem .7rem 1.75rem; font-size: .68rem; line-height: 1.25; }
  .tech-list span::before { left: .7rem; width: .45rem; height: .45rem; }

  #nosotros > .container { gap: 1.7rem; }
  #nosotros .aspect-square { max-width: none; aspect-ratio: 16 / 10; border-radius: 1.3rem; padding: 1.25rem; }
  #nosotros .aspect-square::before { inset: .75rem; border-radius: 1rem; }
  #nosotros .aspect-square .brand-mark { width: 2.6rem; height: 2.6rem; border-radius: .8rem; font-size: 1rem; }
  #nosotros .aspect-square p.mt-6 { margin-top: .9rem; font-size: .62rem; }
  #nosotros .aspect-square p.mt-2 { max-width: 15rem; font-size: 1.15rem; line-height: 1.2; }
  #nosotros .section-copy { margin-top: 1rem; }

  #contacto .cta-panel { border-radius: 1.35rem; padding: 1.25rem; }
  #contacto .cta-panel > .grid { gap: 1.5rem; }
  #contact-title { margin-top: .75rem; font-size: 1.95rem; line-height: 1.08; letter-spacing: -.035em; }
  #contacto [data-i18n="contactBody"] { margin-top: .9rem; font-size: .9rem; line-height: 1.6; }
  #contacto .cta-panel > .grid > div > .btn { width: 100%; margin-top: 1rem; }
  #contact-form { border-radius: 1rem; padding: 1rem; }
  #contact-form .form-control { min-height: 46px; margin-top: .35rem; }
  #contact-form .phone-input-group { grid-template-columns: minmax(8.8rem, .95fr) minmax(0, 1.05fr); gap: .45rem; margin-top: .35rem; }
  #contact-form .phone-input-group .form-control { margin-top: 0; padding-right: .55rem; padding-left: .65rem; font-size: .76rem; }
  #contact-form textarea.form-control { min-height: 105px; }
  #contact-form label { font-size: .78rem; }
  #contact-form .field-error { min-height: .75rem; }

  footer { padding-block: 2.5rem !important; }
  footer > .container { gap: 1.5rem; }
  .wa-float { right: .75rem; bottom: .75rem; min-width: 46px; min-height: 46px; padding: .65rem; }
}
