:root {
  --bg: #0d0d0d;
  --bg-soft: #151515;
  --card: #1a1a1a;
  --gold: #c9a63a;
  --gold-soft: #e0c46a;
  --text: #f2f2f2;
  --muted: #b8b8b8;
  --line: rgba(201, 166, 58, 0.35);
  --white-line: rgba(255, 255, 255, 0.10);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }

/* HEADER */
.fx-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 166, 58, 0.28);
  transition: 0.28s ease;
}
.fx-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
}
.nav { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 260px; }
.brand img { width: 220px; max-height: 58px; height: auto; object-fit: contain; }
.brand-fallback { display: none; font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; font-weight: 700; }
.menu { display: flex; align-items: center; gap: 30px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: #e7e7e7; }
.menu a { position: relative; opacity: 0.86; transition: 0.25s ease; }
.menu a::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 0; height: 1px; background: var(--gold); transition: 0.25s ease; }
.menu a:hover, .menu a.active { opacity: 1; color: #fff; }
.menu a:hover::after, .menu a.active::after { width: 100%; }
.nav-cta {
  padding: 14px 24px;
  border: 1px solid rgba(201, 166, 58, 0.85);
  color: var(--gold-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.25s ease;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.nav-cta:hover { background: var(--gold); color: #111; transform: translateY(-1px); box-shadow: 0 14px 30px rgba(201, 166, 58, 0.22); }
.mobile-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 12px; cursor: pointer; }
.mobile-btn span { display: block; width: 20px; height: 2px; background: var(--gold-soft); margin: 5px auto; }

/* HERO */
.hero {
  min-height: 100vh;
  padding: 160px 0 82px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(8, 8, 8, 0.90) 44%, rgba(8, 8, 8, 0.56) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.86) 100%),
    url("../assets/hero-porto.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; right: -160px; top: 130px; width: 560px; height: 560px; border: 1px solid rgba(201, 166, 58, 0.16); border-radius: 50%; }
.hero::after { content: ""; position: absolute; right: 130px; bottom: 90px; width: 260px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: rotate(-35deg); opacity: 0.85; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 70px; }
.eyebrow { color: var(--gold-soft); font-size: 13px; text-transform: uppercase; letter-spacing: 0.24em; margin-bottom: 22px; }
.hero h1, .hero-content h1 { font-size: clamp(42px, 6vw, 78px); line-height: 0.98; letter-spacing: -0.055em; max-width: 820px; margin-bottom: 28px; }
.hero h1 span, .hero-content h1 span { color: var(--gold-soft); }
.hero p, .hero-content p { color: var(--muted); max-width: 690px; font-size: 18px; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 42px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 14px 22px; border-radius: 999px; border: 1px solid transparent; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; transition: 0.25s ease; cursor: pointer; }
.btn-primary { background: var(--gold); color: #111; box-shadow: 0 16px 36px rgba(201, 166, 58, 0.22); }
.btn-primary:hover { transform: translateY(-2px); background: var(--gold-soft); }
.btn-secondary { color: #fff; border-color: rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.04); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-soft); }

.hero-panel { position: relative; background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)); border: 1px solid rgba(201, 166, 58, 0.26); border-radius: 30px; padding: 34px; box-shadow: var(--shadow); overflow: hidden; }
.hero-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 5%, rgba(201, 166, 58, 0.22), transparent 34%); pointer-events: none; }
.risk-card { position: relative; z-index: 2; }
.risk-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.risk-top h2 { font-size: 24px; line-height: 1.1; letter-spacing: -0.03em; }
.risk-badge { border: 1px solid var(--line); color: var(--gold-soft); border-radius: 999px; padding: 9px 12px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.13em; white-space: nowrap; }
.risk-list { display: grid; gap: 16px; }
.risk-item { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: flex-start; padding: 18px; border-radius: 18px; background: rgba(0, 0, 0, 0.22); border: 1px solid rgba(255,255,255,0.08); }
.risk-item b { color: #fff; display: block; margin-bottom: 3px; }
.risk-item p { color: var(--muted); font-size: 14px; margin: 0; }
.icon-dot { width: 34px; height: 34px; border-radius: 50%; background: rgba(201, 166, 58, 0.12); border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-soft); font-weight: 700; }

/* STATS */
.stats-band { padding: 34px 0; background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.stat-item { min-height: 170px; padding: 34px 26px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: 0; }
.stat-item strong { display: block; color: var(--gold); font-size: clamp(42px, 5vw, 66px); line-height: 1; font-weight: 800; letter-spacing: -0.05em; margin-bottom: 14px; }
.stat-item span { display: block; color: #d6d6d6; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; }

/* GENERAL SECTIONS */
section { padding: 96px 0; position: relative; }
.section-head { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: end; margin-bottom: 46px; }
.section-label { color: var(--gold-soft); text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.03; letter-spacing: -0.045em; }
.section-head p { color: var(--muted); font-size: 17px; max-width: 650px; }

/* HOME SERVICE COVER CARDS */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.service-card { position: relative; min-height: 300px; height: 100%; border-radius: var(--radius); overflow: hidden; transition: 0.25s ease; }
.service-card--cover { min-height: 520px; padding: 0; background: #0b0b0b; border: 1px solid rgba(201, 166, 58, 0.24); box-shadow: 0 18px 42px rgba(0,0,0,0.24); isolation: isolate; }
.service-card--cover::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03); }
.service-card--cover:hover { transform: translateY(-5px); border-color: rgba(201, 166, 58, 0.48); box-shadow: 0 24px 54px rgba(0,0,0,0.38); }
.service-cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; border: 0; border-radius: 0; filter: saturate(0.98) contrast(1.04) brightness(0.95); transform: scale(1); transition: 0.35s ease; }
.service-card-content { position: absolute; inset: 0; z-index: 2; padding: 30px; display: flex; flex-direction: column; justify-content: flex-start; background: radial-gradient(circle at 84% 14%, rgba(201, 166, 58, 0.13), transparent 32%), linear-gradient(160deg, rgba(18, 18, 18, 0.98), rgba(8, 8, 8, 0.94)); opacity: 0; transform: translateY(18px); transition: 0.32s ease; }
.service-card--cover:hover .service-cover-img, .service-card--cover:focus-within .service-cover-img { transform: scale(1.04); opacity: 0.16; filter: saturate(0.9) contrast(1.08) brightness(0.72); }
.service-card--cover:hover .service-card-content, .service-card--cover:focus-within .service-card-content { opacity: 1; transform: translateY(0); }
.service-card h3 { font-size: 22px; line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 16px; min-height: 52px; display: flex; align-items: flex-start; }
.service-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0; }

