/*
Theme Name: Michel Santos - Advogado
Author: Murillo Eduardo
Author URI: https://murillodesign.netlify.app
Description: Tema personalizado para o site do Dr. Michel Santos, advogado especializado em Direito Civil e Empresarial. O tema apresenta um design moderno e profissional, com foco na experiência do usuário e na apresentação clara dos serviços oferecidos pelo escritório. O layout é responsivo, garantindo uma navegação fluida em dispositivos móveis e desktops. Cores sóbrias, tipografia elegante e elementos visuais discretos foram escolhidos para transmitir confiança e seriedade, refletindo a expertise do Dr. Michel Santos em sua área de atuação.
Version: 1.0
*/

/* âââ TOKENS ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
:root {
  --navy:       #132556;
  --navy-dk:    #0d1a3a;
  --navy-md:    #1d3470;
  --off-white:  #EFF0F4;
  --white:      #ffffff;
  --text-dark:  #0d1427;
  --text-body:  #374151;
  --text-muted: #6b7280;
  --text-subtle:#9ca3af;
  --border:     #e5e7eb;
  --border-lt:  #f3f4f6;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1140px;
  --section-pad: clamp(72px, 10vw, 112px) clamp(20px, 5vw, 60px);
  --radius: 2px;
}

/* âââ RESET âââââââââââââââââââââââââââââââââââââââââââââââââââââ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* âââ UTILITIES âââââââââââââââââââââââââââââââââââââââââââââââââ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.section-tag span {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -.02em;
}
.section-heading .t-semi {
  font-weight: 600;
}

.section-heading.light { color: var(--white); }

/* Section tag on dark backgrounds */
.dep-tag::before { background: rgba(239,240,244,.5); }
.dep-tag span { color: rgba(239,240,244,.65); }

/* âââ TYPOGRAPHY WEIGHTS ââââââââââââââââââââââââââââââââââââââââ */
.t-thin { font-weight: 300; }
.t-semi { font-weight: 600; }

/* âââ BUTTONS âââââââââââââââââââââââââââââââââââââââââââââââââââ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-1px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-md); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* âââ HEADER ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
header.scrolled {
  box-shadow: 0 1px 24px rgba(13,26,58,.08);
}

.nav-logo img {
  height: 32px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
nav a {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
nav a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: .06em !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--navy-md) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  nav.open { display: flex; }
  .hamburger { display: flex; }
}

/* âââ HERO ââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
#hero {
  height: 100vh;
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: clamp(36px,5vw,68px) clamp(20px,5vw,80px) clamp(32px,5vw,64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Navy accent bar */
.hero-content::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--navy);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.hero-eyebrow span {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}
.hero-title .name {
  color: var(--navy);
  display: block;
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.hero-stat-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: rgba(19,37,86,.08);
  border: 1px solid rgba(19,37,86,.14);
  border-radius: 50%;
  margin-bottom: .2rem;
}
.hero-stat-icon svg {
  width: 18px;
  height: 18px;
}
.hero-stat-value {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: .01em;
  line-height: 1.25;
}
.hero-stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .02em;
  line-height: 1.35;
}

/* Hero right panel */
.hero-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}

/* Pattern overlay on navy panel â Pattern.svg invertido (branco) */
.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Assets/Pattern.svg') repeat;
  background-size: 220px auto;
  filter: brightness(0) invert(1);
  opacity: .09;
  pointer-events: none;
}

/* Large SM watermark symbol */
.hero-panel::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 340px; height: 340px;
  background: url('Logos/Símbolo_Negativo.svg') no-repeat center/contain;
  opacity: .06;
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* OAB badge */
.hero-badge {
  position: absolute;
  top: 2.5rem; right: 2rem;
  background: var(--white);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem .85rem;
  border-radius: 1px;
  z-index: 3;
}

@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content { padding: 60px clamp(20px,5vw,40px) 48px; }
  .hero-panel { height: 64vw; min-height: 260px; }
  .hero-panel::after { width: 200px; height: 200px; }
}

@media (max-width: 560px) {
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .hero-content::before { width: 3px; }
  .hero-content { padding: 44px 20px 36px; }
  .hero-title { font-size: clamp(2.1rem, 9.5vw, 2.8rem); }
  .hero-sub { font-size: .92rem; line-height: 1.65; margin-bottom: 1.8rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
    margin-bottom: 2rem;
  }
  .hero-actions .btn {
    justify-content: center;
    width: 100%;
    padding: .9rem 1rem;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.4rem;
  }
  .hero-stat-item { gap: .25rem; }
  .hero-stat-value { font-size: .88rem; }
  .hero-stat-label { font-size: .76rem; }
  .hero-panel { min-height: 320px; height: 78vw; }
  .hero-badge {
    top: 1rem;
    right: 1rem;
    font-size: .62rem;
    padding: .38rem .7rem;
  }
}

