:root {
  --navy: #02283c;
  --navy-2: #063952;
  --navy-3: #0a4a69;
  --gold: #cda86f;
  --gold-dark: #a98247;
  --gold-light: #f1dfc3;
  --white: #ffffff;
  --soft: #f7f3ed;
  --soft-blue: #eef6f8;
  --text: #132330;
  --muted: #687888;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(2, 40, 60, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 800;
}
.skip-link:focus { left: 12px; }

.site-header {
  background: rgba(2, 40, 60, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: 0.25s ease;
}
.site-header.scrolled {
  background: rgba(2, 40, 60, 0.97);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.navbar { padding: 14px 0; }
.brand-logo { width: 186px; max-height: 58px; object-fit: contain; }
.nav-link {
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: .94rem;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: .2rem;
  right: .2rem;
  bottom: -.35rem;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: .2s ease;
}
.nav-link:hover, .nav-link:focus { color: var(--gold); }
.nav-link:hover::after, .nav-link:focus::after { transform: scaleX(1); }
.navbar .nav-link.active,
.navbar .nav-link.show { color: var(--gold); }
.navbar .nav-link.active::after,
.navbar .nav-link.show::after { transform: scaleX(1); }
.navbar-toggler { border-color: rgba(255,255,255,0.28); }
.navbar-toggler-icon { filter: invert(1); }

.btn {
  border-radius: 999px;
  font-weight: 900;
  padding: 12px 22px;
  border-width: 1px;
  transition: .22s ease;
}
.btn-sm { padding: 9px 15px; font-size: .88rem; }
.btn-lg { padding: 14px 26px; }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(205,168,111,0.25);
}
.btn-gold:hover, .btn-gold:focus { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline-gold { color: var(--gold); border-color: rgba(205,168,111,0.5); }
.btn-outline-gold:hover { color: var(--navy); background: var(--gold); border-color: var(--gold); }
.btn-light-ghost { color: var(--white); border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.btn-light-ghost:hover { background: var(--white); color: var(--navy); }
.btn-dark-blue { background: var(--navy); color: var(--white); }
.btn-dark-blue:hover { background: var(--navy-2); color: var(--white); transform: translateY(-2px); }

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(115deg, rgba(2,40,60,0.96) 0%, rgba(2,40,60,0.88) 52%, rgba(10,74,105,0.78) 100%), url('assets/img_webp/escritorio-icaro-hora.webp') center/cover no-repeat;
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: auto -8% -34% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205,168,111,.22), transparent 70%);
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 25%, rgba(205,168,111,.35), transparent 28%), radial-gradient(circle at 16% 82%, rgba(255,255,255,.10), transparent 24%);
  pointer-events: none;
}
.eyebrow, .section-tag {
  display: inline-flex;
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 14px;
  align-items: center;
  gap: 8px;
}
.section-tag {
  padding: 8px 12px;
  border: 1px solid rgba(205,168,111,.35);
  border-radius: 999px;
  background: rgba(205,168,111,.08);
}
h1, .section-title, .intro-panel h2, .final-cta h2 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.035em;
}
h1 { max-width: 840px; font-size: clamp(2.55rem, 6vw, 5.5rem); line-height: .98; margin-bottom: 24px; }
.hero-text { max-width: 710px; color: rgba(255,255,255,.80); font-size: clamp(1rem, 1.7vw, 1.22rem); margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,.87); font-size: .95rem; }
.trust-row i { color: var(--gold); margin-right: 6px; }

.hero-portrait {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.18);
  min-height: 610px;
  background: var(--navy);
}
.hero-portrait img { width: 100%; height: 610px; object-fit: cover; object-position: 46% center; transform: scale(1.02); }
.hero-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,40,60,.84), transparent 44%);
  z-index: 1;
}
.portrait-card {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 18px 20px;
}
.portrait-card strong { display: block; font-size: 1.25rem; color: var(--white); }
.portrait-card span { color: rgba(255,255,255,.75); }

