:root {
  --bg: oklch(0.98 0.01 240);
  --surface: oklch(1 0 0);
  --surface-2: oklch(0.96 0.01 240);
  --text: oklch(0.25 0.03 250);
  --muted: oklch(0.52 0.03 245);
  --line: oklch(0.89 0.02 240);
  --primary: oklch(0.6 0.15 233);
  --primary-strong: oklch(0.52 0.16 233);
  --accent: oklch(0.77 0.14 86);
  --shadow: 0 20px 60px rgba(7, 30, 52, 0.10);
  --shadow-soft: 0 12px 30px rgba(7, 30, 52, 0.07);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11, 126, 180, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 210, 90, 0.16), transparent 26%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 25%, #f8fafc 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.75; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 1000;
  background: #fff; padding: .75rem 1rem; border-radius: 999px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.55);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}

.brand img { width: 140px; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color .2s ease, transform .2s ease;
}
.site-nav a:hover { color: var(--primary-strong); transform: translateY(-1px); }
.nav-cta {
  padding: .8rem 1.15rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white !important;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.menu-toggle {
  display: none;
  width: 48px; height: 48px; border: 0; border-radius: 14px;
  background: white; box-shadow: var(--shadow-soft); cursor: pointer;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px; background: var(--text); margin: 4px auto;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(11,126,180,0.10);
  color: var(--primary-strong);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.hero h1, .section-head h2, .about-copy h2, .cta-inner h2, .region-grid h2 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.hero h1 {
  font-size: clamp(2.7rem, 8vw, 5.6rem);
  max-width: 11ch;
}
.hero h1 span {
  color: var(--primary-strong);
}
.lead {
  font-size: 1.075rem;
  color: var(--muted);
  max-width: 62ch;
  margin: 1.25rem 0 0;
}
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.75rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 16px 35px rgba(11,126,180,0.23);
}
.button-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: .75rem;
}
.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-weight: 600;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0; top: .62rem;
  width: .55rem; height: .55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: white;
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-main {
  inset: 0 2.5rem 0 0;
}
.hero-card-floating {
  width: 52%;
  height: 42%;
  right: 0;
  bottom: 1.5rem;
  border: 8px solid rgba(255,255,255,0.95);
}

.trust-bar {
  padding-bottom: 1rem;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.trust-items > div {
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.trust-items strong { display: block; font-size: 1rem; }
.trust-items span { color: var(--muted); font-size: .95rem; }

.section { padding: 5.5rem 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(242,247,251,0.85));
  border-block: 1px solid rgba(11,126,180,0.06);
}
.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section-head h2, .region-grid h2, .about-copy h2, .cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}
.section-head p:last-child { color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card, .region-cards article, .quote-card, .faq-list details, .portfolio-card figcaption {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.service-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  min-height: 100%;
}
.service-card h3 { margin: 1rem 0 .6rem; font-size: 1.22rem; }
.service-card p { margin: 0; color: var(--muted); }
.service-icon {
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11,126,180,0.12), rgba(255,205,85,0.24));
  color: var(--primary-strong);
  font-weight: 800;
}
.service-card-highlight {
  background: linear-gradient(145deg, rgba(11,126,180,0.9), rgba(11,126,180,0.76));
  color: white;
}
.service-card-highlight p { color: rgba(255,255,255,0.86); }
.service-card-highlight .service-icon { background: rgba(255,255,255,0.18); color: white; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.portfolio-card {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.portfolio-card-large { grid-column: span 8; }
.portfolio-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.portfolio-card-large img { height: 540px; }
.portfolio-card figcaption {
  padding: 1rem 1.1rem;
  color: var(--muted);
  font-weight: 600;
}

.region-grid, .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.region-cards {
  display: grid;
  gap: 1rem;
}
.region-cards article {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-sm);
}
.region-cards h3 { margin: 0 0 .4rem; }
.region-cards p { margin: 0; color: var(--muted); }

.about-photo img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.7);
}
.about-copy p:not(.eyebrow) { color: var(--muted); }
.quote-card {
  margin-top: 1.4rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-sm);
  border-left: 5px solid var(--primary);
}
.quote-card p {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: 1.05rem;
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: .85rem;
}
.faq-list details {
  border-radius: 20px;
  padding: 1rem 1.1rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { color: var(--muted); margin: .85rem 0 0; }

.cta-strip { padding: 0 0 5rem; }
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(11,126,180,0.96), rgba(9,109,155,0.92));
  color: white;
  box-shadow: 0 24px 50px rgba(11,126,180,0.22);
}
.cta-inner p:not(.eyebrow) { color: rgba(255,255,255,0.84); }
.cta-inner .eyebrow { background: rgba(255,255,255,0.13); color: white; }
.cta-inner .button-secondary { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.24); }

