/* =============================================
   GOMES & BORNIA — SITE INSTITUCIONAL
   style.css — v2.0
   Identidade: azul-petróleo profundo, preto, branco
   Premium · Dinâmico · Humanizado
============================================= */

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

:root {
  --preto-profundo:        #010103;
  --azul-preto:            #010305;
  --azul-petroleo-escuro:  #033F4A;
  --azul-petroleo-medio:   #094B57;
  --cinza-azulado:         #828484;
  --branco:                #FFFFFF;

  /* Aliases internos */
  --azul:        var(--azul-preto);
  --azul-medio:  var(--azul-petroleo-escuro);
  --azul-claro:  var(--azul-petroleo-medio);
  --chumbo:      var(--preto-profundo);
  --cinza:       #5A6272;
  --cinza-light: var(--cinza-azulado);
  --offwhite:    #F4F4F2;
  --borda:       rgba(255,255,255,0.08);
  --borda-dark:  rgba(3,63,74,0.12);

  --vinho:       #8B1E2D;
  --vinho-hover: #A32638;

  --font-sans:  'Poppins', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  --section-py: 72px;
  --container:  1180px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --t-fast:     0.22s;
  --t-med:      0.45s;
  --t-slow:     0.7s;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--chumbo);
  background: var(--branco);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px;
}

/* =============================================
   UTILITÁRIOS
============================================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--azul-claro);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.section-label--light { color: rgba(255,255,255,0.45); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 600;
  color: var(--azul);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--azul-claro); }
.section-title--light { color: var(--branco); }
.section-title--light em { color: rgba(255,255,255,0.6); }

.section-divider {
  width: 40px; height: 2px;
  background: var(--azul-claro);
  margin-bottom: 28px;
  border-radius: 2px;
}
.section-divider--light  { background: rgba(255,255,255,0.25); }
.section-divider--accent { background: var(--vinho); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-divider { margin: 0 auto 28px; }

.section-subtitle {
  font-size: 1rem;
  color: var(--cinza);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}
.section-subtitle--light { color: rgba(255,255,255,0.55); }

/* =============================================
   BOTÕES
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 1px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--t-fast) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--azul-claro);
  color: var(--branco);
  border-color: var(--azul-claro);
}
.btn--primary:hover {
  background: var(--azul-medio);
  border-color: var(--azul-medio);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(3,63,74,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--vinho);
  color: var(--branco);
  border-color: var(--vinho);
}
.btn--accent:hover {
  background: var(--vinho-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139,30,45,0.4);
}
.btn--full { width: 100%; justify-content: center; }

/* =============================================
   NAVEGAÇÃO
============================================= */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), padding var(--t-med) var(--ease);
}
.nav-header.scrolled {
  background: rgba(1,3,5,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--t-med) var(--ease);
}
.nav-header.scrolled .nav-container { height: 68px; }

.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 42px;
  width: auto;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.logo-img:hover { opacity: 0.8; transform: scale(0.98); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 10px;
  border-radius: 1px;
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--azul-claro);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast) var(--ease);
}
.nav-link:hover { color: var(--branco); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--branco); }

