:root {
  --aqua-100: #edf8f4;
  --aqua-200: #cdebe2;
  --aqua-300: #b6e0d7;
  --green-500: #2e756b;
  --green-600: #28685f;
  --green-700: #245a53;
  --green-800: #18463f;
  --sand-200: #f1d8c7;
  --sand-100: #fbf4ee;
  --white: #ffffff;
  --ink: #203633;
  --muted: #607773;
  --line: rgba(36, 90, 83, 0.14);
  --shadow-sm: 0 12px 35px rgba(36, 90, 83, 0.09);
  --shadow-md: 0 24px 60px rgba(36, 90, 83, 0.12);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --container: 1180px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 22px); overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #f8fcfa;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--aqua-200); color: var(--green-800); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-700);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 108px 0; }
.section-soft { background: var(--aqua-100); }
.section-sand { background: linear-gradient(135deg, #fff 0%, var(--sand-100) 100%); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--green-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 4px; }
.section-title, h1, h2, h3 { color: var(--green-800); }
h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.55rem, 5vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.7rem); }
h3 { margin: 0; line-height: 1.2; }
p { margin: 0 0 1em; }
.lead { color: var(--muted); font-size: clamp(1.03rem, 1.4vw, 1.17rem); }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading p:last-child { margin-bottom: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(248, 252, 250, .88);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(36, 90, 83, .07); background: rgba(255,255,255,.94); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 850; color: var(--green-800); }
.brand-mark { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 14px; background: var(--green-500); color: #fff; font-family: Georgia, serif; font-size: 1.05rem; box-shadow: 0 8px 20px rgba(46,117,107,.18); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .67rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { position: relative; color: #49625e; font-size: .94rem; font-weight: 680; text-decoration: none; }
.site-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--green-500); transition: right .2s ease; }
.site-nav > a:not(.btn):hover::after, .site-nav > a:not(.btn):focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--green-800); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 22px; height: 2px; margin: 5px auto; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .menu-toggle:focus-visible, a:focus-visible { outline: 3px solid rgba(46,117,107,.28); outline-offset: 3px; }
.btn-primary { color: #fff!important; background: var(--green-500); box-shadow: 0 12px 26px rgba(46,117,107,.2); }
.btn-primary:hover { background: var(--green-700); box-shadow: 0 16px 30px rgba(46,117,107,.25); }
.btn-secondary { color: var(--green-700); background: rgba(255,255,255,.72); border-color: rgba(36,90,83,.18); }
.btn-secondary:hover { background: #fff; border-color: rgba(36,90,83,.3); }
.btn-light { color: var(--green-800); background: var(--aqua-300); }
.btn-light:hover { background: #fff; }
.btn-sm { min-height: 44px; padding: 10px 18px; font-size: .9rem; }
.icon { width: 20px; height: 20px; flex: 0 0 auto; }

.hero {
  min-height: 780px;
  padding: calc(var(--header-height) + 58px) 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 7%, rgba(182,224,215,.82) 0 12%, transparent 12.2%),
    radial-gradient(circle at 5% 96%, rgba(241,216,199,.76) 0 14%, transparent 14.2%),
    linear-gradient(135deg, #f8fcfa 0%, #eef8f4 100%);
}
.hero::before { content: ""; position: absolute; width: 370px; height: 370px; right: -160px; top: 170px; border: 1px solid rgba(46,117,107,.1); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(45px, 7vw, 90px); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; }
.hero-copy .lead { max-width: 680px; margin-top: 26px; font-size: clamp(1.08rem, 1.6vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 23px; color: var(--muted); font-size: .9rem; }
.hero-note svg { color: var(--green-500); }
.hero-visual { position: relative; z-index: 1; }
.hero-visual::before { content: ""; position: absolute; inset: 12% -4% -3% 12%; border-radius: 52px; background: rgba(255,255,255,.62); transform: rotate(3deg); box-shadow: var(--shadow-md); }
.hero-visual img { position: relative; width: 100%; filter: drop-shadow(0 30px 55px rgba(36,90,83,.12)); }
.hero-badges { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 5px; }
.hero-badge { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 74px; padding: 16px 20px; border: 1px solid rgba(36,90,83,.11); border-radius: 22px; background: rgba(255,255,255,.84); box-shadow: var(--shadow-sm); color: var(--green-800); font-size: .92rem; font-weight: 800; text-align: center; }
.hero-badge svg { width: 22px; color: var(--green-500); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 300px; padding: 32px; overflow: hidden; border: 1px solid rgba(36,90,83,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.84); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(36,90,83,.23); box-shadow: var(--shadow-md); }
.service-card::after { content: ""; position: absolute; right: -46px; bottom: -55px; width: 140px; height: 140px; border-radius: 50%; background: var(--aqua-200); opacity: .55; }
.service-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 25px; border-radius: 20px; background: var(--aqua-200); color: var(--green-700); }
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { position: relative; z-index: 1; font-size: 1.33rem; }
.service-card p { position: relative; z-index: 1; margin: 15px 0 0; color: var(--muted); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(45px, 7vw, 90px); }
.about-visual { position: relative; }
.about-visual img { width: 100%; border-radius: var(--radius-lg); }
.about-stamp { position: absolute; right: -18px; bottom: 32px; display: grid; place-items: center; width: 142px; height: 142px; padding: 20px; border: 8px solid #fff; border-radius: 50%; background: var(--green-500); color: #fff; box-shadow: var(--shadow-md); font-family: Georgia, serif; font-size: 1.18rem; font-weight: 700; line-height: 1.15; text-align: center; }
.about-copy .lead { margin-top: 22px; }
.about-copy p { color: var(--muted); }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.values li { display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-radius: 14px; background: rgba(205,235,226,.55); color: var(--green-800); font-size: .92rem; font-weight: 750; }
.values svg { width: 18px; flex: 0 0 auto; color: var(--green-500); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: process; }
.process-card { position: relative; padding: 35px 30px 31px; border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); counter-increment: process; }
.process-card::before { content: "0" counter(process); display: grid; place-items: center; width: 49px; height: 49px; margin-bottom: 23px; border-radius: 50%; background: var(--green-500); color: #fff; font-size: .9rem; font-weight: 850; letter-spacing: .06em; }
.process-card:not(:last-child)::after { content: ""; position: absolute; top: 58px; right: -25px; width: 28px; height: 2px; background: var(--aqua-300); }
.process-card h3 { font-size: 1.18rem; }
.process-card p { margin: 12px 0 0; color: var(--muted); }
.notice { display: flex; align-items: flex-start; gap: 12px; max-width: 760px; margin: 32px auto 0; padding: 18px 20px; border: 1px solid rgba(36,90,83,.1); border-radius: 18px; background: rgba(255,255,255,.68); color: var(--muted); font-size: .92rem; }
.notice svg { width: 21px; flex: 0 0 auto; margin-top: 2px; color: var(--green-500); }

.cta-box { position: relative; display: grid; grid-template-columns: 1.3fr auto; align-items: center; gap: 30px; padding: clamp(38px, 6vw, 72px); overflow: hidden; border-radius: var(--radius-lg); background: var(--green-700); color: #fff; box-shadow: 0 30px 70px rgba(36,90,83,.25); }
.cta-box::before, .cta-box::after { content: ""; position: absolute; border-radius: 50%; background: rgba(205,235,226,.1); }
.cta-box::before { width: 290px; height: 290px; top: -190px; right: 13%; }
.cta-box::after { width: 180px; height: 180px; bottom: -110px; left: 42%; }
.cta-box h2 { position: relative; color: #fff; font-size: clamp(2rem, 4vw, 3.35rem); }
.cta-box p { position: relative; max-width: 720px; margin: 18px 0 0; color: rgba(255,255,255,.78); }
.cta-box .btn { position: relative; min-width: 240px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: stretch; }
.contact-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-family: Georgia, serif; font-size: 2rem; }
.contact-card > p { margin-top: 15px; color: var(--muted); }
.contact-list { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: 13px; }
.contact-list-icon { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto; border-radius: 13px; background: var(--aqua-200); color: var(--green-700); }
.contact-list-icon svg { width: 20px; }
.contact-list strong { display: block; color: var(--green-800); }
.contact-list span { color: var(--muted); font-size: .92rem; }
.contact-card .btn { margin-top: 28px; }
.map-card { min-height: 470px; overflow: hidden; border: 10px solid #fff; border-radius: var(--radius-md); background: var(--aqua-200); box-shadow: var(--shadow-sm); }
.map-card iframe { width: 100%; height: 100%; min-height: 450px; border: 0; filter: saturate(.65) contrast(.95); }

.site-footer { padding: 42px 0 120px; border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-copy { color: var(--muted); font-size: .86rem; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--green-700); font-size: .88rem; font-weight: 700; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: inline-flex; align-items: center; gap: 10px; min-height: 58px; padding: 13px 20px; border: 4px solid rgba(255,255,255,.92); border-radius: 999px; background: var(--green-500); color: #fff; box-shadow: 0 16px 35px rgba(36,90,83,.3); font-weight: 850; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); background: var(--green-700); }
.whatsapp-float svg { width: 24px; }
.mobile-cta { display: none; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-visual { width: min(620px, 92%); margin-inline: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: 1 / -1; min-height: 250px; }
  .about-visual { width: min(580px, 94%); margin-inline: auto; }
  .about-copy { max-width: 760px; margin-inline: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card:not(:last-child)::after { top: auto; right: auto; left: 53px; bottom: -24px; width: 2px; height: 28px; }
  .cta-box { grid-template-columns: 1fr; text-align: center; }
  .cta-box p { margin-inline: auto; }
  .cta-box .btn { justify-self: center; }
  .map-card { min-height: 400px; }
}

@media (max-width: 860px) {
  :root { --header-height: 72px; }
  .brand-copy small { display: none; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: var(--header-height) 16px auto; display: grid; gap: 0; padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { margin-top: 10px; border-bottom: 0; }
  .site-nav > a:not(.btn)::after { display: none; }
  .hero-badges { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 34px; }
  .hero { padding-top: calc(var(--header-height) + 40px); padding-bottom: 45px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.7rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { width: 100%; margin-top: 10px; }
  .hero-visual::before { inset: 13% 2% -2% 10%; border-radius: 34px; }
  .hero-badge { min-height: 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: auto; padding: 27px; }
  .about-stamp { right: -5px; bottom: 12px; width: 116px; height: 116px; border-width: 6px; font-size: .98rem; }
  .values { grid-template-columns: 1fr; }
  .process-card { padding: 29px 25px; }
  .cta-box { padding: 40px 24px; border-radius: 30px; }
  .cta-box .btn { width: 100%; min-width: 0; }
  .contact-card { padding: 28px 24px; }
  .contact-card h3 { font-size: 1.72rem; }
  .map-card, .map-card iframe { min-height: 360px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .whatsapp-float { display: none; }
  .mobile-cta { position: fixed; inset: auto 12px 12px; z-index: 950; display: flex; }
  .mobile-cta .btn { width: 100%; min-height: 58px; border: 4px solid rgba(255,255,255,.92); box-shadow: 0 14px 34px rgba(36,90,83,.3); }
  .site-footer { padding-bottom: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
