/* Grupo Gálea — component layer (loaded after Bootstrap, before custom overrides) */

/* ---------- Layout ---------- */
.site-main {
  overflow-x: hidden;
}

.content-prose {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.content-prose.wide {
  max-width: 56rem;
}

.section-block {
  padding: var(--space-section, 4rem) 0;
}

.section-block--tight {
  padding: 3rem 0;
}

.section-muted {
  background: var(--surface-muted);
}

.section-dark {
  background: var(--color-ink);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark .lead {
  color: var(--color-white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  min-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
}

.site-top {
  width: 100%;
}

.hero--compact {
  min-height: 42vh;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 26, 46, 0.92) 0%,
    rgba(0, 63, 95, 0.75) 50%,
    rgba(18, 26, 46, 0.88) 100%
  );
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.2rem;
  max-width: 36rem;
  opacity: 0.95;
}

.hero__cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Header inside hero */
.site-top header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}

/* Barra de navegação clara — logo e links em contraste com o hero */
.site-top--bar {
  background: var(--color-white);
  box-shadow:
    0 4px 22px rgba(18, 26, 46, 0.08),
    0 1px 0 rgba(18, 26, 46, 0.06);
  padding: 0.65rem 0;
  width: 100%;
  position: relative;
  z-index: 2;
}

.site-top--bar header {
  padding-top: 0;
}

@media (min-width: 768px) {
  .site-top--bar {
    padding: 0.75rem 0;
  }
}

.site-top--bar .site-brand,
.site-top--bar .menu {
  min-width: 0;
}

.site-top--bar .site-brand img {
  max-width: 165px;
  height: auto;
}

.site-top--bar .menu {
  margin-left: 1.25rem;
  flex-wrap: nowrap;
  flex: 0 1 auto;
  gap: 0.35rem 0.95rem;
}

.site-top--bar .menu a {
  color: var(--color-ink) !important;
  transition: color 0.2s ease;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.35rem 0;
}

.site-top--bar .menu a:hover,
.site-top--bar .menu a:focus-visible {
  color: var(--color-primary) !important;
}

.site-top--bar .menu a[aria-current="page"] {
  color: var(--color-primary) !important;
  font-weight: 700;
}

@media (min-width: 1101px) {
  .site-top--bar header {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  /* Em desktop, esconder hamburger (menu fica inline) */
  .site-top--bar .menu-icon {
    display: none;
  }
}

@media (max-width: 1100px) {
  /* No mobile, respeita layout em grid do menu */
  .site-top--bar header {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .site-top--bar .menu {
    margin-left: 0;
    flex-wrap: wrap;
  }
}

.site-brand img {
  max-width: 220px;
  height: auto;
}

@media (min-width: 768px) {
  .site-brand img {
    max-width: 260px;
  }
}

/* ---------- Typography / prose ---------- */
.prose-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.content-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  font-weight: 700;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-ink);
}

.content-prose h2:first-child {
  margin-top: 0;
}

.content-prose h3 {
  font-family: var(--font-display);
  font-size: 1.25rem !important;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
}

.content-prose p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}

.content-prose > ul:not(.key-points) {
  margin-bottom: 1.25rem;
  padding-left: 1.35rem;
}

.content-prose > ul:not(.key-points) li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.callout {
  border-left: 4px solid var(--color-accent);
  background: var(--surface-muted);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-ink);
}

.pull-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-primary);
  border: none;
  padding: 1.5rem 0;
  margin: 1.5rem 0;
  position: relative;
}

.pull-quote::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--color-accent);
  margin-bottom: 1rem;
}

/* Key points list */
.key-points {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 2rem;
}

.key-points li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(0, 63, 95, 0.08);
}

.key-points li:last-child {
  border-bottom: none;
}

.key-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 2px;
  background: var(--color-accent);
}

.toc {
  background: var(--surface-muted);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.toc strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
}

.toc ul {
  margin: 0;
  padding-left: 1.1rem;
}

.toc a {
  color: var(--color-primary);
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem) !important;
  color: var(--color-ink);
}