/* SERVICES PAGE */
.hero-services { min-height: 78vh; padding: 170px 0 95px; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(8, 8, 8, 0.9) 45%, rgba(8, 8, 8, 0.58) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.88) 100%), url("../assets/hero-porto.webp"); background-size: cover; background-position: center center; background-repeat: no-repeat; }
.hero-services::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201, 166, 58, 0.65), transparent); }
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.service-list { display: grid; gap: 22px; }
.service-detail { display: grid; grid-template-columns: minmax(360px, 0.52fr) 1fr; min-height: 430px; padding: 0; align-items: stretch; overflow: hidden; border-radius: 28px; border: 1px solid rgba(201, 166, 58, 0.28); background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018)); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28); transition: 0.28s ease; }
.service-detail:hover { transform: translateY(-4px); border-color: rgba(224, 196, 106, 0.55); box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38); }
.service-detail-visual { position: relative; min-height: 430px; overflow: hidden; background: #080808; border: 0; box-shadow: none; padding: 0; }
.service-detail-visual::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.04) 60%, rgba(0,0,0,0.20) 100%); }
.service-detail-image { width: 100%; height: 100%; min-height: 430px; object-fit: cover; object-position: center center; display: block; border: 0; border-radius: 0; box-shadow: none; filter: saturate(0.98) contrast(1.06) brightness(0.92); transform: scale(1.04); transform-origin: center center; transition: transform 0.45s ease, filter 0.45s ease; }
.service-detail:hover .service-detail-image { transform: scale(1.09); filter: saturate(1.04) contrast(1.1) brightness(0.98); }
.service-body { padding: 42px 44px; display: flex; flex-direction: column; justify-content: center; }
.service-body h3 { font-size: clamp(26px, 3vw, 38px); line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 18px; }
.service-body p { color: var(--muted); font-size: 16px; margin-bottom: 22px; }
.service-points { display: grid; gap: 12px; }
.point { color: #d8d8d8; font-size: 14px; padding-left: 16px; border-left: 1px solid rgba(201,166,58,0.35); }
.point b { display: block; color: var(--gold-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 3px; }

/* METHOD */
.split, .method-band { background: var(--bg-soft); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.split-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.visual-box { min-height: 500px; border-radius: 34px; background: linear-gradient(145deg, rgba(201, 166, 58, 0.12), rgba(255,255,255,0.035)), radial-gradient(circle at 70% 20%, rgba(201, 166, 58, 0.28), transparent 26%), #101010; border: 1px solid rgba(201, 166, 58, 0.22); box-shadow: var(--shadow); position: relative; overflow: hidden; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; }
.visual-box::before, .visual-box::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,0.09); border-radius: 50%; }
.visual-box::before { width: 360px; height: 360px; right: -90px; top: -40px; }
.visual-box::after { width: 220px; height: 220px; left: -70px; bottom: 70px; }
.visual-content { position: relative; z-index: 2; background: rgba(0,0,0,0.34); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 26px; backdrop-filter: blur(12px); }
.visual-content strong { display: block; font-size: 26px; line-height: 1.05; margin-bottom: 12px; }
.visual-content span { color: var(--muted); }
.process-list { display: grid; gap: 18px; margin-top: 28px; }
.process-item { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.09); }
.process-step { width: 46px; height: 46px; border-radius: 16px; border: 1px solid var(--line); color: var(--gold-soft); display: grid; place-items: center; font-weight: 700; }
.process-item h3 { font-size: 21px; margin-bottom: 5px; }
.process-item p { color: var(--muted); font-size: 15px; }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.method-card { min-height: 215px; padding: 26px; border-radius: 24px; background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08); transition: 0.25s ease; }
.method-card:hover { border-color: rgba(201, 166, 58, 0.38); transform: translateY(-3px); }
.method-card span { width: 44px; height: 44px; border-radius: 15px; border: 1px solid var(--line); color: var(--gold-soft); display: grid; place-items: center; font-weight: 700; margin-bottom: 24px; }
.method-card h3 { font-size: 20px; line-height: 1.15; margin-bottom: 10px; }
.method-card p { color: var(--muted); font-size: 14px; }

