@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@600;700;800&display=swap");

:root {
  --bg: #f4f1ea;
  --bg-soft: #fbf8f3;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: #163127;
  --text: #18231f;
  --text-soft: #475852;
  --muted: #677871;
  --line: rgba(24, 35, 31, 0.08);
  --line-strong: rgba(24, 35, 31, 0.14);
  --primary: #1f5c45;
  --primary-strong: #144533;
  --primary-soft: #dcece5;
  --accent: #c68a2f;
  --accent-soft: #f3e6d2;
  --success: #1f8f58;
  --shadow: 0 22px 60px rgba(16, 31, 25, 0.12);
  --shadow-soft: 0 14px 38px rgba(16, 31, 25, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.68;
  background:
    radial-gradient(circle at top left, rgba(198, 138, 47, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(31, 92, 69, 0.1), transparent 22%),
    linear-gradient(180deg, #f2ede5 0%, #f7f4ef 42%, #fcfaf6 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.topbar {
  background: #14211c;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.94rem;
}

.topbar a {
  color: #fff3df;
  font-weight: 700;
}

.site-header,
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 243, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 35, 31, 0.08);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

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

.brand-badge,
.logo {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  flex-shrink: 0;
}

.brand-badge {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 16px 34px rgba(20, 69, 51, 0.18);
}

.logo {
  object-fit: cover;
  border: 1px solid rgba(24, 35, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.brand-text,
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong,
.brand-copy strong,
.brand-name {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text);
}

.brand-text span,
.brand-copy span,
.brand-copy small {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-soft);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.nav-cta {
  white-space: nowrap;
}

.section,
.hero,
.page-hero {
  padding: 88px 0;
}

.hero {
  padding-top: 56px;
}

.hero-shell,
.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.page-copy,
.hero-visual,
.page-visual-wrap,
.glass-card,
.stat-card,
.service-card,
.content-card,
.contact-card,
.gallery-card,
.faq-item,
.review-card,
.area-card,
.process-card,
.highlight-card,
.link-card,
.cta-band,
.hero-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-copy,
.page-copy {
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    linear-gradient(180deg, rgba(31, 92, 69, 0.08), rgba(198, 138, 47, 0.04));
  position: relative;
  overflow: hidden;
}

.hero-copy::before,
.page-copy::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(198, 138, 47, 0.14), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(31, 92, 69, 0.08);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.08;
  font-family: "Outfit", "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  margin: 18px 0 20px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.hero-copy p,
.page-copy p {
  font-size: 1.05rem;
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 18px 36px rgba(20, 69, 51, 0.2);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line-strong);
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, var(--success), #166a42);
  box-shadow: 0 18px 36px rgba(31, 143, 88, 0.2);
}

.hero-metrics,
.hero-points,
.trust-list,
.check-list,
.detail-list {
  padding: 0;
  list-style: none;
  margin: 28px 0 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-metrics li,
.hero-point,
.highlight-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 35, 31, 0.08);
}

.hero-metrics strong,
.hero-point strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.hero-metrics span,
.hero-point span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual,
.page-visual-wrap {
  padding: 16px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 241, 233, 0.88));
}

.hero-image,
.page-visual {
  min-height: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-image::after,
.page-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 20, 17, 0.1), rgba(13, 20, 17, 0.56));
}

.hero-panel {
  position: relative;
  z-index: 1;
  margin: 22px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(16, 31, 25, 0.72);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-panel p,
.hero-panel li {
  color: rgba(255, 255, 255, 0.82);
}

.hero-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head p {
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4,
.service-grid,
.gallery-grid,
.faq-grid,
.area-grid,
.link-grid,
.process-grid,
.highlight-grid {
  display: grid;
  gap: 22px;
}

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

.grid-3,
.service-grid,
.process-grid,
.highlight-grid,
.area-grid {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4,
.link-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.glass-card,
.stat-card,
.service-card,
.content-card,
.contact-card,
.gallery-card,
.faq-item,
.review-card,
.area-card,
.process-card,
.highlight-card,
.link-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-card:hover,
.service-card:hover,
.stat-card:hover,
.content-card:hover,
.contact-card:hover,
.area-card:hover,
.process-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-card .pad {
  padding: 22px;
}

.card-label {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-list,
.detail-list {
  display: grid;
  gap: 12px;
}

.check-list li,
.detail-list li,
.trust-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before,
.detail-list li::before,
.trust-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

.service-card p,
.content-card p,
.contact-card p,
.stat-card p,
.area-card p,
.process-card p,
.link-card p {
  color: var(--muted);
}

.breadcrumbs {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--primary);
  font-weight: 700;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.cta-band {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(198, 138, 47, 0.28), transparent 26%),
    linear-gradient(135deg, #173629, #10231b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 22px 54px rgba(16, 31, 25, 0.2);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.link-card {
  display: block;
}

.link-card span {
  display: inline-flex;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 800;
}

.footer {
  margin-top: 46px;
  padding: 56px 0 26px;
  background: linear-gradient(180deg, #14211c, #0d1713);
  color: #dde7e2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 28px;
}

.footer h3,
.footer h4 {
  color: #fff;
}

.footer p,
.footer li,
.footer a {
  color: rgba(221, 231, 226, 0.84);
}

.footer-links,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.contact-list li {
  padding: 7px 0;
}

.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(221, 231, 226, 0.72);
}

.float-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  padding: 15px 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--success), #176941);
  box-shadow: 0 18px 34px rgba(31, 143, 88, 0.24);
  font-weight: 800;
}

.muted-note {
  color: var(--muted);
  font-size: 0.96rem;
}

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

@media (max-width: 1120px) {
  .hero-shell,
  .page-hero-shell {
    grid-template-columns: 1fr;
  }

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

  .grid-3,
  .service-grid,
  .gallery-grid,
  .process-grid,
  .highlight-grid,
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .nav {
    min-height: 82px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    right: 0;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .section,
  .hero,
  .page-hero {
    padding: 68px 0;
  }

  .topbar-inner,
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .page-copy,
  .glass-card,
  .stat-card,
  .service-card,
  .content-card,
  .contact-card,
  .faq-item,
  .review-card,
  .area-card,
  .process-card,
  .highlight-card,
  .link-card {
    padding: 22px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .service-grid,
  .gallery-grid,
  .faq-grid,
  .area-grid,
  .link-grid,
  .process-grid,
  .highlight-grid,
  .footer-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .float-wa {
    left: 12px;
    right: 12px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .brand-badge,
  .logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .brand-text span,
  .brand-copy small {
    display: none;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }
}