.nav-link--partnership {
  color: #c0636e !important;
  font-weight: 600;
}
.nav-link--partnership::after { background: var(--vinho) !important; }
.nav-link--partnership:hover { color: #d87884 !important; }

.nav-link--medico {
  color: #2e9e62 !important;
  font-weight: 600;
}
.nav-link--medico::after { background: #2e9e62 !important; }
.nav-link--medico:hover { color: #3dbc77 !important; }

.nav-link--formatura {
  color: #e8d44d !important;
  font-weight: 600;
}
.nav-link--formatura::after { background: #e8d44d !important; }
.nav-link--formatura:hover { color: #f0e060 !important; }

/* BNI logo no nav — colado no canto direito */
.nav-bni {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.9;
  transition: opacity var(--t-fast);
  padding: 0;
}
.nav-bni:hover { opacity: 1; }
.nav-bni__img {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .nav-bni { margin-left: auto; margin-right: 52px; }
  .nav-bni__img { height: 32px; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--branco);
  border-radius: 2px;
  transition: all var(--t-fast) var(--ease);
  transform-origin: center;
}
.nav-toggle.open .hamburger:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open .hamburger:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .hamburger:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px; /* compensa a nav fixed */
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-color: var(--azul);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(1,1,3,0.93) 0%,
    rgba(3,63,74,0.72) 50%,
    rgba(1,3,5,0.90) 100%
  );
  z-index: 1;
}

/* Linha decorativa lateral */
.hero::before {
  content: '';
  position: absolute;
  left: 48px;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero__logo-wrap {
  margin-bottom: 28px;
  animation: fadeDown 1s var(--ease) both;
}
.hero__logo {
  height: 64px;
  width: auto;
  margin: 0 auto;
}
.hero__logo--grande {
  height: 150px;
}

.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  animation: fadeUp 1s 0.15s var(--ease) both;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 600;
  color: var(--branco);
  line-height: 1.12;
  margin-bottom: 28px;
  animation: fadeUp 1s 0.28s var(--ease) both;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.68);
}

.hero__subtitle {
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 48px;
  animation: fadeUp 1s 0.4s var(--ease) both;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.52s var(--ease) both;
  margin-bottom: 48px;
}

/* Barra de stats no hero */
.hero__stats {
  display: flex;
  gap: 0;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
  animation: fadeUp 1s 0.64s var(--ease) both;
}

.hero__stat {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--branco);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-indicator span {
  display: block;
  width: 20px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
  animation: scrollDown 1.8s infinite var(--ease);
}

/* Ticker / marquee decorativo */
.hero__ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 44px;
  background: rgba(9,75,87,0.35);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hero__ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.hero__ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero__ticker-item::after {
  content: '·';
  color: rgba(255,255,255,0.15);
  font-size: 1rem;
}

/* =============================================
   SOBRE
============================================= */
.sobre {
  padding: 48px 0 var(--section-py);
  background: var(--branco);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}

.sobre__visual { position: relative; }

.sobre__img-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.sobre__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  background: var(--azul);
  transition: transform 0.8s var(--ease);
}
.sobre__img-wrap:hover .sobre__img { transform: scale(1.03); }

/* Moldura decorativa */
.sobre__frame {
  position: absolute;
  top: -16px; right: -16px;
  bottom: 16px; left: 16px;
  border: 1px solid rgba(9,75,87,0.2);
  pointer-events: none;
  z-index: -1;
}

.sobre__badge {
  position: absolute;
  bottom: -24px;
  left: 32px;
  background: var(--azul-petroleo-escuro);
  color: var(--branco);
  padding: 22px 28px;
  box-shadow: 0 20px 50px rgba(3,63,74,0.4);
  z-index: 1;
}
.sobre__badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.9);
}
.sobre__badge-text {
  font-size: 0.68rem;
  text-align: center;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
  letter-spacing: 0.06em;
}

.sobre__text { padding-top: 20px; }

.sobre__p {
  font-size: 0.97rem;
  color: var(--cinza);
  line-height: 1.9;
  margin-bottom: 18px;
}

.sobre__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--borda-dark);
}
.sobre__value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--azul);
  padding: 10px 14px;
  border-radius: 1px;
  transition: background var(--t-fast);
}
.sobre__value:hover { background: rgba(9,75,87,0.05); }
.sobre__value-icon { font-size: 0.9rem; color: var(--azul-claro); flex-shrink: 0; }

/* Contadores animados — Sobre */
.sobre__counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(9,75,87,0.12);
}
.sobre__counter {
  padding: 20px 18px;
  text-align: center;
  border-right: 1px solid rgba(9,75,87,0.12);
  transition: background var(--t-fast);
}
.sobre__counter:last-child { border-right: none; }
.sobre__counter:hover { background: rgba(9,75,87,0.04); }

.sobre__counter-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--azul-petroleo-medio);
  line-height: 1;
  margin-bottom: 6px;
}
.sobre__counter-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cinza-light);
}

/* =============================================
   SOLUÇÕES
============================================= */
.solucoes {
  padding: var(--section-py) 0;
  background: var(--chumbo);
  position: relative;
  overflow: hidden;
}