.site-footer {
  padding: 3rem 0 1.2rem;
  border-top: 1px solid rgba(11,126,180,0.08);
  background: rgba(255,255,255,0.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.4rem;
}
.footer-grid h3 { margin-top: 0; font-size: 1rem; }
.footer-grid p, .footer-grid li, .footer-grid a { color: var(--muted); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-logo { width: 120px; margin-bottom: 1rem; }
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .95rem;
}

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.2rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #24d366, #139b43);
  box-shadow: 0 16px 35px rgba(19,155,67,0.34);
  font-weight: 800;
  opacity: 1;
  visibility: visible;
  transform: translateZ(0);
}

@media (max-width: 1100px) {
  .hero-grid, .region-grid, .about-grid, .cta-inner, .footer-grid { grid-template-columns: 1fr; display: grid; }
  .hero-visual { min-height: 460px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-items { grid-template-columns: 1fr; }
  .portfolio-card, .portfolio-card-large { grid-column: span 6; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + .6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .3rem;
    padding: .9rem;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .75rem .85rem; border-radius: 14px; }
  .nav-cta { text-align: center; }
  .hero { padding-top: 2rem; }
  .hero-grid { gap: 1.75rem; }
  .hero-visual { min-height: 360px; }
  .hero-card-main { inset: 0 1rem 0 0; }
  .hero-card-floating { width: 58%; height: 38%; }
  .section { padding: 4rem 0; }
  .service-grid { grid-template-columns: 1fr; }
  .portfolio-card, .portfolio-card-large { grid-column: span 12; }
  .portfolio-card-large img, .portfolio-card img { height: 280px; }
  .cta-inner { padding: 1.5rem; }
  .footer-grid { gap: 1.75rem; }
}


.call-link { font-weight: 800; color: var(--primary-strong) !important; text-decoration: underline; text-underline-offset: .15em; }
.force-open { display: flex !important; }
.hero-subpage .hero-copy h1 { max-width: 12ch; }
.area-groups { display: grid; gap: 1rem; margin-top: 2rem; }
.area-group { padding: 1.25rem; border-radius: var(--radius-sm); background: rgba(255,255,255,.84); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.area-group h3 { margin-top: 0; }
.area-links { display: flex; flex-wrap: wrap; gap: .75rem; }
.area-pill { display: inline-flex; align-items: center; min-height: 44px; padding: .7rem 1rem; border-radius: 999px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow-soft); color: var(--text); font-weight: 700; }
.area-pill:hover { color: var(--primary-strong); transform: translateY(-1px); }
@media (max-width: 760px) {
  .force-open { display: none !important; }
}


body { position: relative; overflow-x: hidden; }
.page-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.parallax-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: .55;
  transition: transform .25s ease-out;
  will-change: transform;
}
.orb-one {
  width: 26rem; height: 26rem;
  top: 8rem; left: -8rem;
  background: radial-gradient(circle, rgba(11,126,180,.26), rgba(11,126,180,0));
}
.orb-two {
  width: 22rem; height: 22rem;
  top: 22rem; right: -5rem;
  background: radial-gradient(circle, rgba(255,205,85,.22), rgba(255,205,85,0));
}
.orb-three {
  width: 20rem; height: 20rem;
  bottom: 5rem; left: 30%;
  background: radial-gradient(circle, rgba(9,94,134,.16), rgba(9,94,134,0));
}
.grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,126,180,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,126,180,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 80%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.5rem;
}
.contact-form {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  margin-bottom: .45rem;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: .95rem 1rem;
  font: inherit;
  background: white;
  color: var(--text);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(11,126,180,.18);
  border-color: var(--primary);
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.form-note { margin: .25rem 0 0; color: var(--muted); font-size: .95rem; }
.hidden-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .orb-one { width: 16rem; height: 16rem; left: -5rem; }
  .orb-two { width: 14rem; height: 14rem; right: -4rem; }
  .orb-three { width: 12rem; height: 12rem; left: 55%; }
}

