
:root {
  --bg: #090a0d;
  --bg-soft: #0f1116;
  --surface: rgba(15,17,22,.88);
  --surface-solid: #11141a;
  --surface-alt: #181c24;
  --text: #f5f1ea;
  --muted: #b5b1ab;
  --primary: #cfb28a;
  --primary-deep: #e6cfad;
  --accent: #8ea094;
  --accent-deep: #66796f;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(230,207,173,.18);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, .42);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, .30);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(230,207,173,.11), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(142,160,148,.10), transparent 18%),
    linear-gradient(180deg, #050608 0%, var(--bg) 100%);
  line-height: 1.68;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  opacity: .22;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 98px 0; position: relative; }
.section-muted {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.serif, h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; letter-spacing: -.02em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(230,207,173,.10), rgba(142,160,148,.08));
  border: 1px solid var(--line-strong);
  color: var(--primary-deep);
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 999px; background: var(--primary);
  box-shadow: 0 0 0 6px rgba(207,178,138,.10);
}
.section-header { max-width: 780px; margin: 0 auto 38px 0; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.03;
  margin: 18px 0 14px;
}
.section-header p { color: var(--muted); margin: 0; font-size: 1.06rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 15px 24px; border-radius: 999px; font-weight: 700; border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #0d0f12; background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: 0 16px 32px rgba(207,178,138,.18);
}
.btn-secondary {
  background: rgba(255,255,255,.04); border-color: var(--line); color: var(--text);
}
.btn-secondary:hover { background: rgba(255,255,255,.08); border-color: var(--line-strong); }
.btn-soft { background: rgba(230,207,173,.08); color: var(--primary-deep); }
.topbar {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7,9,12,.76);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: 84px;
}
.brand { display: inline-flex; align-items: center; gap: 16px; min-width: 0; }
.brand-logo { width: 68px; height: 68px; object-fit: contain; display: block; flex: 0 0 auto; filter: drop-shadow(0 8px 18px rgba(0,0,0,.28)); }
.brand-copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.brand strong { font-size: 1.12rem; line-height: 1.12; }
.brand span { color: var(--muted); font-size: .95rem; line-height: 1.25; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a:not(.btn) { color: var(--muted); font-weight: 500; }
.nav-links a:not(.btn):hover { color: var(--primary-deep); }
.menu-toggle {
  display: none; border: 1px solid var(--line); background: rgba(255,255,255,.04);
  width: 46px; height: 46px; border-radius: 14px; font-size: 1.25rem; color: var(--text);
}

.hero { padding: 42px 0 22px; }
.hero-shell {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(230,207,173,.08), transparent 28%),
    linear-gradient(135deg, rgba(13,15,20,.98), rgba(10,12,16,.96));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 34px; box-shadow: 0 26px 70px rgba(0,0,0,.40);
}
.hero-shell::before,
.hero-shell::after { content: none; }
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 34px; align-items: center;
  padding: 38px;
}
.hero-copy { padding-right: 8px; }
.hero-copy h1 {
  font-size: clamp(2.9rem, 5.2vw, 4.6rem);
  line-height: .95; margin: 16px 0 18px;
  max-width: 9.2ch;
}
.hero-copy p {
  font-size: 1.02rem; color: var(--muted); max-width: 590px;
  margin: 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.quick-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.quick-tags span {
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.035); border: 1px solid var(--line);
  font-size: .92rem; color: var(--muted);
}
.hero-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px;
}
.highlight-item {
  padding: 18px 18px 17px; border-radius: 22px;
  background: linear-gradient(180deg, rgba(17,20,26,.9), rgba(13,16,21,.82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.highlight-item strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.highlight-item span { color: var(--muted); font-size: .94rem; line-height: 1.55; }
.card, .metric-card, .service-card, .article-card, .faq-item, .contact-card, .quote-card, .about-panel, .process-card, .benefit-card, .cta-panel {
  background: linear-gradient(180deg, rgba(17,20,26,.92), rgba(13,16,21,.86));
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg); backdrop-filter: blur(12px);
}
.metric-card { padding: 18px; }
.metric-card strong { display:block; font-size: 1.08rem; margin-bottom: 6px; }
.metric-card span { color: var(--muted); font-size: .95rem; }
.hero-visual {
  display: grid; gap: 16px; align-self: stretch;
}
.hero-photo-card {
  min-height: 540px;
  background: #0b0d11;
}
.hero-visual .image-frame {
  border-radius: 30px; overflow: hidden; box-shadow: 0 26px 60px rgba(0,0,0,.42); position: relative; border: 1px solid rgba(255,255,255,.06);
}
.hero-visual .image-frame::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 30%;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(11,13,17,.22));
}
.hero-visual img {
  width: 100%; height: 100%; min-height: 540px; object-fit: cover; object-position: center 12%; display:block;
}
.hero-side-card {
  padding: 22px 24px;
  border-radius: 26px;
  border-color: rgba(230,207,173,.14);
}
.mini-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary-deep); margin-bottom: 10px;
}
.hero-side-card strong {
  display: block; font-size: 1.12rem; line-height: 1.4; margin-bottom: 8px;
}
.hero-side-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.floating-note { display:none; }
.grid-2 { display: grid; grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr); gap: 40px; align-items: start; }
.about-panel { padding: 16px; background: linear-gradient(145deg, rgba(18,21,28,.98), rgba(10,12,16,.92)); border-color: rgba(230,207,173,.12); max-width: 430px; }
.about-photo {
  position: relative; overflow: hidden; border-radius: 30px; aspect-ratio: 4 / 5; background: #0c0f14;
}
.about-photo::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 30%;
  background: linear-gradient(180deg, transparent, rgba(9,10,13,.36));
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transform: scale(1.01); }
.about-copy > p { color: var(--muted); }
.about-stack { display: grid; gap: 18px; align-self: start; }
.about-side-note { padding: 24px; border-radius: 24px; }
.about-side-note strong { display: block; font-size: 1.06rem; line-height: 1.45; margin-bottom: 8px; }
.about-side-note p { margin: 0; color: var(--muted); line-height: 1.6; }

