/* ============================================
   INVIUS - Global Styles
   Paleta: Azul Petróleo + Dourado
   Tipografia: Cinzel + Lato + Playfair Display
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Cores Primárias */
  --dourado: #ba974d;
  --azul-petroleo: #111922;

  /* Cores Secundárias */
  --champagne: #d8ba82;
  --ouro-antigo: #a68142;
  --cinza-grafite: #1e2833;
  --azul-noite: #2c3641;

  /* Cores de Apoio */
  --branco: #ffffff;
  --bege-champagne: #f1e1ba;

  /* Tipografia */
  --font-titulo: 'Cinzel', serif;
  --font-corpo: 'Lato', sans-serif;
  --font-destaque: 'Playfair Display', serif;

  /* Espaçamento */
  --section-padding: 120px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-corpo);
  background-color: var(--azul-petroleo);
  color: var(--branco);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Tipografia --- */
h1, h2, h3, h4 {
  font-family: var(--font-titulo);
  color: var(--dourado);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 3.2rem;
  letter-spacing: 2px;
}

h2 {
  font-size: 2.4rem;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

h4 {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

p {
  color: var(--champagne);
  font-size: 1.05rem;
  line-height: 1.8;
}

.text-destaque {
  font-family: var(--font-destaque);
  font-style: italic;
  color: var(--dourado);
  font-size: 1.4rem;
  line-height: 1.6;
}

/* --- Seção genérica --- */
.section {
  padding: var(--section-padding);
}

.section--dark {
  background-color: var(--azul-petroleo);
}

.section--darker {
  background-color: var(--cinza-grafite);
}

.section--light {
  background-color: var(--branco);
}

.section--light-warm {
  background-color: #f9f5ee;
}

/* Textos em seções claras */
.section--light h2,
.section--light-warm h2 {
  color: var(--azul-petroleo);
}

.section--light h3,
.section--light-warm h3,
.section--light h4,
.section--light-warm h4 {
  color: var(--azul-petroleo);
}

.section--light p,
.section--light-warm p {
  color: var(--azul-noite);
}

.section--light .section-label,
.section--light-warm .section-label {
  color: var(--ouro-antigo);
}

.section-label {
  font-family: var(--font-corpo);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ouro-antigo);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 24px;
}

.section-subtitle {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

/* --- Botões --- */
.btn {
  display: inline-block;
  font-family: var(--font-corpo);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn--primary {
  background: transparent;
  color: var(--dourado);
  border: 1.5px solid var(--dourado);
}

.btn--primary:hover {
  background: var(--dourado);
  color: var(--azul-petroleo);
}

/* Botão no hero com mais destaque */
.hero .btn--primary {
  color: #ffffff;
  border-color: #ffffff;
  border-width: 2px;
}

.hero .btn--primary:hover {
  background: #ffffff;
  color: var(--azul-petroleo);
}

.btn--solid {
  background: var(--dourado);
  color: var(--azul-petroleo);
  border: 1.5px solid var(--dourado);
}

.btn--solid:hover {
  background: var(--ouro-antigo);
  border-color: var(--ouro-antigo);
}

/* Botões em seção clara */
.section--light .btn--primary,
.section--light-warm .btn--primary {
  color: var(--ouro-antigo);
  border-color: var(--ouro-antigo);
}

.section--light .btn--primary:hover,
.section--light-warm .btn--primary:hover {
  background: var(--azul-petroleo);
  color: var(--champagne);
  border-color: var(--azul-petroleo);
}

/* ============================================
   HEADER / NAVEGAÇÃO
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s ease;
}

.header--scrolled {
  background: rgba(17, 25, 34, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 120px;
  width: auto;
}

.header--scrolled .header__logo img {
  height: 80px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav a {
  font-family: var(--font-corpo);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--champagne);
  position: relative;
  transition: color 0.3s ease;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dourado);
  transition: width 0.3s ease;
}

.header__nav a:hover {
  color: var(--dourado);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__cta .btn {
  padding: 10px 28px;
  font-size: 0.8rem;
}

.btn--outline {
  background: transparent;
  color: var(--champagne);
  border: 1.5px solid rgba(186, 151, 77, 0.4);
}

.btn--outline:hover {
  border-color: var(--dourado);
  color: var(--dourado);
}

/* Menu Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--champagne);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at bottom right, rgba(17, 25, 34, 0.95) 0%, transparent 40%),
    linear-gradient(
      180deg,
      rgba(17, 25, 34, 0.85) 0%,
      rgba(17, 25, 34, 0.60) 50%,
      rgba(17, 25, 34, 0.92) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero__title {
  color: #e2c170;
  margin-bottom: 24px;
  font-size: 3.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.hero__line {
  width: 60px;
  height: 1px;
  background: var(--dourado);
  margin: 0 auto 48px;
}

/* ============================================
   SOLUÇÕES
   ============================================ */
.solucoes__categoria {
  margin-bottom: 80px;
}

.solucoes__categoria:last-child {
  margin-bottom: 0;
}

.solucoes__categoria-titulo {
  font-family: var(--font-corpo);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ouro-antigo);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(186, 151, 77, 0.15);
}

.solucoes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Grid de 5 cards: primeiros 2 centralizados, depois 3 */
.solucoes__grid--five {
  grid-template-columns: repeat(6, 1fr);
}

.solucoes__grid--five .card:nth-child(1) {
  grid-column: 1 / 4;
}

.solucoes__grid--five .card:nth-child(2) {
  grid-column: 4 / 7;
}

.solucoes__grid--five .card:nth-child(3) {
  grid-column: 1 / 3;
}

.solucoes__grid--five .card:nth-child(4) {
  grid-column: 3 / 5;
}

.solucoes__grid--five .card:nth-child(5) {
  grid-column: 5 / 7;
}

.solucoes__grid--single {
  grid-template-columns: 1fr;
  max-width: 100%;
}

/* Card destaque (Gestão de Investimentos) */
.card--featured {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 56px 48px;
}

.card--featured .card__icon {
  min-width: 48px;
  margin-bottom: 0;
}

.card--featured .card__body {
  flex: 1;
}

.card--featured .card__title {
  font-size: 1.4rem;
}

.card--featured .card__text {
  max-width: 640px;
}

/* --- Card de Serviço --- */
.card {
  background: rgba(30, 40, 51, 0.5);
  border: 1px solid rgba(186, 151, 77, 0.1);
  padding: 48px 36px;
  transition: all 0.4s ease;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  background: rgba(30, 40, 51, 0.8);
  border-color: rgba(186, 151, 77, 0.25);
  transform: translateY(-4px);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--dourado);
  line-height: 1;
}

.card__title {
  font-family: var(--font-titulo);
  font-size: 1.25rem;
  color: var(--dourado);
  margin-bottom: 16px;
  font-weight: 700;
}

.card__text {
  color: var(--champagne);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.85;
}

.card__link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dourado);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.card__link:hover {
  gap: 14px;
}

