:root {
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --paper: #ffffff;
  --paper-2: #f4f6f8;
  --white: #ffffff;
  --copper: #0e6b63;
  --copper-2: #1c8f85;
  --line: rgba(20, 20, 20, 0.08);
  --serif: "Outfit", "Segoe UI", sans-serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a:hover { color: var(--copper-2); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mark {
  width: 58px;
  height: 58px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  background: #f7f4ee;
}
.brand-name {
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.brand-name span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--copper);
  margin-top: 3px;
}

nav ul {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333;
}
nav a:hover, nav a.active { color: var(--copper); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--copper);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--copper);
  cursor: pointer;
  transition: 0.2s ease;
}
.btn:hover { background: #0a524c; border-color: #0a524c; color: #fff; }
.btn.ghost {
  background: transparent;
  color: var(--copper);
}
.btn.ghost:hover { background: var(--copper); color: #fff; }

.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 40%, rgba(14,107,99,0.10), transparent 42%),
    #fff;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-visual img {
  width: min(220px, 62%);
  border-radius: 50%;
  background: #f7f4ee;
  box-shadow: 0 12px 28px rgba(14,107,99,0.14);
}
.kicker {
  color: var(--copper);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 16ch;
}
.hero h1::after {
  content: "";
  display: block;
  width: 140px;
  height: 8px;
  margin-top: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 8'%3E%3Cpath d='M0 5 Q20 0 40 5 T80 5 T120 5 T140 5' fill='none' stroke='%230e6b63' stroke-width='3'/%3E%3C/svg%3E") no-repeat;
}
.hero p.lead {
  max-width: 44ch;
  margin: 22px 0 32px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.latin {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-style: italic;
  color: #777;
  max-width: 50ch;
  font-size: 0.95rem;
}

.section { padding: 80px 0; }
.section.alt { background: var(--paper-2); }
.section h2, .page-hero h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.intro {
  max-width: 62ch;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 8px 24px rgba(20,20,20,0.04);
}
.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.card p, .card li { color: var(--ink-soft); font-size: 1rem; }
.card ol, .card ul { margin-top: 10px; }
.card ol { padding-left: 18px; }

.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--copper);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin-top: 8px; color: var(--ink-soft); }

form { display: grid; gap: 14px; }
label { font-size: 0.88rem; font-weight: 600; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.fine { font-size: 0.82rem; color: var(--ink-soft); }

.contact-box {
  background: #1a1a1a;
  color: #fff;
  padding: 36px;
  border-radius: 20px;
}
.contact-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-box a { color: var(--copper-2); }

footer {
  background: #151515;
  color: #cfcfcf;
  padding: 40px 0 24px;
  font-size: 0.92rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
footer .brand-name { color: #fff; }
footer a:hover { color: #fff; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.page-hero {
  padding: 56px 0 28px;
  background: #fff;
}

@media (max-width: 860px) {
  .grid-3, .grid-2, .foot-grid, .hero .wrap { grid-template-columns: 1fr; }
  nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 82px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 24px;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: flex-start; gap: 14px; }
  .menu-btn { display: block; }
  .hero { padding: 40px 0 48px; }
  .hero-visual { order: -1; }
}

.btn-wa {
  background: #128C7E;
  border-color: #128C7E;
  color: #fff;
}
.btn-wa:hover {
  background: #075E54;
  border-color: #075E54;
  color: #fff;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #08351a;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 16px 12px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.wa-float:hover { filter: brightness(1.05); color: #08351a; }
.wa-float svg { width: 22px; height: 22px; fill: #08351a; }

.map-wrap {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}
.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