.signature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px;
}
.signature-item {
  padding: 18px; border-radius: 20px; background: rgba(255,255,255,.02); border: 1px solid var(--line);
}
.signature-item strong { display:block; margin-bottom: 6px; color: var(--primary-deep); }
.signature-item span { color: var(--muted); }
.feature-band {
  margin-top: 28px; padding: 22px 24px; border-radius: 24px;
  background: linear-gradient(135deg, rgba(230,207,173,.08), rgba(142,160,148,.08));
  border: 1px solid var(--line-strong);
}
.feature-band strong { display:block; margin-bottom: 6px; font-size: 1.03rem; }
.feature-band span { color: var(--muted); }
.services-grid, .benefits-grid, .articles-grid, .contact-grid, .process-grid, .footer-grid {
  display: grid; gap: 22px;
}
.services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.service-card { padding: 28px; position: relative; overflow: hidden; }
.service-card::before {
  content: ''; position: absolute; inset: 0 auto auto 0; width: 100%; height: 1px; background: linear-gradient(90deg, rgba(230,207,173,.42), transparent 70%);
}
.service-card::after {
  content: ''; position: absolute; inset: auto -40px -40px auto; width: 120px; height: 120px;
  border-radius: 50%; background: radial-gradient(circle, rgba(230,207,173,.18), transparent 70%);
}
.service-icon {
  width: 54px; height: 54px; border-radius: 18px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(230,207,173,.16), rgba(142,160,148,.16));
  border: 1px solid var(--line-strong);
  margin-bottom: 18px; font-size: 1.35rem;
}
.service-card h3 { margin: 0 0 10px; font-size: 1.28rem; }
.service-card p { margin: 0; color: var(--muted); }
.benefits-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.benefit-card { padding: 24px; }
.benefit-card strong { display:block; margin-bottom: 8px; font-size: 1.04rem; color: var(--primary-deep); }
.benefit-card p { margin:0; color: var(--muted); }
.process-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.process-card { padding: 24px; }
.process-step {
  width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(230,207,173,.15), rgba(142,160,148,.10)); color: var(--primary-deep); font-weight: 800; margin-bottom: 12px;
  border: 1px solid var(--line-strong);
}
.process-card h3 { margin: 0 0 8px; font-size: 1.18rem; }
.process-card p { margin: 0; color: var(--muted); }
.quote-card {
  margin-top: 28px; padding: 30px 34px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #171a22, #101319); color: #f4efe9;
  border-color: var(--line-strong);
}
.quote-card::before {
  content: '“'; position:absolute; right: 26px; top: 8px; font-size: 6rem; line-height:1; opacity: .12;
}
.quote-card p { margin: 0; font-size: 1.16rem; max-width: 830px; }
.quote-card span { display:block; margin-top: 12px; opacity: .85; color: var(--primary-deep); }
.articles-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.article-card { overflow: hidden; }
.article-card .article-thumb { position: relative; overflow: hidden; }
.article-card img { width:100%; height:255px; object-fit: cover; transition: transform .25s ease; }
.article-card:hover img { transform: scale(1.03); }
.article-content { padding: 24px; }
.article-meta { color: var(--primary-deep); font-size: .84rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
body.dark-site a:hover { color: var(--primary-deep); }
.article-card h3 { margin: 10px 0 10px; font-size: 1.35rem; }
.article-card p { margin: 0 0 18px; color: var(--muted); }
.faq-list { display: grid; gap: 14px; }
.faq-item { overflow: hidden; }
.faq-question {
  width: 100%; border: 0; background: none; color: var(--text); cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; gap: 18px; padding: 22px 24px; font-weight: 700;
}
.faq-question span:last-child {
  width: 30px; height: 30px; border-radius: 999px; display:inline-flex; align-items:center; justify-content:center;
  background: rgba(230,207,173,.10); color: var(--primary-deep); flex-shrink: 0;
}
.faq-answer { display: none; padding: 0 24px 22px; color: var(--muted); }
.faq-item.active .faq-answer { display: block; }
.contact-shell {
  padding: 34px; border-radius: 34px; background: linear-gradient(135deg, rgba(12,14,18,.98), rgba(17,20,26,.95));
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-lg);
}
.contact-grid { grid-template-columns: 1.1fr .9fr; align-items: start; }
.contact-panel { padding-right: 20px; }
.contact-points { display:grid; gap: 14px; margin-top: 24px; }
.contact-point { display:grid; grid-template-columns: 44px 1fr; gap: 14px; align-items:start; }
.contact-point .badge {
  width: 44px; height: 44px; border-radius: 16px; display:inline-flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(230,207,173,.12), rgba(142,160,148,.10)); font-size: 1.15rem; border: 1px solid var(--line-strong);
}
.contact-point strong { display:block; margin-bottom: 4px; }
.contact-point span, .contact-point a { color: var(--muted); }
.contact-card { padding: 26px; }
.contact-card h3 { margin-top: 0; font-size: 1.5rem; }
.contact-list { display:grid; gap: 14px; margin-top: 18px; }
.contact-list .line { padding: 14px 0; border-top: 1px solid var(--line); }
.contact-list .line:first-child { border-top: 0; padding-top: 0; }
.contact-list strong { display:block; margin-bottom: 4px; color: var(--primary-deep); }
.contact-list span, .contact-list a { color: var(--muted); }
.cta-panel {
  margin-top: 24px; padding: 24px 26px; background: linear-gradient(135deg, rgba(207,178,138,.18), rgba(142,160,148,.12)); color: #f5eee7;
  border-color: var(--line-strong);
}
.cta-panel strong { display:block; font-size: 1.1rem; margin-bottom: 6px; }
.cta-panel span { opacity: .88; }
.footer { padding: 28px 0 46px; }
.footer-grid {
  grid-template-columns: 1.3fr .7fr; align-items: center; border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px;
}
.footer-note { color: var(--muted); }
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 35; width: 58px; height: 58px;
  border-radius: 999px; background: linear-gradient(135deg, var(--primary-deep), var(--primary)); color: #0d0f12;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 20px 36px rgba(207,178,138,.18);
  font-size: 1.35rem;
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.article-hero { padding: 56px 0 26px; }
.article-shell {
  background: linear-gradient(135deg, rgba(13,15,20,.96), rgba(16,19,25,.84));
  border: 1px solid var(--line-strong); border-radius: 34px; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.article-top { display:grid; grid-template-columns: 1.02fr .98fr; gap: 24px; align-items: center; padding: 34px; }
.article-top .cover { border-radius: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.article-top .cover img { width:100%; height:100%; min-height: 360px; object-fit: cover; }
.article-top h1 { font-size: clamp(2.3rem, 4.5vw, 4rem); line-height: 1; margin: 16px 0; }
.article-top p { color: var(--muted); font-size: 1.05rem; }
.article-body { max-width: 860px; margin: 34px auto 0; }
.article-content-card { padding: 34px; }
.article-content-card h2, .article-content-card h3 { margin-top: 24px; margin-bottom: 10px; }
.article-content-card p { color: var(--muted); margin-top: 0; }
.article-content-card ul { color: var(--muted); padding-left: 18px; }
.article-back { margin-top: 24px; }

.service-card, .article-card, .process-card, .benefit-card, .signature-item, .contact-card, .metric-card { transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.service-card:hover, .article-card:hover, .process-card:hover, .benefit-card:hover, .signature-item:hover, .contact-card:hover, .metric-card:hover { transform: translateY(-4px); border-color: rgba(230,207,173,.18); box-shadow: 0 22px 46px rgba(0,0,0,.34); }
.about-panel::before { content: ''; display:block; position:absolute; inset: 24px 24px auto auto; width: 120px; height: 120px; border-radius:50%; background: radial-gradient(circle, rgba(230,207,173,.14), transparent 72%); pointer-events:none; }
.about-panel { position: relative; overflow: hidden; }
.about-photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.12)); z-index: 1; pointer-events:none; }
.about-photo::after { height: 22%; background: linear-gradient(180deg, transparent, rgba(7,9,12,.12)); }
.about-copy .section-header h2 { max-width: 13ch; }
.about-copy { padding-top: 8px; }
.feature-band { box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.section::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent); }