.card__link svg {
  width: 16px;
  height: 16px;
  stroke: var(--dourado);
}

/* Cards em seção clara */
.section--light .card,
.section--light-warm .card {
  background: var(--branco);
  border: 1px solid rgba(17, 25, 34, 0.08);
  box-shadow: 0 4px 24px rgba(17, 25, 34, 0.06);
}

.section--light .card:hover,
.section--light-warm .card:hover {
  background: var(--branco);
  border-color: rgba(186, 151, 77, 0.3);
  box-shadow: 0 8px 40px rgba(17, 25, 34, 0.1);
}

.section--light .card__title,
.section--light-warm .card__title {
  color: var(--azul-petroleo);
}

.section--light .card__text,
.section--light-warm .card__text {
  color: var(--azul-noite);
  opacity: 0.9;
}

.section--light .card__icon,
.section--light-warm .card__icon {
  color: var(--ouro-antigo);
}

.section--light .card__link,
.section--light-warm .card__link {
  color: var(--ouro-antigo);
}

.section--light .card__link svg,
.section--light-warm .card__link svg {
  stroke: var(--ouro-antigo);
}

.section--light .solucoes__categoria-titulo,
.section--light-warm .solucoes__categoria-titulo {
  color: var(--ouro-antigo);
  border-bottom-color: rgba(166, 129, 66, 0.2);
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.diferencial {
  text-align: center;
  padding: 32px 16px;
}

.diferencial__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--dourado);
}

.diferencial__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--dourado);
  fill: none;
  stroke-width: 1.5;
}

.diferencial__titulo {
  font-family: var(--font-titulo);
  font-size: 1.1rem;
  color: var(--dourado);
  margin-bottom: 12px;
  font-weight: 700;
}

.diferencial__texto {
  font-size: 0.9rem;
  color: var(--champagne);
  opacity: 0.8;
  line-height: 1.7;
}

/* ============================================
   SOBRE (Resumo na Home)
   ============================================ */
.sobre-home {
  position: relative;
}