.solucoes__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 85%, rgba(9,75,87,0.16) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 15%, rgba(3,63,74,0.10) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid assimétrico: destaque + normais */
.solucoes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
}

.card {
  background: var(--chumbo);
  padding: 36px 32px;
  transition: background var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--azul-claro);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.card:hover { background: rgba(9,75,87,0.12); }
.card:hover::after { transform: scaleX(1); }

.card--featured {
  background: rgba(9,75,87,0.14);
}
.card--featured::after { background: var(--azul-claro); }
.card--featured:hover { background: rgba(9,75,87,0.28); }

.card--partnership {
  background: rgba(139,30,45,0.12);
}
.card--partnership::after { background: var(--vinho); }
.card--partnership:hover { background: rgba(139,30,45,0.22); }
.card--partnership .card__icon  { color: #c0636e; }
.card--partnership .card__link  { color: #c0636e; }

/* Card Formatura Blindada — amarelo pastel */
.card--formatura {
  background: rgba(232,212,77,0.08);
}
.card--formatura::after { background: #e8d44d; }
.card--formatura:hover { background: rgba(232,212,77,0.16); }
.card--formatura .card__icon { color: #e8d44d; }
.card__title--formatura { color: #e8d44d !important; }
.card__link--formatura { color: #e8d44d !important; }
.card__link--formatura:hover { color: #f0e060 !important; }

/* Card Direito Médico — verde */
.card--medico {
  background: rgba(30,90,60,0.1);
}
.card--medico::after { background: #2e9e62; }
.card--medico:hover { background: rgba(30,90,60,0.2); }
.card--medico .card__icon { color: #3dbc77; }
.card__title--medico { color: #3dbc77 !important; }
.card__link--medico { color: #3dbc77 !important; }

/* Partnership Teaser — banner slim */
.partnership-teaser {
  background: linear-gradient(100deg, var(--azul-petroleo-escuro) 0%, var(--azul-preto) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.partnership-teaser::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(139,30,45,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.partnership-teaser__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.partnership-teaser__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--branco);
  line-height: 1.25;
  margin-bottom: 10px;
}
.partnership-teaser__title em { color: #c0636e; font-style: normal; }
.partnership-teaser__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
}
.partnership-teaser .btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 768px) {
  .partnership-teaser__inner { flex-direction: column; align-items: flex-start; }
  .partnership-teaser .btn { align-self: flex-start; }
}
.card--partnership .card__link:hover { color: #d87884; }

.card__icon {
  width: 36px; height: 36px;
  color: var(--azul-claro);
  margin-bottom: 22px;
  opacity: 0.8;
}
.card__icon svg { width: 100%; height: 100%; }

.card__title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card__text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}

.card__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t-fast), gap var(--t-fast);
}
.card:hover .card__link { color: rgba(255,255,255,0.75); }
.card:hover .card__link { gap: 12px; }

/* =============================================
   EQUIPE
============================================= */
.equipe {
  padding: var(--section-py) 0;
  background: var(--offwhite);
}

.equipe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.equipe__card {
  background: var(--branco);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.equipe__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(3,63,74,0.14);
}

/* Borda de destaque esquerda */
.equipe__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--azul-claro);
  transition: height var(--t-slow) var(--ease);
  z-index: 2;
}
.equipe__card:hover::before { height: 100%; }

.equipe__photo-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.equipe__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease);
  background: var(--azul);
  display: block;
}
.equipe__card:hover .equipe__photo { transform: scale(1.05); }

.equipe__photo-deco {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,63,74,0.6) 0%, transparent 55%);
}

.equipe__info { padding: 32px; }

.equipe__oab {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azul-claro);
  margin-bottom: 10px;
}

.equipe__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--azul);
  line-height: 1.2;
  margin-bottom: 6px;
}