.section-sub {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* ---------- Cards (home) ---------- */
.pillar-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 63, 95, 0.12);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pillar-card:hover {
  box-shadow: 0 12px 40px rgba(18, 26, 46, 0.12);
  transform: translateY(-4px);
}

.pillar-card__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.pillar-card__photo {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 1rem;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem !important;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--color-ink);
}

.pillar-card p {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.service-card {
  display: block;
  text-decoration: none !important;
  color: inherit;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 63, 95, 0.1);
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 16px 48px rgba(18, 26, 46, 0.14);
  transform: translateY(-6px);
}

.service-card__media {
  background: var(--surface-muted);
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem !important;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
}

.service-card__tagline {
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card__body p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.service-card__link {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.service-card:hover .service-card__link {
  text-decoration: underline;
}

/* Proof strip */
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  text-align: center;
}

.proof-strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.2;
}

.proof-strip__item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 14rem;
  display: inline-block;
}

/* Feature bands (home alternating) */
.feature-band {
  padding: 4rem 0;
}

.feature-band--a {
  background: linear-gradient(168deg, #ffffff 58%, #003f5f 0);
}

.feature-band--b {
  background: linear-gradient(
    168deg,
    #f4f6f8 55%,
    #ffffff 55%
  );
}

.feature-band--c {
  background: linear-gradient(168deg, #ffffff 55%, #e8ecf0 0);
}

.feature-band .row {
  align-items: center;
}

.manifesto {
  padding: 4rem 0;
}

.manifesto__inner {
  max-width: 40rem;
}

.manifesto h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
  margin-bottom: 1rem;
}

/* ---------- Contact ---------- */
.contact-panel {
  position: relative;
  z-index: 1;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 576px) {
  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.contact-note {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 1rem;
}

.contact-note a {
  color: #fff;
  text-decoration: underline;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 28px;
  right: 28px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.wa-float .fa {
  margin: 0;
}

/* ---------- Copy system (eyebrow, hero split) ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.65rem;
  display: block;
}

.section-muted .eyebrow,
.section-block:not(.section-dark) .eyebrow {
  color: var(--color-secondary-muted, #6b7c8a);
}

.section-heading--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.section-sub--left {
  text-align: left;
  margin-left: 0;
  max-width: 40rem;
}

.hero__pretitle-margin {
  margin-top: 0.5rem;
}

.hero__title--split {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.manifesto-quote {
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.25rem;
  margin: 2rem 0 0;
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 10px 10px 0;
}

.pillar-card--left {
  text-align: left;
}

.pillar-card--left h3,
.pillar-card--left .pillar-card__hook {
  text-align: left !important;
}

.pillar-card__hook {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.pillar-card--left p {
  text-align: left;
}

.service-detail {
  background: var(--color-white);
  border: 1px solid rgba(0, 63, 95, 0.1);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-detail__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-detail__body .key-points {
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-detail__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.audience-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 63, 95, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem !important;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
}

.audience-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.team-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  max-width: 36rem;
}

.team-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.35rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.cta-final {
  padding: var(--space-section) 0;
  text-align: center;
  background: linear-gradient(160deg, #003f5f 0%, #121a2e 100%);
  color: #fff;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem) !important;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.cta-final .cta-final__sub {
  opacity: 0.92;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}

.cta-final .micro {
  font-size: 0.9rem;
  opacity: 0.85;
  font-style: italic;
  margin-top: 1.25rem;
}

/* ---------- Footer bar ---------- */
.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.88);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer--grid {
  text-align: left;
  padding: 3rem 1rem 2rem;
}

.site-footer--grid h3 {
  font-family: var(--font-display);
  font-size: 0.95rem !important;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.site-footer--grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer--grid li {
  margin-bottom: 0.45rem;
}

.site-footer--grid a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer--grid a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer--grid .footer-brand-tagline {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.5rem;
}

.site-footer--grid .footer-contact strong {
  color: #fff;
}

.footer-legal {
  text-align: center;
  padding: 1.25rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.hero__cred-line {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  opacity: 0.8;
  letter-spacing: 0.02em;
}