/* âââ SOBRE âââââââââââââââââââââââââââââââââââââââââââââââââââââ */
#sobre {
  padding: var(--section-pad);
  background: var(--white);
}

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

.sobre-img-wrap {
  position: relative;
}
.sobre-img-wrap img {
  width: 100%;
  border-radius: var(--radius);
}

/* Decorative frame removido conforme solicitado */
.sobre-img-frame {
  display: none;
}

/* Pattern panel over image corner â Pattern.svg native */
.sobre-img-pattern {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 100px; height: 150px;
  overflow: hidden;
}
.sobre-img-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--off-white) url('Assets/Pattern.svg') center/140px auto no-repeat;
}

.oab-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem .85rem;
  z-index: 2;
}

.sobre-bio {
  font-size: .95rem;
  line-height: 1.82;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.sobre-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-top: 2rem;
}
.fact {
  padding: 1rem 1.125rem;
  border-left: 2.5px solid var(--navy);
  background: linear-gradient(135deg, #EFF0F4 0%, #dde4f4 100%);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.fact-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .3rem;
}
.fact-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
}

@media (max-width: 800px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* âââ ATUAÃÃO âââââââââââââââââââââââââââââââââââââââââââââââââââ */
#atuacao {
  padding: var(--section-pad);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

/* Watermark symbol â aumentado */
#atuacao::after {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 560px; height: 560px;
  background: url('Logos/Símbolo.svg') no-repeat center/contain;
  opacity: .05;
  pointer-events: none;
}

.atuacao-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 4rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.25rem 2rem;
  border-radius: var(--radius);
  transition: border-color .25s, box-shadow .25s, transform .2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s;
}
.area-card:hover {
  border-color: transparent;
  background: linear-gradient(145deg, #ffffff 0%, #edf1fb 100%);
  box-shadow: 0 8px 32px rgba(19,37,86,.1);
  transform: translateY(-2px);
}
.area-card:hover::before {
  transform: scaleY(1);
}

.area-icon {
  width: 48px; height: 48px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy);
  flex-shrink: 0;
}
.area-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
}

.area-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .65rem;
  letter-spacing: -.01em;
}

.area-desc {
  font-size: .875rem;
  line-height: 1.75;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .atuacao-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 2.5rem; }
  .areas-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  #atuacao::after {
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -120px;
  }
  .area-card { padding: 1.5rem 1.25rem; }
}

/* âââ TRAJETÃRIA ââââââââââââââââââââââââââââââââââââââââââââââââ */
#trajetoria {
  padding: var(--section-pad);
  background: var(--white);
}

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

.traj-sticky {
  position: sticky;
  top: 96px;
}

.traj-personal {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--navy);
}
.traj-personal p {
  font-size: .875rem;
  line-height: 1.8;
  color: var(--text-body);
}
.traj-personal p + p { margin-top: .75rem; }

.traj-cta { margin-top: 2rem; width: fit-content; }

/* Foto do Dr. Michel â sem fundo placeholder */
.sobre-img-wrap img { background: transparent; }

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 10px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--navy) 0%, rgba(19,37,86,.1) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .5s ease, transform .5s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: none;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.375rem; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}

.tl-year {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: .4rem;
}
.tl-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.tl-desc {
  font-size: .875rem;
  line-height: 1.78;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .traj-grid { grid-template-columns: 1fr; gap: 40px; }
  .traj-sticky { position: static; }
}

/* âââ MISSÃO / VISÃO / VALORES ââââââââââââââââââââââââââââââââââ */
#missao {
  padding: var(--section-pad);
  background: var(--white);
}

.mvv-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}

.mvv-intro .section-tag {
  justify-content: center;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.mvv-card {
  background: linear-gradient(145deg, #132556 0%, #1d3a70 55%, #2a52a8 100%);
  border: none;
  border-radius: var(--radius);
  padding: 2.75rem 2rem 2.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .2s;
}

/* Marca d’água removida das caixas de Missão/Visão/Valores */
.mvv-card::before {
  content: none;
}

.mvv-card:hover {
  box-shadow: 0 16px 44px rgba(19,37,86,.34);
  transform: translateY(-4px) scale(1.02);
}

.mvv-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  color: rgba(255,255,255,.85);
}

.mvv-icon svg {
  width: 100%;
  height: 100%;
}

.mvv-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .85rem;
  letter-spacing: -.01em;
}

.mvv-text {
  font-size: .875rem;
  line-height: 1.85;
  color: rgba(255,255,255,.65);
}

