:root {
  --black: #100b09;
  --black-2: #1a1110;
  --coffee: #43231d;
  --copper: #a65a3f;
  --gold: #d6ad75;
  --champagne: #f2dfc5;
  --cream: #fbf4ea;
  --nude: #dfc5ab;
  --muted: #8e7b70;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 11, 9, .22);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.narrow { max-width: 820px; text-align: center; }
.section { padding: 110px 0; position: relative; overflow: hidden; }
.section-dark {
  background:
    radial-gradient(circle at 15% 15%, rgba(214, 173, 117, .16), transparent 35%),
    linear-gradient(135deg, #100b09 0%, #1f1110 55%, #3b1d18 100%);
  color: var(--cream);
}
.section-warm { background: #f4e6d7; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(16, 11, 9, .76);
  border-bottom: 1px solid rgba(242, 223, 197, .14);
  backdrop-filter: blur(18px);
  color: var(--cream);
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: .03em;
  font-weight: 700;
}
.brand span { color: var(--gold); }
.nav { display: flex; gap: 28px; font-size: 14px; color: rgba(251,244,234,.82); }
.nav a:hover { color: var(--gold); }
.header-cta {
  padding: 12px 18px;
  border: 1px solid rgba(214,173,117,.46);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.hero { min-height: 100svh; padding: 140px 0 90px; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16,11,9,.98) 0%, rgba(16,11,9,.82) 42%, rgba(16,11,9,.2) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .78fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 16px;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--copper); }

h1, h2, h3 {
  margin: 0;
  line-height: .98;
  letter-spacing: -.035em;
}
h1, h2 { font-family: 'Cormorant Garamond', serif; font-weight: 700; }
h1 { font-size: clamp(54px, 7vw, 100px); max-width: 790px; }
h1 span { color: var(--gold); display: block; }
h2 { font-size: clamp(42px, 5.2vw, 74px); }
h3 { font-size: 22px; line-height: 1.15; }
.lead {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.18;
  max-width: 690px;
  color: var(--champagne);
  margin: 26px 0 18px;
  font-weight: 700;
}
.hero-text, .section-heading p, .narrow p, .promise-box p, .practical p, .transformation p, .about-grid p, .offer-copy p, .final-cta p {
  font-size: 18px;
  color: rgba(16,11,9,.72);
}
.section-dark .hero-text, .section-dark .section-heading p, .section-dark .promise-box p { color: rgba(251,244,234,.76); }
.hero-text { max-width: 650px; margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 0;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #1a1110;
  background: linear-gradient(135deg, var(--gold), #f5d49b 48%, #b8734e);
  box-shadow: 0 18px 38px rgba(214,173,117,.25);
}
.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(242,223,197,.24);
  background: rgba(255,255,255,.04);
}
.btn-full { width: 100%; }
.event-strip {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 710px;
  border: 1px solid rgba(242,223,197,.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.045);
  overflow: hidden;
}
.event-strip div { padding: 18px; border-right: 1px solid rgba(242,223,197,.12); }
.event-strip div:last-child { border-right: 0; }
.event-strip strong { display: block; color: var(--gold); font-size: 16px; }
.event-strip span { display: block; color: rgba(251,244,234,.64); font-size: 13px; margin-top: 3px; }

.hero-card { position: relative; }
.hero-photo {
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(214,173,117,.28);
  box-shadow: var(--shadow);
  background: var(--black);
  aspect-ratio: 3/4;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.price-card {
  position: relative;
  margin: -72px 24px 0;
  padding: 24px;
  border-radius: 24px;
  background: rgba(16,11,9,.86);
  border: 1px solid rgba(214,173,117,.32);
  backdrop-filter: blur(16px);
  color: var(--cream);
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}
.price-card p { margin: 0 0 8px; color: rgba(251,244,234,.68); font-size: 14px; }
.old-price { color: rgba(251,244,234,.55); text-decoration: line-through; display: block; }
.price-card strong { display: block; font-size: 36px; line-height: 1; color: var(--gold); margin: 8px 0; }
.price-card small { color: var(--champagne); font-weight: 700; }

.pain-section { background: var(--cream); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 54px;
}
.pain-grid article, .modules-grid article, .target-grid div, .faq-grid details {
  border: 1px solid rgba(67,35,29,.12);
  background: rgba(255,255,255,.62);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 16px 50px rgba(67,35,29,.06);
}
.pain-grid span {
  font-family: 'Cormorant Garamond', serif;
  display: block;
  font-size: 34px;
  color: var(--copper);
  margin-bottom: 22px;
}
.pain-grid strong { font-size: 17px; line-height: 1.35; display: block; }

.split, .split-large {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.promise-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(214,173,117,.2);
  border-radius: var(--radius-xl);
  padding: 42px;
}
blockquote {
  margin: 28px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: 1.08;
  color: var(--gold);
}

.section-heading { text-align: center; max-width: 860px; }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.modules-grid article { background: #fffaf5; }
.modules-grid p { color: rgba(16,11,9,.68); margin-bottom: 0; }
.icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--black);
  background: var(--champagne);
  margin-bottom: 22px;
  font-weight: 900;
}

.practical-grid, .about-grid, .offer-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.photo-stack {
  position: relative;
  min-height: 620px;
}
.photo-stack img {
  position: absolute;
  width: 72%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 8px solid #fff8ef;
  object-fit: cover;
}
.photo-stack img:first-child { top: 0; left: 0; height: 500px; }
.photo-stack img:last-child { bottom: 0; right: 0; height: 330px; }
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}
.check-list li {
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(67,35,29,.09);
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}
.check-list li::before { content: '✓'; color: var(--copper); margin-right: 8px; }