.sobre-home__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-home__wrapper--centered {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.sobre-home__wrapper--centered .sobre-home__content {
  padding-right: 0;
}

.sobre-home__wrapper--centered .sobre-home__quote {
  border-left: none;
  padding-left: 0;
  border-top: 1px solid var(--ouro-antigo);
  padding-top: 32px;
  margin-top: 32px;
}

.sobre-home__content {
  padding-right: 40px;
}

.sobre-home__text {
  margin-bottom: 32px;
}

.sobre-home__quote {
  font-family: var(--font-destaque);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ouro-antigo);
  line-height: 1.6;
  padding-left: 24px;
  border-left: 2px solid var(--ouro-antigo);
  margin-top: 40px;
}

/* Sobre em seção clara */
.section--light-warm .sobre-home__text {
  color: var(--azul-noite);
}

.section--light-warm .section-title {
  color: var(--azul-petroleo);
}

.sobre-home__image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

/* Métricas */
.sobre-home__metricas {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 64px;
}

.metrica {
  text-align: center;
}

.metrica__numero {
  display: block;
  font-family: var(--font-titulo);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ouro-antigo);
  line-height: 1.2;
  margin-bottom: 8px;
}

.metrica__label {
  display: block;
  font-family: var(--font-corpo);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--azul-noite);
  opacity: 0.7;
}

.sobre-home__cta {
  text-align: center;
  margin-top: 48px;
}

.sobre-home__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.sobre-home__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(186, 151, 77, 0.2);
  pointer-events: none;
}

/* ============================================
   NA MÍDIA
   ============================================ */
.midia__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.midia__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.midia__item:hover {
  opacity: 1;
}

.midia__item img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--cinza-grafite) 0%,
    var(--azul-petroleo) 100%
  );
}

.cta-final__title {
  margin-bottom: 24px;
}

.cta-final__subtitle {
  max-width: 560px;
  margin: 0 auto 48px;
}

.cta-final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* ============================================
   FORMULÁRIO
   ============================================ */
.form {
  max-width: 560px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ouro-antigo);
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(30, 40, 51, 0.6);
  border: 1px solid rgba(186, 151, 77, 0.2);
  color: var(--branco);
  font-family: var(--font-corpo);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--dourado);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--azul-petroleo);
  border-top: 1px solid rgba(186, 151, 77, 0.1);
  padding: 60px 0 32px;
}

.footer__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer__logo img {
  height: 52px;
  margin-bottom: 16px;
}

.footer__descricao {
  font-size: 0.85rem;
  color: var(--champagne);
  opacity: 0.6;
  max-width: 280px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 64px;
}

.footer__col-titulo {
  font-family: var(--font-corpo);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ouro-antigo);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: var(--champagne);
  opacity: 0.7;
  margin-bottom: 10px;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer__col a:hover {
  opacity: 1;
  color: var(--dourado);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(186, 151, 77, 0.08);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--champagne);
  opacity: 0.4;
}

.footer__socials {
  display: flex;
  gap: 20px;
}

.footer__socials a {
  color: var(--champagne);
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer__socials a:hover {
  opacity: 1;
  color: var(--dourado);
}

.footer__socials svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   HERO INTERNA
   ============================================ */
.hero--interna {
  min-height: 70vh;
  padding-top: 120px;
}

/* ============================================
   CONTENT BLOCK (Problema / Cenário)
   ============================================ */
.content-block--centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.content-block__text {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-top: 24px;
}

/* ============================================
   PROCESSO (Etapas)
   ============================================ */
.processo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.processo__etapa {
  padding: 40px;
  border: 1px solid rgba(186, 151, 77, 0.1);
  position: relative;
}

.processo__numero {
  font-family: var(--font-titulo);
  font-size: 3rem;
  font-weight: 700;
  color: var(--dourado);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.processo__titulo {
  font-family: var(--font-titulo);
  font-size: 1.2rem;
  color: var(--dourado);
  font-weight: 700;
  margin-bottom: 16px;
}

.processo__texto {
  font-size: 0.95rem;
  color: var(--champagne);
  line-height: 1.8;
  opacity: 0.85;
}

/* ============================================
   FRENTES DE ATUAÇÃO
   ============================================ */
.frentes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.frente {
  padding: 48px 40px;
  background: var(--branco);
  border: 1px solid rgba(17, 25, 34, 0.06);
  box-shadow: 0 4px 24px rgba(17, 25, 34, 0.05);
  text-align: center;
}

.frente__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--ouro-antigo);
}

.frente__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--ouro-antigo);
  fill: none;
  stroke-width: 1.5;
}

.frente__titulo {
  font-family: var(--font-titulo);
  font-size: 1.3rem;
  color: var(--azul-petroleo);
  font-weight: 700;
  margin-bottom: 16px;
}