.equipe__role {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cinza-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.equipe__qual {
  font-size: 0.82rem;
  color: var(--cinza-light);
  font-style: italic;
  margin-bottom: 18px;
}

.equipe__bio {
  font-size: 0.88rem;
  color: var(--cinza);
  line-height: 1.78;
  border-top: 1px solid rgba(9,75,87,0.1);
  padding-top: 18px;
  margin-bottom: 22px;
}

.equipe__bio--frase {
  border-top: none;
  padding-top: 0;
  margin-top: -10px;
  color: var(--azul-petroleo);
  font-size: 0.83rem;
  opacity: 0.85;
}

.equipe__links { display: flex; gap: 12px; flex-wrap: wrap; }
.equipe__social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--azul-claro);
  transition: color var(--t-fast), gap var(--t-fast);
}
.equipe__social svg { width: 14px; height: 14px; }
.equipe__social:hover { color: var(--azul-medio); gap: 10px; }

/* =============================================
   PARTNERSHIP
============================================= */
.partnership {
  padding: var(--section-py) 0;
  background: var(--chumbo);
  position: relative;
  overflow: hidden;
}

.partnership__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 5% 50%, rgba(139,30,45,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 95% 50%, rgba(9,75,87,0.10) 0%, transparent 55%);
  pointer-events: none;
}

/* Linha vertical decorativa */
.partnership::before {
  content: '';
  position: absolute;
  right: 80px; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.05), transparent);
}

.partnership__header { text-align: center; margin-bottom: 72px; }
.partnership__header .section-label { justify-content: center; }
.partnership__header .section-label::before { display: none; }
.partnership__header .section-divider { margin: 0 auto 24px; }

.partnership__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.partnership__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 88px;
}

.partnership__text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 20px;
}
.partnership__text-block .btn { margin-top: 20px; }

.partnership__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.04);
}
.pillar {
  padding: 20px 18px;
  background: var(--chumbo);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background var(--t-fast);
}
.pillar:hover { background: rgba(9,75,87,0.1); }

.pillar__icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  color: rgba(139,30,45,0.7);
}
.pillar__icon svg { width: 100%; height: 100%; }

.pillar h4 {
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
  margin-top: 2px;
}

/* Vídeo */
.partnership__video-wrap {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 72px;
}
.partnership__video-header {
  text-align: center;
  margin-bottom: 40px;
}
.partnership__video-header h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--branco);
  margin-bottom: 14px;
}
.partnership__video-header p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.video-container {
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.partnership__video { width: 100%; display: block; background: #000; }

.video-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder__inner { text-align: center; }
.video-play-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(139,30,45,0.2);
  border: 1.5px solid rgba(139,30,45,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: rgba(139,30,45,0.65);
  transition: all var(--t-fast);
}
.video-placeholder:hover .video-play-icon {
  background: rgba(139,30,45,0.3);
  border-color: rgba(139,30,45,0.5);
  transform: scale(1.08);
}
.video-play-icon svg { width: 22px; height: 22px; padding-left: 3px; }
.video-placeholder__text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

/* =============================================
   CONTEÚDO — BLOCOS, VÍDEOS, ARTIGOS
============================================= */
.conteudo {
  padding: var(--section-py) 0;
  background: var(--branco);
}

/* ---- sub-bloco (Vídeos / Artigos) ---- */
.conteudo__bloco {
  margin-top: 64px;
}
.conteudo__bloco-titulo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azul-petroleo-medio);
  border-bottom: 1px solid rgba(9,75,87,0.12);
  padding-bottom: 14px;
  margin-bottom: 36px;
}
.conteudo__bloco-titulo svg { opacity: 0.7; flex-shrink: 0; }