.gallery-section { padding-bottom: 80px; }
.gallery {
  width: min(100% - 40px, 1360px);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1.35fr .85fr 1fr .85fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.gallery img {
  width: 100%; height: 430px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(67,35,29,.12);
}
.gallery img:nth-child(2), .gallery img:nth-child(4) { margin-top: 46px; height: 360px; }

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}
.target-grid div {
  background: rgba(255,255,255,.06);
  border-color: rgba(214,173,117,.2);
  color: rgba(251,244,234,.86);
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  font-weight: 700;
}
.target-grid div::before {
  content: '✦';
  color: var(--gold);
  font-size: 24px;
  margin-right: 12px;
  align-self: flex-start;
}

.split-large { grid-template-columns: 1fr 1fr; }
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.before-after figure {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}
.before-after img { width: 100%; height: 560px; object-fit: cover; object-position: top center; }
.before-after figcaption {
  padding: 16px 18px;
  color: var(--cream);
  font-weight: 800;
  background: linear-gradient(90deg, var(--black), var(--coffee));
}

.about-photo img {
  border-radius: 34px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.stats div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(67,35,29,.09);
}
.stats strong { display: block; color: var(--copper); }
.stats span { font-size: 13px; color: rgba(16,11,9,.62); }

.offer { background: #fffaf5; }
.offer-grid { align-items: start; grid-template-columns: .95fr 1.05fr; }
.offer-details {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.offer-details div, .investment {
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(67,35,29,.1);
  background: var(--cream);
}
.offer-details span, .investment span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 800; }
.offer-details strong { display: block; margin-top: 6px; }
.investment { max-width: 360px; }
.investment small { display: block; margin-top: 8px; text-decoration: line-through; color: var(--muted); }
.investment strong { display: block; color: var(--copper); font-size: 42px; line-height: 1; margin-top: 4px; }
.map-link { display: inline-flex; margin-top: 22px; font-weight: 800; color: var(--copper); }

.lead-form {
  padding: 34px;
  border-radius: 30px;
  background: var(--black);
  color: var(--cream);
  box-shadow: var(--shadow);
  border: 1px solid rgba(214,173,117,.25);
}
.lead-form h3 { font-size: 28px; }
.lead-form p { color: rgba(251,244,234,.7); margin-bottom: 24px; }
.lead-form label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--champagne);
  margin-bottom: 15px;
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(242,223,197,.18);
  background: rgba(255,255,255,.08);
  color: var(--cream);
  border-radius: 14px;
  padding: 15px 16px;
  outline: none;
}
.lead-form select option { color: var(--black); }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--gold); }
.form-feedback { min-height: 24px; margin: 14px 0 0 !important; color: var(--gold) !important; font-weight: 800; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 46px; }
.faq-grid details {
  background: rgba(255,255,255,.06);
  border-color: rgba(214,173,117,.2);
}
.faq-grid summary { cursor: pointer; font-weight: 900; color: var(--gold); }
.faq-grid p { margin-bottom: 0; color: rgba(251,244,234,.75); }