/* DIFFERENTIALS */
.credibility { padding-top: 74px; }
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,0.08); border-radius: 28px; overflow: hidden; background: rgba(255,255,255,0.025); }
.cred-item { min-height: 180px; padding: 30px; border-right: 1px solid rgba(255,255,255,0.08); }
.cred-item:last-child { border-right: 0; }
.cred-item strong { display: block; color: var(--gold-soft); font-size: 36px; line-height: 1; margin-bottom: 14px; }
.cred-item span { color: var(--muted); font-size: 14px; }

/* CONTACT */
.contact { background: radial-gradient(circle at 15% 10%, rgba(201, 166, 58, 0.12), transparent 28%), linear-gradient(145deg, #101010, #080808); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.contact-card { background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)); border: 1px solid rgba(201, 166, 58, 0.22); border-radius: 30px; padding: 34px; box-shadow: var(--shadow); }
.contact-card h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.045em; margin-bottom: 18px; }
.contact-card p { color: var(--muted); margin-bottom: 28px; }
.contact-info { display: grid; gap: 14px; margin-top: 28px; }
.contact-info div { padding: 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); color: var(--muted); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { color: #e4e4e4; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
input, select, textarea { width: 100%; min-height: 52px; background: rgba(0,0,0,0.26); color: #fff; border: 1px solid rgba(255,255,255,0.12); border-radius: 15px; padding: 14px 16px; outline: none; font: inherit; transition: 0.2s ease; }
textarea { min-height: 126px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(201, 166, 58, 0.72); box-shadow: 0 0 0 4px rgba(201, 166, 58, 0.08); }
select { min-height: 56px; background-color: #0f0f0f; border: 1px solid rgba(201, 166, 58, 0.75); border-radius: 18px; padding: 14px 46px 14px 20px; cursor: pointer; appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: linear-gradient(45deg, transparent 50%, #e0c46a 50%), linear-gradient(135deg, #e0c46a 50%, transparent 50%); background-position: calc(100% - 24px) 50%, calc(100% - 16px) 50%; background-size: 8px 8px, 8px 8px; background-repeat: no-repeat; }
select:hover { border-color: rgba(224, 196, 106, 0.95); background-color: #121212; }
select option { background-color: #111; color: #fff; }
select option:checked { background-color: #2b2412; color: #e0c46a; }
.form button { grid-column: 1 / -1; justify-self: start; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: 13px; }

/* CTA */
.cta { background: radial-gradient(circle at 18% 12%, rgba(201,166,58,0.14), transparent 30%), radial-gradient(circle at 88% 70%, rgba(201,166,58,0.1), transparent 28%), #090909; }
.cta-box { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; padding: 46px; border-radius: 32px; border: 1px solid rgba(201, 166, 58, 0.32); background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)); box-shadow: var(--shadow); overflow: hidden; position: relative; }
.cta-box h2 { font-size: clamp(30px, 4vw, 50px); line-height: 1.03; letter-spacing: -0.045em; margin-bottom: 14px; }
.cta-box p { color: var(--muted); max-width: 680px; font-size: 16px; }

/* FOOTER */
.fx-footer { background: #090909; border-top: 1px solid rgba(201, 166, 58, 0.42); padding: 46px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; margin-bottom: 34px; }
.footer-logo { color: #fff; font-size: 18px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.footer-grid p, .footer-grid a, .footer-bottom { color: var(--muted); font-size: 14px; }
.footer-col h4 { color: var(--gold-soft); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 14px; }
.footer-col a { display: block; margin-bottom: 9px; transition: 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

/* ANIMATION */
.reveal { opacity: 0; transform: translateY(22px); transition: 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 980px) {
  .nav { height: 78px; }
  .brand img { width: 170px; max-height: 48px; }
  .mobile-btn { display: block; }
  .menu, .nav-cta { display: none; }
  .menu.open { display: grid; position: absolute; top: 78px; left: 20px; right: 20px; gap: 0; background: rgba(10,10,10,0.98); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
  .menu.open a { padding: 17px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-grid, .section-head, .split-grid, .contact-grid, .cta-box { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .cred-grid, .method-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2), .cred-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(1), .stat-item:nth-child(2), .cred-item:nth-child(1), .cred-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .service-detail { grid-template-columns: 1fr; min-height: auto; }
  .service-detail-visual { min-height: 360px; border-bottom: 1px solid rgba(201, 166, 58, 0.18); }
  .service-detail-image { min-height: 360px; aspect-ratio: 16 / 10; transform: scale(1.02); }
  .service-detail:hover .service-detail-image { transform: scale(1.06); }
}

@media (hover: none) {
  .service-card--cover { min-height: auto; }
  .service-cover-img { position: relative; aspect-ratio: 1 / 1; height: auto; border-bottom: 1px solid rgba(201, 166, 58, 0.18); }
  .service-card-content { position: relative; opacity: 1; transform: none; min-height: 250px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero h1, .hero-content h1 { font-size: 42px; }
  .hero p, .hero-content p { font-size: 16px; }
  .services-grid, .stats-grid, .cred-grid, .method-grid, .form, .footer-grid { grid-template-columns: 1fr; }
  .stat-item, .stat-item:nth-child(2), .cred-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child, .cred-item:last-child { border-bottom: 0; }
  .stat-item { min-height: 135px; padding: 28px 18px; }
  .hero-panel, .contact-card { padding: 24px; border-radius: 24px; }
  section { padding: 72px 0; }
  .service-card { min-height: auto; }
  .service-card h3 { min-height: auto; }
  .service-detail-visual { min-height: 280px; }
  .service-detail-image { min-height: 280px; aspect-ratio: 1 / 1; transform: scale(1.0); }
  .service-body { padding: 28px 24px; }
  .cta-box { padding: 28px 24px; }
}

/* SERVIÇOS — layout restaurado com imagens minimalistas na lateral */
.service-list {
  display: grid;
  gap: 24px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) 1fr;
  min-height: 390px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(201, 166, 58, 0.28);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transition: 0.28s ease;
}

.service-detail:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 196, 106, 0.55);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
}

.service-side-image {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #080808;
  padding: 0;
  border-right: 1px solid rgba(201, 166, 58, 0.18);
}

.service-side-img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(0.98) contrast(1.04) brightness(0.96);
  transform: scale(1.01);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.service-detail:hover .service-side-img {
  transform: scale(1.045);
  filter: saturate(1.02) contrast(1.08) brightness(1);
}

.service-body {
  padding: 42px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-body h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.service-body p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 22px;
}

.service-points {
  display: grid;
  gap: 12px;
}

.point {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
  color: #d8d8d8;
  font-size: 14px;
}

.point b {
  display: block;
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

@media (max-width: 980px) {
  .service-detail {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-side-image {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 166, 58, 0.18);
  }

  .service-side-img {
    min-height: 360px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .service-side-image {
    min-height: 280px;
  }

  .service-side-img {
    min-height: 280px;
    aspect-ratio: 3 / 4;
  }

  .service-body {
    padding: 28px 24px;
  }
}


/* FORMULÁRIO SEGURO */
.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cf-turnstile {
  grid-column: 1 / -1;
}

.form button:disabled {
  opacity: 0.72;
  cursor: wait;
}
