:root {
  --ink: #0d0b0b;
  --paper: #f7f5f2;
  --white: #ffffff;
  --muted: #686361;
  --line: #ddd8d2;
  --accent: #f04c2f;
  --accent-deep: #ce341d;
  --green: #1f8f5f;
  --shadow: 0 26px 80px rgba(25, 18, 14, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.site-header {
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border-bottom: 1px solid #ece8e3;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  position: relative;
  font-size: 35px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -4px;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  left: 7px;
  bottom: -3px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 45%, 52% 57%, 35% 100%);
}
.brand-name { font-size: 19px; font-weight: 760; letter-spacing: -.7px; }
.brand-name small { display: block; font-size: 8px; letter-spacing: 5px; text-align: right; }
.header-link { font-size: 13px; font-weight: 750; text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 78px));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media {
  z-index: -2;
  background: url("/assets/evento_palco.jpg") center 44% / cover no-repeat;
  transform: scale(1.015);
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 5, 4, .9) 0%, rgba(7, 5, 4, .63) 48%, rgba(7, 5, 4, .2) 100%),
    linear-gradient(0deg, rgba(7, 5, 4, .82) 0%, transparent 55%);
}
.hero-content {
  width: min(820px, 100%);
  padding: 84px clamp(20px, 6vw, 92px) clamp(58px, 9vh, 108px);
  color: var(--white);
}
.eyebrow, .section-label, .card-kicker {
  margin: 0 0 18px;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow { color: #ff8b74; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .91;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero-copy { max-width: 620px; margin: 26px 0 0; font-size: clamp(17px, 2.1vw, 23px); line-height: 1.5; color: #eee9e5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid transparent; text-decoration: none; font-size: 13px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--white); }
.button-primary:hover { background: var(--accent-deep); }
.button-secondary { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); color: var(--white); backdrop-filter: blur(8px); }

.section { padding: clamp(70px, 10vw, 136px) clamp(20px, 7vw, 108px); }
.section-label { color: var(--accent-deep); }
.section h2 { margin: 0; max-width: 900px; font-size: clamp(38px, 5.4vw, 76px); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.intro { display: grid; grid-template-columns: minmax(280px, .85fr) minmax(320px, 1.15fr); gap: clamp(50px, 9vw, 150px); background: var(--white); }
.intro-copy { max-width: 760px; font-size: clamp(19px, 2.2vw, 27px); line-height: 1.55; letter-spacing: -.02em; }
.intro-copy p { margin: 0 0 22px; }

.identity { background: var(--paper); }
.identity-heading > p:last-child { max-width: 710px; margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.identity-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 58px; }
.identity-card { position: relative; min-height: 330px; padding: clamp(26px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); overflow: hidden; }
.identity-card-featured { grid-column: span 2; min-height: 380px; display: grid; grid-template-columns: minmax(220px, .85fr) minmax(280px, 1.15fr); align-items: center; gap: clamp(30px, 7vw, 100px); background: var(--ink); color: var(--white); border: 0; box-shadow: var(--shadow); }
.identity-card-featured img { display: block; width: min(100%, 360px); height: auto; aspect-ratio: 1; object-fit: cover; background: white; }
.identity-card h3 { margin: 12px 0 20px; max-width: 650px; font-size: clamp(25px, 3.2vw, 43px); line-height: 1.08; letter-spacing: -.04em; }
.identity-card p { color: #cdc5bf; font-size: 17px; line-height: 1.55; }
.status { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: #d9d3cf; }
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(31,143,95,.17); }
.card-number { position: absolute; top: 28px; right: 30px; font-size: 13px; color: #aaa29d; }
.card-kicker { color: var(--accent-deep) !important; }
dl { margin: 28px 0 0; border-top: 1px solid var(--line); }
dl div { display: grid; grid-template-columns: 86px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
dt { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
dd { margin: 0; font-size: 15px; line-height: 1.45; }
.relationship-note { margin-top: 18px; padding: clamp(28px, 5vw, 58px); background: var(--accent); color: var(--white); }
.relationship-note span { font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.relationship-note p { max-width: 1040px; margin: 20px 0 0; font-size: clamp(20px, 2.6vw, 33px); line-height: 1.4; letter-spacing: -.025em; }

.contact { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(320px, .75fr); align-items: end; gap: clamp(50px, 9vw, 140px); background: var(--ink); color: var(--white); }
.contact > div > p:last-child { max-width: 650px; color: #c9c1bc; font-size: 18px; line-height: 1.6; }
.phone-card { display: block; padding: 34px; background: var(--white); color: var(--ink); text-decoration: none; border-bottom: 5px solid var(--accent); transition: transform .2s ease; }
.phone-card:hover { transform: translateY(-4px); }
.phone-card span, .phone-card small { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.phone-card strong { display: block; margin: 14px 0 34px; font-size: clamp(25px, 3vw, 40px); letter-spacing: -.04em; }
.phone-card b { color: var(--accent); font-size: 18px; }

.proof { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 9vw, 140px); align-items: start; background: var(--white); }
.proof-links { border-top: 1px solid var(--ink); }
.proof-links a { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 26px 4px; border-bottom: 1px solid var(--line); text-decoration: none; }
.proof-links a::after { content: "↗"; color: var(--accent); font-size: 24px; grid-row: 1 / span 2; grid-column: 2; }
.proof-links span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.proof-links strong { font-size: clamp(17px, 2vw, 24px); letter-spacing: -.025em; }

footer { display: grid; grid-template-columns: 1fr auto auto; gap: 36px; align-items: center; padding: 34px clamp(20px, 7vw, 108px); background: #e9e5df; border-top: 1px solid #d4cec7; font-size: 12px; color: #5b5551; }
.footer-brand { color: var(--ink); font-size: 16px; font-weight: 850; }
footer p { margin: 0; }

@media (max-width: 820px) {
  .site-header { min-height: 68px; }
  .header-link { display: none; }
  .hero { min-height: 700px; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,5,4,.94) 0%, rgba(7,5,4,.7) 64%, rgba(7,5,4,.28) 100%); }
  .hero-content { padding-bottom: 58px; }
  .intro, .contact, .proof { grid-template-columns: 1fr; }
  .identity-grid { grid-template-columns: 1fr; }
  .identity-card-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .identity-card-featured img { width: min(100%, 290px); }
  footer { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 520px) {
  .brand-name { font-size: 17px; }
  .hero h1 { font-size: 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .identity-card { min-height: 0; }
  .card-number { display: none; }
  dl div { grid-template-columns: 1fr; gap: 7px; }
  .phone-card { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