.section-padding { padding: 96px 0; }
.bg-soft { background: linear-gradient(180deg, var(--soft), #fff); }
.bg-navy { background: radial-gradient(circle at top left, rgba(205,168,111,.22), transparent 34%), var(--navy); }
.section-heading { max-width: 760px; }
.section-title { font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; color: var(--navy); margin-bottom: 18px; }
.section-text { color: var(--muted); font-size: 1.03rem; }

.intro-section { padding-top: 44px; padding-bottom: 44px; background: var(--white); }
.intro-panel {
  margin-top: -104px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
  background: var(--white);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(2,40,60,.08);
  overflow: hidden;
}
.intro-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(205,168,111,.25));
}
.intro-panel h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.08; margin: 0; }
.intro-panel p { color: var(--muted); margin: 0; }

.image-stack { position: relative; min-height: 560px; }
.image-main {
  width: 88%;
  min-height: 540px;
  height: 540px;
  object-fit: cover;
  object-position: 45% center;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.image-mini {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 48%;
  height: 210px;
  object-fit: cover;
  border-radius: 24px;
  border: 8px solid var(--white);
  box-shadow: 0 16px 38px rgba(2,40,60,.18);
}
.trajectory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.trajectory-grid div {
  background: var(--soft);
  border: 1px solid rgba(205,168,111,.22);
  border-radius: 20px;
  padding: 18px;
}
.trajectory-grid i { color: var(--gold-dark); font-size: 1.5rem; margin-bottom: 10px; display: block; }
.trajectory-grid strong, .trajectory-grid span { display: block; }
.trajectory-grid strong { color: var(--navy); }
.trajectory-grid span { color: var(--muted); font-size: .92rem; }

.area-card, .content-card, .timeline-item {
  position: relative;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(2,40,60,.08);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 12px 38px rgba(2,40,60,.06);
  transition: .25s ease;
  overflow: hidden;
}
.area-card::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 150px;
  height: 150px;
  background: rgba(205,168,111,.18);
  border-radius: 50%;
}
.area-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(205,168,111,.3));
}
.area-card:hover, .content-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.area-card > span { color: var(--gold); font-weight: 900; letter-spacing: .1em; }
.area-card i { display: block; font-size: 2.35rem; color: var(--gold-dark); margin: 18px 0; }
.area-card h3, .content-card h3, .timeline-item h3 { color: var(--navy); font-size: 1.25rem; font-weight: 900; margin-bottom: 12px; }
.area-card p, .content-card p, .timeline-item p { color: var(--muted); margin: 0; }
.area-card a { display: inline-flex; gap: 8px; align-items: center; margin-top: 20px; color: var(--navy); font-weight: 900; }
.area-card a:hover { color: var(--gold-dark); }

.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.audience-grid div {
  background: var(--soft-blue);
  color: var(--navy);
  padding: 18px;
  border-radius: 18px;
  font-weight: 800;
  border: 1px solid rgba(2,40,60,.06);
  transition: .22s ease;
}
.audience-grid div:hover {
  transform: translateY(-4px);
  background: #e5f1f5;
  box-shadow: 0 14px 30px rgba(2,40,60,.08);
}
.audience-grid i { color: var(--gold-dark); margin-right: 10px; }

.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.timeline-item { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); box-shadow: none; }
.timeline-item {
  backdrop-filter: blur(6px);
  border-top: 3px solid rgba(205,168,111,.42);
}
.timeline-item span { color: var(--gold); font-weight: 900; font-size: .9rem; }
.timeline-item h3 { color: var(--white); margin-top: 12px; }
.timeline-item p { color: rgba(255,255,255,.66); }

.feature-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.feature-list div {
  background: var(--soft);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(205,168,111,.2);
}
.feature-list i { color: var(--gold-dark); font-size: 1.55rem; display: block; margin-bottom: 10px; }
.feature-list strong, .feature-list span { display: block; }
.feature-list strong { color: var(--navy); }
.feature-list span { color: var(--muted); font-size: .92rem; }