/* ---- VÍDEOS ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card {
  border-radius: 6px;
  overflow: hidden;
  background: var(--branco);
  border: 1px solid rgba(9,75,87,0.1);
  transition: box-shadow var(--t-med), transform var(--t-med);
}
.video-card:hover {
  box-shadow: 0 12px 40px rgba(3,63,74,0.14);
  transform: translateY(-4px);
}

.video-card__player {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--azul-preto);
}
.video-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card__placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--azul-petroleo-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.video-card__placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1,3,5,0.42);
}
.video-card__play {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform var(--t-fast), background var(--t-fast);
}
.video-card__play svg { width: 18px; height: 18px; color: var(--azul-petroleo-escuro); margin-left: 3px; }
.video-card__placeholder:hover .video-card__play { transform: scale(1.1); background: var(--branco); }
.video-card__duracao {
  position: absolute;
  bottom: 10px;
  right: 12px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.5);
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.video-card__info { padding: 20px 22px 24px; }
.video-card__info .artigo-card__cat { display: inline-block; margin-bottom: 10px; }
.video-card__titulo {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--azul);
  line-height: 1.35;
  margin-bottom: 8px;
}
.video-card__desc {
  font-size: 0.83rem;
  color: var(--cinza);
  line-height: 1.72;
}

/* ---- POST CARDS (artigos com figura do autor na capa) ---- */
.artigos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Artigo em destaque — ocupa 2 colunas, layout horizontal */
.post-card--featured {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
}
.post-card--featured .post-card__cover {
  width: 52%;
  min-height: 260px;
  flex-shrink: 0;
  border-radius: 8px 0 0 8px;
}
.post-card--featured .post-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
}
.post-card--featured .post-card__titulo {
  font-size: 1.25rem;
}
.post-card--featured .post-card__excerpt {
  font-size: 0.92rem;
}

.post-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--branco);
  border: 1px solid rgba(9,75,87,0.1);
  box-shadow: 0 2px 12px rgba(1,3,5,0.06);
  transition: box-shadow var(--t-med), transform var(--t-med);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  box-shadow: 0 16px 48px rgba(3,63,74,0.18);
  transform: translateY(-5px);
}

/* CAPA — versão padrão */
.post-card__cover {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* gradiente Marcos — azul-petróleo fundo */
.post-card__cover--marcos {
  background: linear-gradient(145deg, #033F4A 0%, #094B57 60%, #0a5c6b 100%);
}
/* gradiente Rafael — azul-preto mais escuro */
.post-card__cover--rafael {
  background: linear-gradient(145deg, #010305 0%, #021924 60%, #033F4A 100%);
}
/* placeholder sem autor */
.post-card__cover--empty {
  background: linear-gradient(135deg, #033F4A 0%, #094B57 100%);
  align-items: center;
  justify-content: center;
}

/* linha de topo com categoria + site */
.post-card__cover-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  z-index: 3;
}
.post-card__cat {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  padding: 4px 9px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.15);
}
.post-card__site {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* figura de corpo inteiro do advogado */
.post-card__figura {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: auto;
  height: 105%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  z-index: 2;
  filter: drop-shadow(4px 0 12px rgba(0,0,0,0.3));
}

/* sombra no rodapé da capa para suavizar a transição */
.post-card__cover::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(1,3,5,0.18) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.post-card__cover--empty::after { display: none; }

/* ícone placeholder (card em breve) */
.post-card__figura-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
}

/* CORPO */
.post-card__body {
  padding: 22px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card__autor-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(9,75,87,0.08);
}
.post-card__autor-nome {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--azul-petroleo-medio);
  letter-spacing: 0.03em;
}
.post-card__data {
  font-size: 0.67rem;
  color: var(--cinza-light);
}

.post-card__titulo {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1.32;
  margin-bottom: 10px;
  transition: color var(--t-fast);
}
.post-card:hover .post-card__titulo { color: var(--azul-petroleo-medio); }

.post-card__excerpt {
  font-size: 0.82rem;
  color: var(--cinza);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.post-card__link {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azul-claro);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap var(--t-fast);
  align-self: flex-start;
}
.post-card:hover .post-card__link { gap: 11px; }
.post-card__link--disabled {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cinza-light);
  cursor: default;
}

/* ---- badge de categoria (reutilizado nos vídeos) ---- */
.artigo-card__cat {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azul-petroleo-medio);
  background: rgba(9,75,87,0.09);
  padding: 4px 10px;
  border-radius: 2px;
}

/* =============================================
   CONTATO
============================================= */
.contato {
  padding: var(--section-py) 0;
  background: var(--azul-petroleo-escuro);
  position: relative;
  overflow: hidden;
}
.contato__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(9,75,87,0.5) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(9,75,87,0.3) 0%, transparent 45%);
  pointer-events: none;
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato__desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 40px;
}

.contato__items { display: flex; flex-direction: column; gap: 22px; }

