:root {
  --bg: #faf8f5;
  --bg-soft: #f3efe8;
  --bg-warm: #ebe6dc;
  --card: #ffffff;
  --text: #1a2433;
  --text-soft: #3d4a5c;
  --muted: #5c6778;
  --accent: #b8861f;
  --accent-2: #c99a32;
  --accent-light: #f5ead4;
  --navy: #1e2d42;
  --border: rgba(30, 45, 66, 0.1);
  --shadow: 0 8px 32px rgba(30, 45, 66, 0.08);
  --shadow-hover: 0 16px 40px rgba(30, 45, 66, 0.12);
  --container: 1200px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.page {
  padding-top: 92px;
}

.section {
  padding: 96px 0;
}

.section:nth-of-type(even) {
  background: var(--bg-soft);
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(30, 45, 66, 0.06);
}

.topbar__inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 2px 12px rgba(30, 45, 66, 0.08);
}

.brand__text {
  display: grid;
  gap: 0.1rem;
  line-height: 1.1;
}

.brand__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.brand__sub {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-soft);
  font-size: 0.97rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.mobile-cta {
  display: none;
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.phone-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 600;
  background: var(--bg-soft);
}

.phone-pill:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.76rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 650;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 4px 16px rgba(184, 134, 31, 0.3);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 134, 31, 0.38);
}

.btn--ghost {
  border-color: var(--border);
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(30, 45, 66, 0.06);
}

.btn--ghost:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.btn--whatsapp {
  background: #1d8f4b;
  color: #f2fff7;
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  border-radius: 10px;
  padding: 0.58rem 0.8rem;
  font-weight: 600;
  min-height: 44px;
  min-width: 44px;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(26, 36, 51, 0.45);
}

.nav-backdrop.open {
  display: block;
}

.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 54;
  padding: 0.6rem 0.85rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(30, 45, 66, 0.1);
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.mobile-bar .btn {
  width: 100%;
  min-height: 46px;
  font-size: 0.9rem;
  padding: 0.7rem 0.5rem;
}

.hero {
  min-height: 700px;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(250, 248, 245, 0.96) 0%,
    rgba(250, 248, 245, 0.82) 38%,
    rgba(250, 248, 245, 0.45) 62%,
    rgba(250, 248, 245, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 140px 0 110px;
  width: min(100% - 2rem, var(--container));
  max-width: var(--container);
  margin-inline: auto;
  text-align: left;
}

.hero__content > * {
  max-width: 680px;
}

.hero h1 {
  color: var(--navy);
}

.hero .lead {
  color: var(--text-soft);
}

.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(184, 134, 31, 0.35);
  border-radius: 999px;
  padding: 0.34rem 0.78rem;
  color: var(--accent);
  background: var(--accent-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0.9rem 0;
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h2 {
  margin: 0.65rem 0 0;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.16;
  color: var(--navy);
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--navy);
}

.lead {
  max-width: 64ch;
  color: var(--text-soft);
  font-size: clamp(1.06rem, 2.2vw, 1.2rem);
  line-height: 1.55;
}

.hero__actions,
.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.35rem;
}

.section-head {
  margin-bottom: 1.6rem;
}

.section-head p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.muted {
  color: var(--muted);
}

.trust-overlap {
  margin-top: -56px;
  position: relative;
  z-index: 4;
  padding-top: 0;
  padding-bottom: 72px;
  background: transparent;
}

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

.trust-card,
.service-card,
.contact-card,
.feature-card,
.cta-band,
.filter-wrap,
.service-info,
.service-benefits {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 1.5rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 134, 31, 0.25);
  background: var(--accent-light);
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.trust-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

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

