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

:root {
  --teal-900: #0b3b3c;
  --teal-700: #0f5e5b;
  --teal-600: #137c77;
  --teal-100: #e3f2f0;
  --teal-50: #f2f9f8;
  --graphite: #1c2430;
  --slate: #4b5563;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f7f9fa;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(16,24,40,.05), 0 1px 3px rgba(16,24,40,.06);
  --shadow-md: 0 14px 32px -12px rgba(11,59,60,.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--graphite);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
}

h1, h2, h3, h4 { font-family: "Manrope", "DM Sans", sans-serif; font-weight: 700; line-height: 1.2; color: var(--graphite); letter-spacing: -0.01em; }

a { color: var(--teal-700); }

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 10px;
}

/* Top bar */
.topbar {
  background: var(--teal-900); color: rgba(255,255,255,.85);
  font-size: .8rem; padding: 8px 0; text-align: center;
}
.topbar a { color: #fff; font-weight: 600; text-decoration: none; }

/* Header */
header {
  background: var(--bg); border-bottom: 1px solid var(--line);
  padding: 16px 0; position: sticky; top: 0; z-index: 20;
}
header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-700); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.1rem;
}
.brand h1 { font-size: 1.3rem; font-weight: 800; color: var(--graphite); }
.brand h1 span { color: var(--teal-600); }
.brand p { font-size: .8rem; color: var(--muted); margin-top: -2px; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .phone { font-weight: 700; color: var(--graphite); text-decoration: none; font-size: .95rem; }

/* Nav */
nav { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
nav .container { display: flex; gap: 1.6rem; flex-wrap: wrap; padding: 12px 24px; }
nav a { color: var(--slate); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .15s; }
nav a:hover { color: var(--teal-700); }

/* Main */
main { padding: 0 0 72px; }
section { padding: 56px 0; }
section.alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.tight { padding: 40px 0; }

h2 { font-size: 1.7rem; margin-bottom: 14px; }
h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.lead { font-size: 1.08rem; color: var(--slate); max-width: 720px; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--teal-50) 0%, #fff 100%);
  padding: 72px 0 64px; border-bottom: 1px solid var(--line);
}
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h2 { font-size: clamp(2rem, 4.4vw, 2.9rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.025em; }
.hero p { color: var(--slate); font-size: 1.1rem; margin-bottom: 26px; max-width: 560px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { font-size: .85rem; color: var(--muted); margin-top: 14px; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow-md);
}
.hero-card h3 { margin: 0 0 14px; font-size: 1rem; color: var(--teal-900); }
.hero-card ol { padding-left: 0; list-style: none; counter-reset: passo; }
.hero-card li { counter-increment: passo; display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .95rem; color: var(--slate); }
.hero-card li:last-child { border-bottom: none; }
.hero-card li::before {
  content: counter(passo); flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-100); color: var(--teal-700); font-weight: 800; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block; text-decoration: none;
  padding: 14px 26px; border-radius: 10px;
  font-weight: 700; font-size: .98rem; font-family: inherit;
  border: 2px solid var(--teal-700); cursor: pointer;
  background: var(--teal-700); color: #fff;
  transition: background .15s, border-color .15s, transform .15s;
}
.btn:hover { background: var(--teal-900); border-color: var(--teal-900); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--teal-700); }
.btn-outline:hover { background: var(--teal-100); color: var(--teal-900); }