.contato__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: opacity var(--t-fast);
}
a.contato__item:hover { opacity: 0.75; }

.contato__item-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.65);
}
.contato__item-icon svg { width: 17px; height: 17px; }

.contato__item-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}
.contato__item-value {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.contato__socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.contato__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-fast), gap var(--t-fast);
}
.contato__social svg { width: 14px; height: 14px; }
.contato__social:hover { color: rgba(255,255,255,0.85); gap: 12px; }

/* Formulário */
.contato__form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 44px 40px;
}
.contato__form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group select option { background: var(--azul-petroleo-escuro); color: var(--branco); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-aviso {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: #5cb88a;
  background: rgba(92,184,138,0.08);
  border: 1px solid rgba(92,184,138,0.18);
  padding: 14px 16px;
}
.form-success svg { width: 16px; height: 16px; flex-shrink: 0; }

/* =============================================
   RODAPÉ
============================================= */
.footer {
  background: var(--preto-profundo);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer__logo { height: 120px; width: auto; margin-bottom: 20px; }

.footer__tagline {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin-bottom: 26px;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  transition: color var(--t-fast);
  text-decoration: none;
}
.footer__social-item svg { flex-shrink: 0; opacity: 0.6; }
.footer__social-item:hover { color: var(--branco); }
.footer__social-item:hover svg { opacity: 1; }

.footer__col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a,
.footer__links li {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: rgba(255,255,255,0.8); }

.footer__links--contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer__links--contact svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }
.footer__links--contact a { color: rgba(255,255,255,0.4); }
.footer__links--contact a:hover { color: rgba(255,255,255,0.8); }

.footer__bottom {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer__aviso {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.13);
  max-width: 640px;
  line-height: 1.6;
}

/* =============================================
   WHATSAPP FLUTUANTE
============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 50px; height: 50px;
  background: var(--azul-petroleo-escuro);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(3,63,74,0.45);
  transition: all var(--t-fast) var(--ease);
}
.whatsapp-float__icon {
  width: 20px; height: 20px;
  fill: rgba(255,255,255,0.8);
  transition: fill var(--t-fast);
}
.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--preto-profundo);
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 7px 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
  border: 1px solid rgba(255,255,255,0.07);
}
.whatsapp-float:hover {
  background: var(--azul-petroleo-medio);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(3,63,74,0.55);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }
.whatsapp-float:hover .whatsapp-float__icon { fill: var(--branco); }

/* =============================================
   ANIMAÇÕES
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDown {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVO
============================================= */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .sobre__grid { gap: 52px; }
  .solucoes__grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .artigos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .partnership__content { gap: 44px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .container { padding: 0 20px; }

  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--azul-preto);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 28px 40px;
    gap: 0;
    transition: right 0.35s var(--ease);
    z-index: 1000;
    overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,0.05);
  }
  .nav-menu.open { right: 0; }
  .nav-link {
    display: block;
    padding: 14px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }
  .nav-link::after { display: none; }

  .hero__logo { height: 46px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .hero__stat { border-right: none; padding: 0 20px; }
  .hero::before { display: none; }

  .sobre__grid { grid-template-columns: 1fr; gap: 52px; }
  .sobre__badge { left: 16px; }
  .sobre__img { height: 300px; }
  .sobre__values { grid-template-columns: 1fr; }

  .solucoes__grid { grid-template-columns: 1fr; }
  .equipe__grid { grid-template-columns: 1fr; max-width: 440px; }
  .partnership__content { grid-template-columns: 1fr; }
  .partnership__pillars { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .artigos-grid { grid-template-columns: 1fr; }
  .contato__grid { grid-template-columns: 1fr; gap: 48px; }
  .contato__form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .partnership::before { display: none; }
}

@media (max-width: 480px) {
  :root { --section-py: 52px; }
  .hero__logo { height: 38px; }
  .hero__title { font-size: 2.1rem; }
  .hero__stat-num { font-size: 1.5rem; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 44px; height: 44px; }
  .nav-container { height: 66px; }
  .post-card__figura { height: 95%; left: 6px; right: auto; }
  .post-card__cover { height: 200px; }
}