.trust-card:hover {
  border-color: rgba(184, 134, 31, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  padding: 1.75rem;
  display: grid;
  gap: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.service-card ul {
  margin: 0;
  padding-left: 1rem;
}

.service-chip {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(184, 134, 31, 0.3);
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.service-link {
  color: var(--accent);
  font-weight: 700;
}

.service-link:hover {
  color: var(--navy);
}

.service-card:hover {
  border-color: rgba(184, 134, 31, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.project-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover img {
  transform: scale(1.03);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(26, 36, 51, 0.88), rgba(26, 36, 51, 0.35));
}

.project-overlay h4 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.project-overlay p {
  margin: 0.25rem 0 0;
  color: #e2e8f0;
  font-size: 0.9rem;
}

.project-overlay span {
  color: #c5cdd8;
  font-size: 0.82rem;
}

.filters {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.filter-wrap {
  padding: 0.85rem;
  margin-bottom: 1rem;
}

.filter-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-soft);
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.cta-band {
  padding: 3rem 3.2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
  border-color: rgba(184, 134, 31, 0.25);
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
  border-radius: 24px;
}

.cta-band h3 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 0.45rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.about-image,
.service-image {
  border-radius: 18px;
  border: 1px solid var(--border);
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  padding: 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.feature-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.service-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.service-info {
  padding: 1.6rem;
}

.service-info p,
.service-info li {
  color: var(--muted);
}

.service-info ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
}

.service-benefits {
  padding: 1.5rem;
}

.service-benefits ul {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
}

.contact-cards {
  display: grid;
  gap: 0.9rem;
}

.contact-card {
  padding: 1.3rem;
}

.contact-card p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 0.72rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.72rem;
}

.form-group {
  display: grid;
  gap: 0.34rem;
}

.form label {
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 0.76rem 0.82rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 31, 0.15);
}

.form textarea {
  min-height: 132px;
  resize: vertical;
}

.footer {
  margin-top: 0;
  padding: 3rem 0 1.7rem;
  background: var(--navy);
  border-top: none;
  color: #e8edf4;
}

.footer .brand__title {
  color: #fff;
}

.footer .brand__sub {
  color: #a8b4c4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 1.5rem;
}

.footer h4 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  color: #fff;
}

.footer p,
.footer li,
.footer a {
  color: #b8c4d4;
}

.footer a:hover {
  color: var(--accent-2);
}

.footer ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
  padding-top: 1rem;
  color: #8a97a8;
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.copyright p {
  margin: 0;
}

.site-credit a {
  color: #b8c4d4;
  text-decoration: none;
}

.site-credit a:hover {
  color: #fff;
  text-decoration: underline;
}

.section--muted {
  background: #f4f6f9;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.area-grid span {
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 999px;
  color: #3d4f63;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
}

.area-note {
  margin: 0;
}

.area-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.area-note a:hover {
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e4e9ef;
  border-radius: 12px;
  padding: 0.25rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
}

.faq-item p {
  color: #5a6778;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.faq-item a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  background: rgba(26, 36, 51, 0.88);
  padding: 1rem;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1000px);
  max-height: 84vh;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .page {
    padding-top: 72px;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .topbar__inner {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand__title {
    font-size: 0.88rem;
  }

  .brand__sub {
    font-size: 0.76rem;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-hover);
    z-index: 56;
    -webkit-overflow-scrolling: touch;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.65rem 0.5rem;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-of-type {
    border-bottom: none;
  }

  .nav.open {
    display: flex;
  }

  .mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: 100%;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
  }

  .mobile-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .mobile-bar {
    display: grid;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg);
  }

  .hero__bg {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: clamp(240px, 52vw, 340px);
    min-height: 240px;
    object-fit: cover;
    object-position: center 35%;
    flex-shrink: 0;
  }

  .hero__overlay {
    display: none;
  }

  .hero__content {
    order: 2;
    padding: 1.5rem 0 2rem;
    width: min(100% - 1.25rem, var(--container));
    margin-inline: auto;
    background: var(--bg);
  }

  .hero__content > * {
    max-width: 100%;
  }

  .trust-overlap {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 2.5rem;
  }

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

  .section {
    padding: 3.5rem 0;
  }

  .section-head {
    margin-bottom: 1.25rem;
  }

  h2 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    min-height: 44px;
  }

  .cta-band,
  .service-detail,
  .contact-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: stretch;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .hero__bg {
    height: clamp(220px, 56vw, 300px);
    object-position: center 30%;
  }

  .hero__content {
    padding: 1.25rem 0 1.75rem;
  }

  h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    line-height: 1.1;
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero__actions .btn,
  .inline-cta .btn,
  .cta-actions .btn,
  .mobile-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .service-grid,
  .gallery,
  .feature-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.35rem;
  }

  .trust-card {
    padding: 1.2rem;
  }

  .project-card img {
    aspect-ratio: 16/11;
  }

  .cta-band {
    padding: 1.35rem;
    border-radius: 16px;
  }

  .form input,
  .form textarea,
  .form select {
    font-size: 16px;
  }

  .footer {
    padding-bottom: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lightbox {
    padding: 0.75rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  .lightbox button {
    top: auto;
    bottom: 1rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