@media (max-width: 1080px) {
  .hero-grid, .grid-2, .contact-grid, .article-top { grid-template-columns: 1fr; }
  .about-panel { max-width: none; }
  .about-copy .section-header h2 { max-width: none; }
  .services-grid, .benefits-grid, .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-highlights { grid-template-columns: 1fr; }
  .hero-photo-card, .hero-visual img { min-height: 500px; }
  .about-photo { aspect-ratio: auto; min-height: 620px; }
}
@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .hero-grid, .article-top { padding: 26px; gap: 24px; }
  .services-grid, .benefits-grid, .process-grid, .articles-grid, .signature-block, .footer-grid { grid-template-columns: 1fr; }
  .nav-links {
    display:none; position:absolute; left:16px; right:16px; top:76px; padding:18px; flex-direction:column; align-items:flex-start;
    background: rgba(14,16,21,.98); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-md);
  }
  .nav-links.open { display:flex; }
  .menu-toggle { display:block; }
  .hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); max-width: none; }
  .hero-shell { border-radius: 28px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual img, .article-top .cover img, .hero-photo-card { min-height: 340px; }
  .about-photo { min-height: 420px; }
  .contact-shell { padding: 24px; }
  .article-content-card { padding: 24px; }
}

@media (max-width: 768px) {
  .brand-logo { width: 56px; height: 56px; }
  .brand strong { font-size: 1rem; }
  .brand span { font-size: .82rem; }
}