.frente__texto {
  font-size: 1rem;
  color: var(--azul-noite);
  line-height: 1.8;
  opacity: 0.85;
}

/* ============================================
   DIFERENCIAIS LISTA (Página interna)
   ============================================ */
.diferenciais-lista {
  max-width: 760px;
  margin: 0 auto;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(17, 25, 34, 0.08);
}

.diferencial-item:last-child {
  border-bottom: none;
}

.diferencial-item__icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
  color: var(--ouro-antigo);
}

.diferencial-item__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--ouro-antigo);
  fill: none;
  stroke-width: 1.5;
}

.diferencial-item__titulo {
  font-family: var(--font-titulo);
  font-size: 1.05rem;
  color: var(--azul-petroleo);
  font-weight: 700;
  margin-bottom: 8px;
}

.diferencial-item__texto {
  font-size: 0.95rem;
  color: var(--azul-noite);
  line-height: 1.7;
  opacity: 0.8;
}

/* ============================================
   PÁGINAS LEGAIS
   ============================================ */
.legal__content {
  max-width: 780px;
  margin: 0 auto;
}

.legal__title {
  font-family: var(--font-titulo);
  font-size: 2.4rem;
  color: var(--dourado);
  margin-bottom: 48px;
}

.legal__content h2 {
  font-size: 1.2rem;
  color: var(--champagne);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal__content p {
  margin-bottom: 16px;
}

.legal__content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal__content li {
  color: var(--champagne);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

.legal__content li::marker {
  color: var(--ouro-antigo);
}

.legal__content strong {
  color: var(--branco);
}

.legal__update {
  margin-top: 48px;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ============================================
   FUNDADORES
   ============================================ */
.fundadores__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}

.fundador {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fundador__foto {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 32px;
  border: 3px solid rgba(166, 129, 66, 0.3);
}

.fundador__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fundador__nome {
  font-family: var(--font-titulo);
  font-size: 1.4rem;
  color: var(--azul-petroleo);
  font-weight: 700;
  margin-bottom: 4px;
}

.fundador__cargo {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ouro-antigo);
  margin-bottom: 20px;
}

.fundador__bio {
  font-size: 0.95rem;
  color: var(--azul-noite);
  line-height: 1.8;
  opacity: 0.85;
  max-width: 480px;
  margin-bottom: 20px;
}

.fundador__credenciais {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.credencial {
  font-family: var(--font-corpo);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ouro-antigo);
  border: 1px solid rgba(166, 129, 66, 0.3);
  padding: 6px 16px;
  border-radius: 2px;
}

.fundador__formacao {
  font-size: 0.85rem;
  color: var(--azul-noite);
  opacity: 0.6;
  line-height: 1.6;
}

/* Métricas em seção escura */
.metrica__label--dark {
  color: var(--champagne);
  opacity: 0.6;
}

/* ============================================
   CONTATO
   ============================================ */
.contato__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contato__title {
  font-family: var(--font-titulo);
  font-size: 2.4rem;
  color: var(--dourado);
  margin-bottom: 24px;
}

.contato__text {
  font-size: 1.05rem;
  color: var(--champagne);
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0.85;
}

.contato__canais {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contato__canal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contato__canal-icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(186, 151, 77, 0.2);
  border-radius: 50%;
  color: var(--dourado);
}

.contato__canal-icon svg {
  width: 22px;
  height: 22px;
}

.contato__canal-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ouro-antigo);
  margin-bottom: 4px;
}

.contato__canal-link {
  font-size: 1rem;
  color: var(--champagne);
  transition: color 0.3s ease;
}

a.contato__canal-link:hover {
  color: var(--dourado);
}

.contato__form-wrapper {
  background: rgba(30, 40, 51, 0.4);
  border: 1px solid rgba(186, 151, 77, 0.1);
  padding: 48px 40px;
}

.contato__form-wrapper .form {
  max-width: 100%;
}

/* ============================================
   ANIMAÇÕES DE ENTRADA
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Atrasos escalonados para grids */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* --- Linha decorativa --- */
.line-divider {
  width: 60px;
  height: 1px;
  background: var(--dourado);
  margin: 0 auto;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--azul-petroleo);
  border-top: 1px solid rgba(186, 151, 77, 0.15);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--champagne);
  opacity: 0.85;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--dourado);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  opacity: 0.8;
}

.cookie-banner__btn {
  font-family: var(--font-corpo);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--dourado);
  color: var(--azul-petroleo);
  border: none;
  padding: 12px 32px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.cookie-banner__btn:hover {
  background: var(--champagne);
}