@media (max-width: 768px) {
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* âââ DEPOIMENTOS âââââââââââââââââââââââââââââââââââââââââââââââ */
#depoimentos {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Pattern on navy bg â Pattern.svg invertido */
#depoimentos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Assets/Pattern.svg') repeat;
  background-size: 340px auto;
  filter: brightness(0) invert(1);
  opacity: .06;
  pointer-events: none;
}

#depoimentos::after {
  content: none;
}

.dep-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  z-index: 1;
  margin-bottom: 3.5rem;
}
.dep-intro {
  color: rgba(239,240,244,.72);
  font-size: .95rem;
  line-height: 1.8;
  align-self: end;
}

@media (max-width: 860px) {
  .dep-header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 640px) {
  .dep-intro {
    font-size: .9rem;
    line-height: 1.7;
  }
  .dep-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .dep-card { padding: 1.35rem; }
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.dep-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2rem;
  border-radius: var(--radius);
  transition: background .25s, border-color .25s;
}
.dep-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}

.dep-stars {
  color: #f5c842;
  font-size: .8rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.dep-text {
  font-size: .9rem;
  line-height: 1.78;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.dep-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.dep-name {
  font-weight: 600;
  font-size: .85rem;
  color: var(--white);
}
.dep-role {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: .1rem;
}

/* âââ CONTATO âââââââââââââââââââââââââââââââââââââââââââââââââââ */
#contato {
  padding: var(--section-pad);
  background: var(--white);
}

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

.contato-cta-text {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -.02em;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.contato-cta-text strong { color: var(--navy); font-weight: 700; }

.contato-sub {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contato-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contato-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-body);
  text-decoration: none;
}
.contato-item:hover .contato-item-val { color: var(--navy); }

.contato-item-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: .9rem;
  transition: background .2s, border-color .2s;
}
.contato-item:hover .contato-item-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.contato-item-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: .15rem;
}
.contato-item-val {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color .2s;
}

/* Contact form */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-label {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.form-input, .form-textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  color: var(--text-dark);
  font-family: var(--font);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-subtle); }
.form-input:focus, .form-textarea:focus { border-color: var(--navy); }
.form-textarea { resize: vertical; min-height: 130px; }

.form-submit {
  background: var(--navy);
  border: none;
  cursor: pointer;
  padding: .95rem 2rem;
  color: var(--white);
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--navy-md);
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contato-form { padding: 1.75rem; }
}

/* âââ FOOTER ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
footer {
  background: var(--navy-dk);
  padding: 3.5rem clamp(20px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Assets/Pattern.svg') repeat;
  background-size: 220px auto;
  filter: brightness(0) invert(1);
  opacity: .045;
  pointer-events: none;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-logo img {
  height: clamp(42px, 5vw, 58px);
  width: auto;
  opacity: 1;
}

.footer-logo a {
  display: inline-flex;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.8); }

.footer-social {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.72);
  transition: color .2s, border-color .2s, background .2s;
}

.footer-social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-copy {
  font-size: .73rem;
  color: rgba(255,255,255,.28);
  text-align: right;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-links { gap: 1rem; }
  .footer-social { gap: .65rem; }
  .footer-copy { text-align: left; }
}

@media (max-width: 768px) {
  .nav-cta {
    width: 100%;
    text-align: center;
    padding: .8rem 1rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-heading { font-size: clamp(1.75rem, 9vw, 2.15rem); }
  .sobre-facts { grid-template-columns: 1fr; }
  .traj-personal { padding: 1.1rem; }
  .timeline { padding-left: 1.4rem; }
  .timeline-item::before { left: -1.75rem; }
  .contato-form { padding: 1.15rem; }
  .contato-item { align-items: flex-start; }
  .contato-item-icon { margin-top: .1rem; }
  .wa-float {
    width: 50px;
    height: 50px;
    right: 1rem;
    bottom: 1rem;
  }
  .wa-float svg { width: 24px; height: 24px; }
}

/* âââ WHATSAPP FLOAT ââââââââââââââââââââââââââââââââââââââââââââ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 200;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
}
.wa-float svg {
  width: 26px; height: 26px;
  fill: var(--white);
}

/* âââ ANIMATIONS ââââââââââââââââââââââââââââââââââââââââââââââââ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }

/* ── Mobile hero: esconde foto, centraliza texto ─────────────── */
@media (max-width: 640px) {
  .hero-panel { display: none; }

  #hero { grid-template-columns: 1fr; }

  .hero-content {
    text-align: center;
    align-items: center;
  }
  .hero-content::before { display: none; }

  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }

  .hero-title .name { display: inline; }

  .hero-sub { max-width: 100%; }

  .hero-actions { align-items: center; }

  .hero-stats { justify-items: center; }
  .hero-stat-item { align-items: center; }
}