.service-steps { margin: 1rem 0 0; padding-left: 1.15rem; color: var(--muted); display: grid; gap: .75rem; }
.service-explainer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.explainer-card {
  display: block; padding: 1.4rem; border-radius: var(--radius-sm); background: rgba(255,255,255,.9);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft); transition: transform .18s ease, box-shadow .18s ease;
}
.explainer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.explainer-card h3 { margin-top: 0; margin-bottom: .65rem; color: var(--text); }
.explainer-card p { margin: 0; color: var(--muted); }
@media (max-width: 760px) { .service-explainer-grid { grid-template-columns: 1fr; } }


.section-head-compact { margin-bottom: 1.25rem; }
.footer-regio-strip { padding-top: 1rem; }
.footer-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.footer-region-block {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.footer-region-block h3 { margin-top: 0; margin-bottom: .85rem; }
.page-decor { z-index: 0; }
main, .site-header, .site-footer, .whatsapp-float, .call-float { position: relative; z-index: 1; }
.parallax-orb {
  filter: blur(20px);
  opacity: .9;
  mix-blend-mode: multiply;
  transition: transform .18s ease-out;
}
.orb-one {
  width: 34rem; height: 34rem;
  top: 6rem; left: -10rem;
  background: radial-gradient(circle, rgba(11,126,180,.36), rgba(11,126,180,.08) 45%, rgba(11,126,180,0) 72%);
}
.orb-two {
  width: 30rem; height: 30rem;
  top: 28rem; right: -8rem;
  background: radial-gradient(circle, rgba(255,205,85,.34), rgba(255,205,85,.08) 45%, rgba(255,205,85,0) 72%);
}
.orb-three {
  width: 26rem; height: 26rem;
  bottom: 3rem; left: 22%;
  background: radial-gradient(circle, rgba(9,94,134,.26), rgba(9,94,134,.06) 46%, rgba(9,94,134,0) 72%);
}
.grid-glow {
  opacity: .6;
  background-size: 56px 56px;
}
@media (max-width: 1100px) {
  .footer-region-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .parallax-orb { filter: blur(14px); opacity: .78; }
  .orb-one { width: 20rem; height: 20rem; left: -6rem; top: 4rem; }
  .orb-two { width: 18rem; height: 18rem; right: -6rem; top: 22rem; }
  .orb-three { width: 16rem; height: 16rem; left: 42%; bottom: 6rem; }
}

@media (max-width: 760px) {
  .site-footer { padding-bottom: 5.5rem; }
}


.footer-region-links {
  columns: 2;
  column-gap: 1.5rem;
}
.footer-region-links li {
  break-inside: avoid;
}
.footer-region-links a {
  color: var(--muted);
}
.footer-region-links a:hover {
  color: var(--primary-strong);
}
.float-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  display: flex;
  gap: .65rem;
  align-items: center;
}
.call-float,
.whatsapp-float {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.call-float {
  left: auto;
  bottom: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.2rem;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  background: linear-gradient(135deg, #0b7eb4, #095e86);
  box-shadow: 0 16px 35px rgba(11,126,180,0.34);
  opacity: 1;
  visibility: visible;
  transform: translateZ(0);
}
@media (max-width: 760px) {
  .float-actions {
    right: .75rem;
    bottom: .75rem;
    gap: .5rem;
  }
  .call-float, .whatsapp-float {
    min-height: 52px;
    padding: 0 1rem;
    font-size: .95rem;
  }
  .site-footer { padding-bottom: 5.5rem; }
  .footer-region-links { columns: 1; }
}
