:root {
  --blue: #133759;
  --blue-2: #0b2946;
  --sky: #00a4ec;
  --green: #0d9375;
  --green-2: #087f66;
  --text: #17324c;
  --muted: #5d6f80;
  --soft: #f3f8fc;
  --surface: #ffffff;
  --border: #dde8f0;
  --shadow: 0 20px 58px rgba(19, 55, 89, 0.13);
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 164, 236, 0.65);
  outline-offset: 4px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 232, 240, 0.7);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(19, 55, 89, 0.08);
  border-color: rgba(221, 232, 240, 1);
}

.nav-shell {
  width: min(1220px, calc(100% - 40px));
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  min-width: max-content;
}

.brand img {
  width: 116px;
  height: auto;
}

.brand span {
  display: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 4px;
}

.primary-nav a {
  border-radius: 8px;
  color: #365168;
  font-size: 0.92rem;
  font-weight: 650;
  padding: 10px 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  background: rgba(0, 164, 236, 0.09);
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #516779;
  font-size: 0.88rem;
  font-weight: 800;
}

.language-switch a {
  border-radius: 8px;
  padding: 6px 5px;
  text-decoration: none;
}

.language-switch a[aria-current="true"] {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.96rem;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.btn-icon {
  display: inline-flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-primary .btn-icon img {
  filter: brightness(0) invert(1);
}

.btn-light .btn-icon img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(86%) saturate(477%) hue-rotate(122deg) brightness(91%) contrast(94%);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 28px rgba(13, 147, 117, 0.24);
}

.btn-primary:hover {
  background: var(--green-2);
}

.btn-secondary {
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--border);
}

.btn-light {
  background: #fff;
  color: var(--blue);
}

.btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.btn-small {
  min-height: 42px;
  padding: 11px 15px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 92px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
  background:
    linear-gradient(135deg, rgba(0, 164, 236, 0.12), rgba(13, 147, 117, 0.08) 46%, rgba(255, 255, 255, 0) 78%),
    #f7fbfe;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: #fff;
  clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-grid,
.hero-facts {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  align-items: center;
  gap: 56px;
}

.hero-content {
  max-width: 640px;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--blue);
  font-weight: 850;
  line-height: 1.04;
}

.hero h1 {
  font-size: 4rem;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--green);
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 560px;
  color: #455f73;
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-media {
  min-width: 0;
}

.hero-portrait {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  justify-content: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(19, 55, 89, 0.98), rgba(0, 164, 236, 0.88) 58%, rgba(13, 147, 117, 0.92)),
    var(--blue);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.hero-portrait img {
  position: relative;
  z-index: 1;
  width: min(86%, 360px);
  max-height: 520px;
  object-fit: contain;
  object-position: bottom center;
}

.hero-facts {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.fact-item {
  min-height: 106px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 19px;
  box-shadow: 0 12px 32px rgba(19, 55, 89, 0.06);
}

.fact-item strong {
  display: block;
  color: var(--blue);
  font-size: 1.28rem;
  line-height: 1.2;
}

.fact-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 650;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.about-photo {
  border-radius: 8px;
  background: #d9e9e1;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.section-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.86);
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  font-size: 2.35rem;
}

.section-copy > p,
.section-heading > p,
.contact-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.highlight-box {
  margin-top: 22px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
  color: var(--blue);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(19, 55, 89, 0.08);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #425b6e;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(13, 147, 117, 0.12);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.74em;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.check-list.compact {
  gap: 10px;
}

.areas-section,
.articles-section {
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.area-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbfe);
  padding: 30px;
  box-shadow: 0 16px 45px rgba(19, 55, 89, 0.08);
}

.area-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 164, 236, 0.1);
  color: var(--blue);
}

.area-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.area-card h3 {
  margin: 18px 0 12px;
  color: var(--blue);
  font-size: 1.55rem;
  line-height: 1.18;
}

.area-card p {
  margin: 0;
  color: #4a6173;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 220px;
  border: 0;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(19, 55, 89, 0.13);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 55, 89, 0) 40%, rgba(19, 55, 89, 0.72));
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 14px;
  text-align: left;
  font-weight: 850;
  line-height: 1.2;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.articles-shell {
  border-radius: 8px;
  background: #fff;
}

.article-list {
  display: grid;
  gap: 10px;
}

.article-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdff;
  padding: 16px 18px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.article-row:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 164, 236, 0.38);
  box-shadow: 0 12px 26px rgba(19, 55, 89, 0.08);
}

