:root {
  --ink: #071525;
  --ink-soft: #13253a;
  --navy: #0b2b4b;
  --teal: #119c91;
  --teal-dark: #08756e;
  --lime: #9bca4b;
  --whatsapp: #20c763;
  --paper: #f5f7fa;
  --surface: #ffffff;
  --surface-soft: #edf2f6;
  --text: #142437;
  --text-soft: #607084;
  --line: #dbe3eb;
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 10px 30px rgba(15, 34, 53, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 21, 37, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid rgba(17, 156, 145, 0.45);
  outline-offset: 4px;
}

.container { width: var(--container); margin: 0 auto; }
.page-glow { display: none; }

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 14px 0;
  transition: padding 0.25s ease;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(7, 21, 37, 0.78);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header.is-scrolled { padding-top: 8px; }
.header.is-scrolled .navbar { background: rgba(7, 21, 37, 0.94); }

.brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo { width: 48px; height: 48px; object-fit: contain; }
.footer__logo { width: 58px; height: 58px; object-fit: contain; }

.brand__copy,
.footer__brand div { display: flex; flex-direction: column; gap: 2px; }

.brand__copy strong,
.footer__brand strong {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
}

.brand__copy span,
.footer__brand span { color: #9eb0c2; font-size: 0.78rem; }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-links a {
  padding: 11px 13px;
  border-radius: 10px;
  color: #b8c5d2;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible { color: #fff; background: rgba(255,255,255,0.08); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  color: #fff;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 780px;
  padding: 145px 0 90px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 83% 26%, rgba(17,156,145,0.22), transparent 29%),
    radial-gradient(circle at 9% 100%, rgba(155,202,75,0.09), transparent 25%),
    linear-gradient(132deg, #061321 0%, #0a2238 58%, #0a2d43 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 94%);
  mask-image: linear-gradient(to bottom, #000, transparent 94%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(56px, 7vw, 100px);
}

.hero__content { max-width: 680px; }

.hero__identity {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding: 8px 13px 8px 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
}

.hero__logo { width: 52px; height: 52px; object-fit: contain; }
.hero__name { margin: 0 0 2px; font: 700 0.96rem/1.3 "Sora", sans-serif; }
.hero__role { margin: 0; color: #9fb0c1; font-size: 0.82rem; }

.hero h1,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  line-height: 1.02;
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #b6c5d3;
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__note { margin: 17px 0 0; color: #8195a8; font-size: 0.88rem; line-height: 1.6; }

.hero__showcase { position: relative; padding: 36px 0; }

.hero__showcase-glow {
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background: rgba(17,156,145,0.24);
  filter: blur(70px);
}

.hero__browser {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  background: rgba(7,21,37,0.65);
  box-shadow: 0 34px 80px rgba(0,0,0,0.32);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
}

.hero__browser-bar {
  display: flex;
  gap: 7px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.045);
}

.hero__browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: #627588; }
.hero__browser-bar span:nth-child(2) { background: var(--teal); }
.hero__browser-bar span:nth-child(3) { background: var(--lime); }

.hero__browser-content { min-height: 390px; padding: 42px; }
.hero__browser-content img { width: 72px; height: 72px; margin-bottom: 50px; object-fit: contain; }

.hero__browser-copy span {
  display: block;
  margin-bottom: 12px;
  color: #7ed2ca;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__browser-copy strong { font: 700 clamp(1.8rem, 3vw, 2.75rem)/1.1 "Sora", sans-serif; letter-spacing: -0.04em; }
.hero__browser-lines { display: grid; gap: 8px; margin-top: 30px; }
.hero__browser-lines span { height: 6px; border-radius: 99px; background: rgba(255,255,255,0.10); }
.hero__browser-lines span:nth-child(1) { width: 84%; }
.hero__browser-lines span:nth-child(2) { width: 66%; }
.hero__browser-lines span:nth-child(3) { width: 42%; background: linear-gradient(90deg, var(--teal), var(--lime)); }

.hero__showcase-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -18px 0 0 -24px;
}

.hero__showcase-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  color: #d9e4ec;
  background: rgba(7,21,37,0.9);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  font-size: 0.76rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button--secondary { color: #fff; border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.05); }
.button--secondary:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.28); }

.button--whatsapp {
  gap: 9px;
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 12px 30px rgba(32,199,99,0.23);
}

.button--whatsapp:hover { background: #19b75a; box-shadow: 0 16px 36px rgba(32,199,99,0.30); }
.button--whatsapp svg { width: 18px; height: 18px; flex: 0 0 auto; fill: currentColor; }

.section { position: relative; padding: 112px 0; }
.section[id] { scroll-margin-top: 104px; }

.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading h2 { max-width: 16ch; color: var(--ink); font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1.08; }
.section-heading p { max-width: 680px; margin: 16px 0 0; color: var(--text-soft); line-height: 1.75; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 99px; background: linear-gradient(90deg,var(--teal),var(--lime)); }

.section--projects { background: #fff; }
.section--projects::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg,transparent,var(--line),transparent);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.project-card,
.feedback-card,
.about,
.service-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover,
.project-card:focus-within { transform: translateY(-6px); border-color: #c9d6e1; box-shadow: 0 20px 50px rgba(15,34,53,0.13); }

.project-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #e7edf2;
}

.project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  pointer-events: none;
}

.project-card__image { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.45s ease; }
.project-card:hover .project-card__image { transform: scale(1.025); }

.project-card__body { display: flex; flex: 1; flex-direction: column; gap: 14px; padding: 26px; }
.project-card__category { margin: 0 0 7px; color: var(--teal-dark); font-size: 0.71rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.project-card h3 { margin: 0; color: var(--ink); font: 700 1.45rem/1.2 "Sora", sans-serif; letter-spacing: -0.03em; }

.project-card p,
.about p,
.service-card p,
.contact-card p { margin: 0; color: var(--text-soft); line-height: 1.72; }

.project-card__body > p { font-size: 0.92rem; }
.project-card__extra { color: #43586c !important; }
.project-card__status { color: var(--ink-soft) !important; font-weight: 700; }
.project-card__status--done { color: #237454 !important; }
.project-card__badges { display: flex; flex-wrap: wrap; gap: 7px; }

.project-card__badges span {
  padding: 6px 9px;
  border: 1px solid #d9eadb;
  border-radius: 8px;
  color: #337354;
  background: #f1f8f2;
  font-size: 0.7rem;
  font-weight: 800;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.project-link::after { content: "↗"; color: var(--teal); font-size: 1.1rem; transition: transform 0.2s ease; }
.project-link:hover::after { transform: translate(3px,-3px); }

.section--feedbacks { background: var(--paper); }
.feedback-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }

.feedback-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feedback-card:hover,
.feedback-card:focus-within { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(15,34,53,0.12); }

.feedback-card__media,
.feedback-card__placeholder { display: grid; place-items: center; flex: 1; min-height: 330px; padding: 20px; background: #e8eef3; }

.feedback-card__button { position: relative; display: grid; place-items: center; width: 100%; min-height: inherit; padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; }
.feedback-card__button img { width: 100%; max-height: 390px; object-fit: contain; border-radius: 12px; box-shadow: 0 14px 30px rgba(15,34,53,0.17); transition: transform 0.22s ease; }
.feedback-card__button:hover img { transform: scale(1.015); }

.feedback-card__button span {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  min-width: max-content;
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  background: rgba(7,21,37,0.88);
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.feedback-card__button:hover span,
.feedback-card__button:focus-visible span { opacity: 1; transform: translate(-50%,-3px); }
.feedback-card figcaption { padding: 18px 20px 21px; color: var(--ink); font-size: 0.9rem; font-weight: 800; line-height: 1.5; }
.feedback-card__placeholder { border-bottom: 1px solid var(--line); }
.feedback-card__placeholder span { padding: 10px 14px; border: 1px dashed #9cabb9; border-radius: 10px; color: var(--text-soft); font-size: 0.78rem; font-weight: 800; }

#sobre { background: var(--ink); color: #fff; }
#sobre .section-heading h2 { color: #fff; max-width: 18ch; }
#sobre .eyebrow { color: #75d2c9; }

.about {
  max-width: 840px;
  padding: 34px;
  border-color: rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.055);
  box-shadow: none;
}

.about p { color: #b8c5d2; font-size: 1.02rem; }
.about p + p { margin-top: 15px; }

.section--soft { background: #eef3f6; }
.services-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.service-card { position: relative; min-height: 210px; padding: 30px; overflow: hidden; border-radius: var(--radius-md); }

.service-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 42px;
  border-radius: 99px;
  background: linear-gradient(90deg,var(--teal),var(--lime));
}

.service-card h3 { margin: 0 0 10px; color: var(--ink); font: 700 1.12rem/1.35 "Sora", sans-serif; letter-spacing: -0.02em; }
.service-card p { font-size: 0.92rem; }

.section--contact { padding: 96px 0; background: #eef3f6; }

.contact-card {
  position: relative;
  max-width: none;
  padding: clamp(34px,6vw,70px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%,rgba(17,156,145,0.24),transparent 34%),
    linear-gradient(130deg,#071525,#0b2b40);
  box-shadow: var(--shadow-lg);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255,255,255,0.025),0 0 0 96px rgba(255,255,255,0.018);
}

.contact-card > * { position: relative; z-index: 1; }
.contact-card .eyebrow { color: #75d2c9; }
.contact-card h2 { max-width: 18ch; font-size: clamp(2rem,4vw,3.65rem); line-height: 1.08; }
.contact-card > p { max-width: 690px; margin-top: 18px; color: #b8c5d2; }
.contact-card .button { margin-top: 28px; }
.contact-email-text { margin-top: 18px !important; font-size: 0.83rem; }
.contact-email { display: inline-block; margin-top: 7px; color: #fff; font-size: 0.9rem; font-weight: 800; }
.contact-email:hover { color: #75d2c9; }

.footer { padding: 38px 0 46px; color: #fff; background: #050e18; }
.footer__content { display: grid; grid-template-columns: 1.1fr 0.9fr 1fr; align-items: center; gap: 30px; }
.footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px 17px; }
.footer__email,.footer__whatsapp,.footer__instagram,.footer__nav a { color: #8fa1b3; font-size: 0.84rem; font-weight: 700; transition: color 0.2s ease; }
.footer__instagram { display: inline-flex; align-items: center; gap: 7px; }
.footer__instagram svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer a:hover { color: #fff; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  min-width: 148px;
  min-height: 52px;
  padding: 0 19px;
  border-radius: 14px;
}

.lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.2s ease,visibility 0.2s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.lightbox__backdrop { position: absolute; inset: 0; border: 0; background: rgba(3,9,15,0.86); cursor: zoom-out; }
.lightbox__dialog { position: relative; z-index: 1; display: grid; gap: 12px; max-width: min(1040px,100%); max-height: calc(100svh - 48px); padding: 16px; border: 1px solid rgba(255,255,255,0.14); border-radius: 20px; background: #071525; box-shadow: 0 30px 90px rgba(0,0,0,0.45); }
.lightbox__image { width: auto; max-width: min(100%,980px); max-height: calc(100svh - 145px); object-fit: contain; border-radius: 13px; }
.lightbox__caption { margin: 0; color: #dbe5ed; font-weight: 800; }
.lightbox__close { position: absolute; top: -13px; right: -13px; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; color: #fff; background: #10283d; cursor: pointer; font-size: 1.3rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease,transform 0.65s cubic-bezier(.22,.75,.28,1); }
.reveal--delay { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.18s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .hero__layout { grid-template-columns: minmax(0,1fr) minmax(320px,0.72fr); gap: 45px; }
  .hero__browser-content { min-height: 340px; padding: 34px; }
  .projects-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .project-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .project-card:last-child .project-card__media { aspect-ratio: auto; min-height: 100%; border: 0; border-right: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .header { padding-top: 10px; }
  .navbar { min-height: 64px; padding: 8px 9px 8px 12px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    display: grid;
    gap: 3px;
    padding: 10px;
    border: 1px solid var(--line-dark);
    border-radius: 16px;
    background: rgba(7,21,37,0.98);
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease,transform 0.2s ease,visibility 0.2s ease;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav-links a { padding: 13px 14px; }

  .hero { min-height: auto; padding: 125px 0 74px; }
  .hero__layout { grid-template-columns: 1fr; gap: 28px; }
  .hero__content { max-width: 720px; }
  .hero__showcase { display: none; }
  .hero h1 { max-width: 12ch; }

  .section { padding: 86px 0; }
  .section-heading { margin-bottom: 36px; }
  .feedback-grid,.services-grid { grid-template-columns: 1fr; }
  .feedback-grid { max-width: 640px; }
  .feedback-card__media,.feedback-card__placeholder { min-height: 270px; }
  .service-card { min-height: auto; }
  .service-card::before { margin-bottom: 30px; }
  .footer__content { grid-template-columns: 1fr 1fr; }
  .footer__nav { grid-column: 1 / -1; justify-content: flex-start; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.09); }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 28px,1180px); }
  .brand__copy span { display: none; }
  .brand__logo { width: 46px; height: 46px; }
  .hero { padding: 112px 0 64px; }
  .hero__identity { margin-bottom: 24px; }
  .hero h1 { max-width: 11ch; font-size: clamp(2.45rem,12vw,3.45rem); line-height: 1.04; }
  .hero__lead { margin-top: 20px; font-size: 1rem; line-height: 1.68; }
  .hero__actions { flex-direction: column; align-items: stretch; margin-top: 26px; }
  .button { width: 100%; }
  .hero__note { margin-top: 15px; }

  .section { padding: 72px 0; }
  .section-heading h2 { font-size: clamp(2rem,10vw,2.8rem); }
  .section-heading p { font-size: 0.94rem; }
  .projects-grid { grid-template-columns: 1fr; gap: 18px; }
  .project-card:last-child { grid-column: auto; display: flex; }
  .project-card:last-child .project-card__media { aspect-ratio: 16/10; min-height: 0; border: 0; border-bottom: 1px solid var(--line); }
  .project-card__body { padding: 22px; }
  .project-card__body > p { font-size: 0.9rem; }
  .feedback-card__media,.feedback-card__placeholder { min-height: 230px; padding: 14px; }
  .feedback-card__button span { opacity: 1; }
  .about,.service-card { padding: 24px; }
  .about p { font-size: 0.95rem; }
  .section--contact { padding: 62px 0; }
  .contact-card { padding: 30px 24px; border-radius: 22px; }
  .contact-card::after { opacity: 0.6; }
  .footer { padding-bottom: 90px; }
  .footer__content { grid-template-columns: 1fr; }
  .footer__contact { padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.09); }
  .footer__nav { grid-column: auto; }

  .floating-whatsapp { right: 13px; bottom: 13px; width: 56px; min-width: 56px; height: 56px; min-height: 56px; padding: 0; border-radius: 50%; opacity: 0; pointer-events: none; transform: translateY(10px); }
  .floating-whatsapp.is-mobile-visible { opacity: 0.92; pointer-events: auto; transform: none; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp svg { width: 22px; height: 22px; }

  .lightbox { padding: 12px; }
  .lightbox__dialog { width: 100%; padding: 10px; border-radius: 15px; }
  .lightbox__image { max-height: calc(100svh - 110px); }
  .lightbox__close { top: 7px; right: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .navbar { background: rgba(7,21,37,0.98); }
}