.final-cta { background: linear-gradient(180deg, var(--cream), #f1dfce); }
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 34px 0;
  border-top: 1px solid rgba(214,173,117,.2);
}
.footer-grid { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer p { margin: 4px 0 0; color: rgba(251,244,234,.62); }
.footer a { color: var(--gold); font-weight: 800; }

.reveal { opacity: 0; transform: translateY(24px); animation: fadeUp .8s ease forwards; }
.delay-1 { animation-delay: .16s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid, .split, .split-large, .practical-grid, .about-grid, .offer-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding-top: 120px; }
  .pain-grid, .modules-grid, .target-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img, .gallery img:nth-child(2), .gallery img:nth-child(4) { height: 340px; margin-top: 0; }
  .photo-stack { min-height: 520px; }
  .photo-stack img:first-child { height: 420px; }
  .photo-stack img:last-child { height: 280px; }
}

@media (max-width: 680px) {
  .site-header { height: 68px; padding-inline: 18px; }
  .brand { font-size: 24px; }
  .header-cta { padding: 10px 13px; font-size: 12px; }
  .section { padding: 78px 0; }
  .container { width: min(100% - 28px, var(--container)); }
  h1 { font-size: 50px; }
  h2 { font-size: 42px; }
  .lead { font-size: 22px; }
  .hero-actions { align-items: stretch; }
  .btn { width: 100%; }
  .event-strip { grid-template-columns: 1fr; }
  .event-strip div { border-right: 0; border-bottom: 1px solid rgba(242,223,197,.12); }
  .event-strip div:last-child { border-bottom: 0; }
  .pain-grid, .modules-grid, .target-grid, .check-list, .before-after, .stats, .offer-details, .faq-grid, .gallery { grid-template-columns: 1fr; }
  .price-card { margin: -46px 14px 0; }
  .photo-stack { min-height: auto; display: grid; gap: 14px; }
  .photo-stack img { position: static; width: 100%; height: auto !important; }
  .before-after img { height: 470px; }
  .lead-form { padding: 24px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

/* ===== Ajuste visual v2: alinhado ao banner oficial Hoberta Oliveira ===== */
:root {
  --black: #111111;
  --black-2: #1a1a1a;
  --coffee: #2b211c;
  --copper: #b58a45;
  --gold: #c79b4b;
  --gold-deep: #9e7432;
  --champagne: #efe2cc;
  --cream: #fbf7f0;
  --ivory: #fffdf8;
  --nude: #e8d8c3;
  --muted: #7e766d;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(20, 16, 12, .16);
}

body {
  background:
    radial-gradient(circle at 85% 0%, rgba(199,155,75,.13), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f7efe4 52%, #fffaf3 100%);
}

.site-header {
  background: rgba(255, 253, 248, .86);
  border-bottom: 1px solid rgba(199,155,75,.24);
  color: var(--black);
  box-shadow: 0 12px 34px rgba(20,16,12,.06);
}
.brand { color: #171717; }
.brand span { color: var(--gold-deep); }
.nav { color: rgba(17,17,17,.72); }
.nav a:hover { color: var(--gold-deep); }
.header-cta {
  color: var(--black);
  border-color: rgba(199,155,75,.45);
  background: linear-gradient(135deg, #f8eddb, #fffdf8);
}

.hero-official {
  min-height: 100svh;
  padding: 136px 0 86px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(255,253,248,.96) 0%, rgba(255,250,243,.92) 48%, rgba(239,226,204,.62) 100%),
    url('assets/banner-oficial-hoberta.jpg') center right / cover no-repeat;
}
.hero-official::after {
  content: 'HO';
  position: absolute;
  right: 8vw;
  top: 12vh;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(120px, 19vw, 290px);
  line-height: 1;
  color: rgba(199,155,75,.13);
  font-weight: 700;
  pointer-events: none;
}
.hero-official .hero-bg {
  background:
    radial-gradient(circle at 10% 10%, rgba(199,155,75,.14), transparent 30%),
    linear-gradient(180deg, rgba(255,253,248,.35), rgba(255,253,248,.72));
}
.hero-official h1 {
  text-transform: uppercase;
  letter-spacing: -.055em;
  color: #141414;
  max-width: 680px;
}
.hero-official h1 span {
  color: var(--gold);
  font-size: 1.15em;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.hero-official .lead {
  color: #191919;
  max-width: 560px;
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.22;
}
.hero-question {
  max-width: 470px;
  margin: 24px 0 14px;
  padding-left: 22px;
  border-left: 6px solid var(--gold);
  color: #252525;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.2;
  font-weight: 600;
}
.hero-question::first-letter { color: var(--gold-deep); }
.hero-official .hero-text { color: rgba(17,17,17,.72); max-width: 620px; }
.hero-official .eyebrow.dark,
.hero-official .eyebrow { color: var(--gold-deep); }

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(105px, 1fr));
  gap: 12px;
  max-width: 690px;
  margin: 28px 0 30px;
}
.hero-benefits div {
  min-height: 96px;
  padding: 14px 12px;
  border: 1px solid rgba(199,155,75,.25);
  background: rgba(255,255,255,.58);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  font-size: 12px;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 900;
  color: #232323;
  box-shadow: 0 14px 34px rgba(20,16,12,.06);
}
.hero-benefits span {
  font-size: 24px;
  color: var(--gold-deep);
  line-height: 1;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #cfa95d 0%, #b78533 46%, #e3c37b 100%);
  box-shadow: 0 18px 38px rgba(183,133,51,.28);
}
.hero-official .btn-ghost {
  color: var(--black);
  border: 1px solid rgba(17,17,17,.16);
  background: rgba(255,255,255,.58);
}
.hero-official .event-strip {
  background: rgba(255,255,255,.64);
  border-color: rgba(199,155,75,.25);
  box-shadow: 0 20px 60px rgba(20,16,12,.08);
}
.hero-official .event-strip div { border-color: rgba(199,155,75,.2); }
.hero-official .event-strip strong { color: #181818; }
.hero-official .event-strip span { color: rgba(17,17,17,.58); }

.hero-official .hero-card { z-index: 2; }
.hero-official .hero-photo {
  background: linear-gradient(135deg, #f8efe2, #ffffff);
  border: 1px solid rgba(199,155,75,.45);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(20,16,12,.16);
}
.hero-official .hero-photo img { object-position: center top; }
.mentor-bullets {
  position: relative;
  margin: -54px 22px 0 auto;
  width: min(92%, 420px);
  padding: 22px;
  border-radius: 24px;
  background: rgba(17,17,17,.93);
  color: var(--ivory);
  border: 1px solid rgba(199,155,75,.42);
  box-shadow: 0 20px 50px rgba(20,16,12,.24);
}
.mentor-bullets strong {
  display: block;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}
.mentor-bullets span {
  display: block;
  margin-top: 7px;
  color: rgba(255,253,248,.86);
  font-weight: 600;
  font-size: 14px;
}
.hero-official .price-card {
  margin-top: 18px;
  background: rgba(255,253,248,.92);
  color: var(--black);
  border: 1px solid rgba(199,155,75,.36);
}
.hero-official .price-card p,
.hero-official .old-price { color: rgba(17,17,17,.56); }
.hero-official .price-card strong { color: var(--gold-deep); }
.hero-official .price-card small { color: #292929; }

.section-dark {
  background:
    radial-gradient(circle at 15% 15%, rgba(199,155,75,.16), transparent 35%),
    linear-gradient(135deg, #111111 0%, #1b1814 58%, #3a2a18 100%);
}
.section-warm { background: #f1e5d4; }
.eyebrow.dark { color: var(--gold-deep); }
.modules-grid article,
.pain-grid article,
.faq-grid details { background: rgba(255,253,248,.74); }
.icon { background: #f3e2c7; color: var(--gold-deep); }
.check-list li::before,
.stats strong,
.map-link,
.investment strong { color: var(--gold-deep); }
.investment em {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.lead-form {
  background: linear-gradient(160deg, #111111, #24201a 62%, #3a2a18);
  border-color: rgba(199,155,75,.42);
}
.lead-form label { color: #f1e5d4; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,155,75,.14); }
.form-feedback { color: #e3c37b !important; }

@media (max-width: 980px) {
  .hero-official {
    background:
      linear-gradient(180deg, rgba(255,253,248,.98) 0%, rgba(255,250,243,.94) 54%, rgba(239,226,204,.70) 100%),
      url('assets/banner-oficial-hoberta.jpg') center top / cover no-repeat;
  }
  .hero-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .hero-official { padding-top: 108px; }
  .hero-official h1 { font-size: 48px; }
  .hero-benefits { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-benefits div { min-height: 82px; font-size: 10.5px; }
  .mentor-bullets { margin: -38px 12px 0; width: auto; }
}


.partner-inline {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.partner-inline span,
.offer-partner-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(199,155,75,.28);
  background: rgba(255,255,255,.62);
  color: rgba(17,17,17,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.partner-logo-card,
.offer-partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 18px;
  background: #000;
  border: 1px solid rgba(199,155,75,.34);
  box-shadow: 0 18px 36px rgba(20,16,12,.12);
}
.partner-logo-card img {
  width: 150px;
  height: auto;
  display: block;
}
.offer-partner {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.offer-partner-logo img {
  width: 185px;
  height: auto;
  display: block;
}
@media (max-width: 680px) {
  .partner-logo-card img { width: 126px; }
  .offer-partner { margin-top: 20px; }
  .offer-partner-logo img { width: 150px; }
}