.article-row h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.99rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.article-row a {
  border-radius: 8px;
  color: var(--green);
  padding: 9px 10px;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
}

.article-row a:hover {
  background: rgba(13, 147, 117, 0.1);
}

.contact-section {
  padding-top: 70px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 36px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(19, 55, 89, 0.98), rgba(0, 164, 236, 0.72) 54%, rgba(13, 147, 117, 0.96)),
    var(--blue);
  color: #fff;
  padding: 42px;
  box-shadow: var(--shadow);
}

.contact-copy h2,
.contact-copy p {
  color: #fff;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-cards article {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  padding: 18px;
}

.contact-cards span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-cards p {
  margin: 0;
  color: #fff;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-cards a {
  max-width: 100%;
  color: #fff;
  overflow-wrap: anywhere;
  font-weight: 850;
  line-height: 1.35;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

.contact-cards a[href^="mailto:"] {
  font-size: 0.84rem;
}

.empty-state {
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  color: var(--muted);
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 0.8fr;
  gap: 58px;
}

.footer-brand {
  display: inline-block;
  color: var(--blue);
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 850;
}

.site-footer p {
  margin: 14px 0 0;
  color: var(--muted);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 7px;
  font-style: normal;
}

.site-footer a {
  color: #3d5669;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--green);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
}

.social-links img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(18%) sepia(25%) saturate(1498%) hue-rotate(168deg) brightness(92%) contrast(92%);
}

.social-links a:hover img {
  filter: brightness(0) saturate(100%) invert(38%) sepia(79%) saturate(460%) hue-rotate(122deg) brightness(90%) contrast(93%);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.dev-credit {
  text-align: center;
  font-size: 14px;
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  white-space: nowrap;
}

.dev-credit a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.dev-credit span {
  color: rgb(0, 200, 150);
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  z-index: 90;
  right: 22px;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 30px rgba(19, 55, 89, 0.22);
}

.floating-whatsapp {
  bottom: 88px;
  background: var(--green);
}

.back-to-top {
  bottom: 24px;
  background: var(--blue);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp img,
.floating-whatsapp svg,
.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-whatsapp img {
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.back-to-top svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: rgba(8, 25, 40, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  margin: 0;
  min-width: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.lightbox img {
  max-height: calc(100vh - 150px);
  width: auto;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.lightbox figcaption {
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
}

.lightbox-nav {
  width: 52px;
  height: 52px;
  justify-self: center;
}

.lightbox svg {
  width: 24px;
  height: 24px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.3;
}

.error-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #f7fbfe;
}

.error-main {
  display: grid;
  place-items: center;
  padding: 84px 0;
}

.error-card {
  max-width: 680px;
  border-radius: 8px;
  background: #fff;
  padding: 44px;
  text-align: center;
  box-shadow: var(--shadow);
}

.error-card h1 {
  margin: 0;
  color: var(--blue);
  font-size: 2.7rem;
  line-height: 1.08;
}

.error-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .header-actions .btn-small {
    display: none;
  }

  .primary-nav a {
    padding-inline: 9px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 32px, 720px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    justify-items: center;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    padding: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    max-width: 100%;
    padding: 13px 14px;
    font-size: 1rem;
    text-align: center;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .split-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-portrait {
    min-height: 420px;
  }

  .hero-portrait img {
    max-height: 420px;
  }

  .hero-facts,
  .areas-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid {
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, 560px);
  }

  .brand img {
    width: 96px;
  }

  .language-switch {
    font-size: 0.82rem;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-subtitle {
    font-size: 1.16rem;
  }

  .hero-actions,
  .contact-actions,
  .error-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-portrait {
    min-height: 360px;
  }

  .hero-portrait img {
    max-height: 360px;
    width: min(90%, 300px);
  }

  .hero-facts,
  .areas-grid,
  .gallery-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .fact-item {
    min-height: 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .area-card,
  .contact-panel,
  .error-card {
    padding: 24px;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 210px;
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .article-row a {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    border: 1px solid rgba(13, 147, 117, 0.22);
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 76px 14px 24px;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
  }

  .lightbox-nav.prev {
    left: 12px;
  }

  .lightbox-nav.next {
    right: 12px;
  }

  .lightbox img {
    max-height: calc(100vh - 190px);
    width: 100%;
    object-fit: contain;
  }

  .floating-whatsapp,
  .back-to-top {
    right: 14px;
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
