:root {
  --ink: #0f1c24;
  --ink-muted: #4a5c68;
  --surface: #f4f6f8;
  --paper: #ffffff;
  --brand: #1a5f7a;
  --brand-dark: #134a61;
  --accent: #c87832;
  --accent-soft: #f3e6d6;
  --line: #d8e0e6;
  --radius: 12px;
  --shadow: 0 12px 40px rgba(15, 28, 36, 0.08);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --header-h: 4.25rem;
  --container: min(1120px, 100% - 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--brand-dark);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
}

.logo__mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo__text > span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--brand);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  cursor: pointer;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font: inherit;
  min-height: 44px;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 5.5rem);
  background:
    linear-gradient(135deg, rgba(26, 95, 122, 0.92), rgba(15, 28, 36, 0.88)),
    url("../images/img-p01-001.jpeg") center / cover no-repeat;
  color: #fff;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw + 1rem, 3.25rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  max-width: 16ch;
}

.hero__lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  max-width: 42ch;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section--paper {
  background: var(--paper);
}

.section__head {
  max-width: 52ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2vw + 1rem, 2.35rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section__head p {
  margin: 0;
  color: var(--ink-muted);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brand-dark);
}

.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.values {
  display: grid;
  gap: 1rem;
}

.value {
  border-left: 4px solid var(--accent);
  padding: 0.25rem 0 0.25rem 1rem;
}

.value h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
}

.value p {
  margin: 0;
  color: var(--ink-muted);
}

.timeline {
  display: grid;
  gap: 1rem;
  position: relative;
}

.timeline__item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline__year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand);
}

.timeline__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.timeline__item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.pill-grid {
  display: grid;
  gap: 1rem;
}

.pill {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.pill h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--brand-dark);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 0.75rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.partner-block {
  display: grid;
  gap: 1.5rem;
}

.partner-block__intro {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.partner-products {
  display: grid;
  gap: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.gallery img {
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.contact {
  background: var(--ink);
  color: #fff;
}

.contact a {
  color: #fff;
}

.contact__layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 280px;
  background: rgba(0, 0, 0, 0.2);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.contact__aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact__address {
  font-style: normal;
  line-height: 1.55;
  margin: 0;
}

.contact__map-link {
  margin: 1rem 0 0;
}

.contact .btn--ghost.contact__directions {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.contact .btn--ghost.contact__directions:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact__grid {
  display: grid;
  gap: 1rem;
}

.contact__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.contact__card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent-soft);
}

.contact__card p {
  margin: 0;
}

.contact__card a {
  word-break: break-word;
}

.contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  text-decoration: none;
}

.btn--whatsapp:hover {
  background: #1da851;
  color: #fff;
}

.wa-fab {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease, background 0.15s ease;
}

.wa-fab:hover {
  background: #1da851;
  color: #fff;
  transform: scale(1.05);
}

.wa-fab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.wa-fab__icon {
  width: 1.65rem;
  height: 1.65rem;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.about__download {
  margin: 1.5rem 0 0;
}

.showcase {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.showcase__box {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.showcase__box:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(15, 28, 36, 0.12);
}

.showcase__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface);
}

.showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.showcase__box:hover .showcase__media img {
  transform: scale(1.03);
}

.showcase__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  padding: 1.15rem 1.2rem 1.25rem;
}

.showcase__tag {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.showcase__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--ink);
}

.showcase__body p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.showcase__link {
  margin-top: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--brand);
}

.showcase__link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.site-footer__domain {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.site-footer__domain time,
.site-footer__domain strong {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.site-footer__modal-btn {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer__modal-btn:hover {
  color: var(--brand-dark);
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 36, 0.55);
}

.modal__panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(15, 28, 36, 0.25);
  padding: 1.5rem 1.35rem 1.35rem;
}

.modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-muted);
  min-width: 44px;
  min-height: 44px;
}

.modal__close:hover {
  color: var(--ink);
}

.modal__panel h2 {
  margin: 0 2rem 1rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.modal__section {
  margin-bottom: 1.15rem;
}

.modal__section h3 {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.modal__section p {
  margin: 0 0 0.5rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.modal__address {
  font-style: normal;
  line-height: 1.55;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.modal__map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 200px;
}

.modal__map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

@media (min-width: 720px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pill-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-block__intro {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .partner-products {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact__layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
  }

  .contact__map,
  .contact__map iframe {
    min-height: 360px;
  }

  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 719px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-nav a {
    display: block;
    padding: 0.65rem 0;
    min-height: 44px;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