.content-card { min-height: 190px; }
.content-card h3 { font-size: 1.1rem; }

.latest-post-card {
  position: relative;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(2,40,60,.08);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 38px rgba(2,40,60,.06);
  transition: .25s ease;
  display: flex;
  flex-direction: column;
}
.latest-post-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.latest-post-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(205,168,111,.28));
}
.latest-post-thumb img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}
.latest-post-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.latest-post-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}
.latest-post-card h3 {
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.3;
  margin: 0;
}
.latest-post-card p {
  color: var(--muted);
  margin: 0;
}
.latest-post-link {
  margin-top: auto;
  color: var(--navy);
  font-weight: 900;
}
.latest-post-link:hover { color: var(--gold-dark); }
.latest-post-empty {
  background: var(--white);
  border: 1px solid rgba(2,40,60,.08);
  border-radius: 20px;
  padding: 20px;
  color: var(--muted);
}

.custom-accordion .accordion-item {
  border: 1px solid rgba(2,40,60,.08);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 12px 28px rgba(2,40,60,.05);
}
.custom-accordion .accordion-button { font-weight: 900; color: var(--navy); padding: 20px; }
.custom-accordion .accordion-button:not(.collapsed) { background: var(--soft); color: var(--navy); box-shadow: none; }
.custom-accordion .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(205,168,111,.24); }
.custom-accordion .accordion-item { transition: .2s ease; }
.custom-accordion .accordion-item:hover { transform: translateY(-2px); }

.final-cta { padding: 82px 0; background: var(--soft); }
.final-cta-box {
  text-align: center;
  color: var(--white);
  border-radius: 34px;
  padding: clamp(42px, 7vw, 78px);
  background: linear-gradient(135deg, rgba(2,40,60,.96), rgba(6,57,82,.92)), url('assets/img_webp/trabalho-icaro-hora.webp') center/cover no-repeat;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.final-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 16%, rgba(205,168,111,.22), transparent 34%);
  pointer-events: none;
}
.final-cta h2 { max-width: 850px; margin: 0 auto; font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.08; }
.final-cta p { color: rgba(255,255,255,.75); margin: 16px auto 28px; }