/* Cards */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.service-card p { font-size: .93rem; color: var(--slate); }
.service-card .icon {
  width: 42px; height: 42px; border-radius: 10px; margin-bottom: 14px;
  background: var(--teal-100); color: var(--teal-700);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.step { padding: 22px; border-left: 3px solid var(--teal-600); background: #fff; border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow); }
.step strong { display: block; font-family: "Manrope", sans-serif; font-size: 1rem; margin-bottom: 6px; }
.step p { color: var(--slate); font-size: .93rem; }

/* Two columns */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin-top: 16px; }
.feature-list li { padding: 10px 0 10px 32px; position: relative; border-bottom: 1px solid var(--line); color: var(--slate); }
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 16px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal-600);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M10 0a10 10 0 100 20 10 10 0 000-20zm4.6 7.4-5.3 5.3a1 1 0 01-1.4 0L5.4 10.2a1 1 0 111.4-1.4l1.8 1.8 4.6-4.6a1 1 0 111.4 1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M10 0a10 10 0 100 20 10 10 0 000-20zm4.6 7.4-5.3 5.3a1 1 0 01-1.4 0L5.4 10.2a1 1 0 111.4-1.4l1.8 1.8 4.6-4.6a1 1 0 111.4 1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Info table */
.info-table {
  width: 100%; border-collapse: collapse; margin-top: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.info-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table tr:last-child td { border-bottom: none; }
.info-table td.label { font-weight: 700; width: 36%; color: var(--teal-900); background: var(--bg-soft); }

/* FAQ */
.faq details { border: 1px solid var(--line); border-radius: 10px; padding: 0 18px; margin-top: 10px; background: #fff; }
.faq summary { cursor: pointer; padding: 14px 0; font-weight: 700; font-family: "Manrope", sans-serif; list-style: none; position: relative; padding-right: 28px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 12px; color: var(--teal-600); font-size: 1.2rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 16px; color: var(--slate); font-size: .95rem; }

/* Form */
form { margin-top: 22px; max-width: 580px; }
.form-group { margin-bottom: 16px; }
form label { display: block; margin-bottom: 6px; font-weight: 600; color: var(--graphite); font-size: .92rem; }
form input, form textarea, form select {
  width: 100%; padding: 12px 14px;
  border: 1px solid #d1d5db; border-radius: 10px;
  font-family: inherit; font-size: 1rem; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
form input:focus, form textarea:focus, form select:focus {
  outline: none; border-color: var(--teal-600);
  box-shadow: 0 0 0 4px var(--teal-100);
}
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--slate); }
.consent input { width: auto; margin-top: 4px; }
.consent label { font-weight: 400; margin: 0; color: var(--slate); }

.legal-notice {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 20px;
  color: var(--slate); font-size: .88rem; margin-top: 28px;
}

/* Footer */
footer { background: var(--teal-900); color: rgba(255,255,255,.75); padding: 44px 0 28px; font-size: .88rem; }
footer .container { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; }
footer strong { color: #fff; font-family: "Manrope", sans-serif; }
footer h4 { color: #fff; font-size: .9rem; margin-bottom: 10px; }
footer a { color: rgba(255,255,255,.75); text-decoration: none; }
footer a:hover { color: #fff; }
footer ul { list-style: none; }
footer li { margin-bottom: 6px; }
footer nav { background: none; border: none; }
footer nav .container { padding: 0; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 18px;
  font-size: .8rem; color: rgba(255,255,255,.6);
}
.footer-bottom .container { display: block; }

.hidden { display: none; }

/* Inner pages */
.page-simple main { padding: 48px 0 72px; }
.page-simple section { padding: 0; }
.page-simple section + section { padding-top: 48px; }
.page-simple .lead { margin-bottom: 8px; }
.page-simple p { color: var(--slate); margin-bottom: 8px; }
.page-simple ul, .page-simple ol { margin: 6px 0 12px 22px; color: var(--slate); }
.page-simple li { margin-bottom: 4px; }

.breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-700); }

.service-card a.card-link { color: inherit; text-decoration: none; display: block; }
.service-card .more { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--teal-700); font-size: .9rem; }

.article { max-width: 760px; }
.article h3 { margin-top: 30px; }
.article .meta { font-size: .85rem; color: var(--muted); margin-bottom: 20px; }

.guides-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.guides-list li { margin: 0; }
.guides-list a {
  display: block; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; color: inherit; background: #fff; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.guides-list a:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.guides-list strong { display: block; font-family: "Manrope", sans-serif; margin-bottom: 6px; color: var(--graphite); }
.guides-list span { font-size: .9rem; color: var(--slate); }

.callout {
  border-left: 4px solid var(--teal-600); background: var(--teal-50);
  padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0; color: var(--teal-900); font-size: .95rem;
}
.callout strong { font-family: "Manrope", sans-serif; }

.cta-band { background: var(--teal-900); color: #fff; padding: 48px 0; margin-top: 48px; border-radius: var(--radius); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 600px; margin-bottom: 20px; }
.cta-band .btn { background: #fff; color: var(--teal-900); border-color: #fff; }
.cta-band .btn:hover { background: var(--teal-100); border-color: var(--teal-100); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.team-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; box-shadow: var(--shadow); }
.team-card .avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: "Manrope", sans-serif; margin-bottom: 12px; }
.team-card strong { display: block; font-family: "Manrope", sans-serif; }
.team-card span { font-size: .88rem; color: var(--muted); }

@media (max-width: 860px) {
  .guides-list, .team-grid { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .services-grid, .steps { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  footer .container { grid-template-columns: 1fr; }
  header { position: static; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }
  section { padding: 44px 0; }
  .info-table td { display: block; width: 100%; }
  .header-cta .phone { display: none; }
}