.site-footer { background: linear-gradient(180deg, #021827 0%, #01111b 100%); color: rgba(255,255,255,.74); padding: 70px 0 26px; }
.footer-brand img { width: 220px; margin-bottom: 18px; }
.site-footer h3 { color: var(--white); font-size: 1rem; font-weight: 900; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { color: rgba(255,255,255,.76); }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 42px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.contact-float { position: fixed; right: 20px; bottom: 20px; z-index: 1000; display: grid; gap: 10px; }
.contact-float a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.55rem;
  box-shadow: 0 16px 36px rgba(0,0,0,.20);
  transition: .22s ease;
}
.contact-float a:first-child { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.contact-float a:last-child { background: #25d366; }
.contact-float a:hover { transform: translateY(-4px); color: var(--white); }

.floating-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1045;
}

.chat-button {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  box-shadow: 0 16px 36px rgba(2,40,60,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.chat-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(2,40,60,.3);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(92vw, 420px);
  max-height: min(78vh, 620px);
  background: #fff;
  border: 1px solid rgba(2,40,60,.12);
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(2,40,60,.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .2s ease;
}

.floating-chat.chat-open .chat-panel {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.chat-panel-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chat-panel-header strong {
  display: block;
  font-size: .95rem;
}

.chat-panel-header small {
  display: block;
  opacity: .78;
  font-size: .75rem;
}

.chat-close {
  border: 0;
  background: rgba(255,255,255,.16);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.chat-panel-messages {
  height: auto;
  min-height: 300px;
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg, #f9fbfc 0%, #ffffff 100%);
}

.chat-message-bot,
.chat-message-user {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 14px;
  line-height: 1.5;
  font-size: .9rem;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.chat-message-bot {
  align-self: flex-start;
  background: #edf3f7;
  color: var(--navy);
}

.chat-message-bot p {
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.chat-message-bot p:last-child {
  margin-bottom: 0;
}

.chat-message-bot strong {
  font-weight: 700;
  color: var(--navy);
}

.chat-message-bot br {
  display: block;
  height: 0.5em;
}

.chat-whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid #25d366;
}

.chat-whatsapp-btn:hover {
  background: #1da857;
  border-color: #1da857;
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.chat-message-user {
  align-self: flex-end;
  background: var(--navy);
  color: #fff;
}

.chat-panel-form {
  border-top: 1px solid rgba(2,40,60,.08);
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  background: #fff;
}

.chat-panel-form input {
  width: 100%;
  border: 1px solid rgba(2,40,60,.16);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .9rem;
}

.chat-panel-form input:focus {
  outline: 0;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(205,168,111,.2);
}

.chat-panel-form button {
  border: 0;
  border-radius: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  display: grid;
  place-items: center;
}

.chat-panel-form button:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.reveal { opacity: 0; transform: translateY(26px); transition: .75s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

.article-content > :first-child { margin-top: 0; }
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.22;
  margin: 28px 0 14px;
}
.article-content h1 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); }
.article-content h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); }
.article-content h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
.article-content h4 { font-size: 1.3rem; }
.article-content h5 { font-size: 1.14rem; }
.article-content h6 { font-size: 1.02rem; letter-spacing: .02em; text-transform: uppercase; }
.article-content p { margin: 0 0 16px; }
.article-content ul,
.article-content ol { margin: 0 0 18px; padding-left: 1.35rem; }
.article-content li { margin: 0 0 8px; }
.article-content blockquote {
  margin: 20px 0;
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  background: #f9f3e8;
  border-radius: 0 12px 12px 0;
  color: #264253;
}
.article-content a { color: var(--navy-3); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--navy-2); }
.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(2,40,60,.14);
  margin: 18px auto;
}
.article-content figure { margin: 22px 0; text-align: center; }
.article-content figcaption { margin-top: 8px; color: var(--muted); font-size: .92rem; }
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}
.article-content table tbody,
.article-content table thead,
.article-content table tfoot,
.article-content table tr { white-space: normal; }
.article-content th,
.article-content td { border: 1px solid rgba(2,40,60,.18); padding: 10px 12px; vertical-align: top; }
.article-content thead th { background: #f4ead7; color: var(--navy); }
.article-content tfoot td { background: #f8f4ed; font-weight: 700; }

@media (max-width: 1199px) { .timeline { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px) {
  .navbar-collapse { background: rgba(2,40,60,.98); margin-top: 14px; padding: 18px; border-radius: 22px; }
  .brand-logo { width: 160px; }
  .hero-section { min-height: auto; padding: 130px 0 80px; }
  .hero-portrait, .hero-portrait img { min-height: 520px; height: 520px; }
  .intro-panel { margin-top: 0; grid-template-columns: 1fr; }
  .image-stack { min-height: 450px; }
  .image-main { width: 100%; min-height: 440px; height: 440px; }
  .image-mini { width: 42%; height: 160px; }
  .timeline, .feature-list { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .section-padding { padding: 72px 0; }
  h1 { font-size: 2.65rem; }
  .hero-actions .btn { width: 100%; display: inline-flex; justify-content: center; }
  .trust-row { flex-direction: column; gap: 8px; }
  .hero-portrait, .hero-portrait img { min-height: 430px; height: 430px; }
  .trajectory-grid, .audience-grid { grid-template-columns: 1fr; }
  .image-mini { display: none; }
  .footer-bottom { flex-direction: column; }
  .contact-float { right: 14px; bottom: 14px; }
  .contact-float a { width: 50px; height: 50px; }
  .floating-chat { right: 14px; bottom: 14px; }
  .chat-button { width: 52px; height: 52px; }
  .chat-panel {
    width: min(96vw, 390px);
    max-height: calc(100vh - 90px);
    bottom: 64px;
  }
  .chat-panel-messages { min-height: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
