/* ALB Consultoria e Treinamento — estilo compartilhado */

:root {
  --navy: #0A2540;
  --navy-deep: #16202B;
  --gold: #B68A3E;
  --cream: #F7F3EB;
  --cream-soft: #FBF8F2;
  --sand: #E4DAC8;
  --slate: #5C6B7A;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: 'IBM Plex Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); }
a:hover { color: var(--gold); }

.serif {
  font-family: 'Spectral', serif;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.nav .brand img { width: 32px; height: 32px; object-fit: contain; }
.nav .brand span { font-family: 'Spectral', serif; font-weight: 600; font-size: 20px; }
.nav .links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav .links a { text-decoration: none; }
.nav .links a.active { color: var(--gold); }
.nav-toggle { display: none; }

@media (max-width: 720px) {
  .nav { flex-wrap: wrap; gap: 16px; }
  .nav .links { gap: 20px; font-size: 13px; flex-wrap: wrap; }
}

/* EYEBROW label */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.eyebrow .line { width: 40px; height: 2px; background: var(--gold); }
.eyebrow .label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* HERO (index) */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero .ring {
  position: absolute;
  border: 1px solid rgba(247,243,235,0.10);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 32px 130px;
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero-text { flex: 1; max-width: 620px; }
.hero-text h1 {
  font-family: 'Spectral', serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 26px;
}
.hero-text p {
  font-family: 'Spectral', serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(247,243,235,0.85);
  margin: 0 0 36px;
  max-width: 500px;
}
.hero-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mark img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(0) saturate(100%) invert(76%) sepia(28%) saturate(950%) hue-rotate(357deg);
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; padding: 80px 24px 90px; text-align: left; }
  .hero-mark img { width: 180px; height: 180px; }
  .hero-text h1 { font-size: 34px; }
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 15px 34px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 2px;
}
.btn:hover { opacity: 0.9; }
.btn-outline {
  display: inline-block;
  padding: 13px 32px;
  background: transparent;
  border: 1px solid rgba(247,243,235,0.4);
  color: var(--cream) !important;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-radius: 2px;
}

/* SECTION */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
}
.section-header h2 {
  font-family: 'Spectral', serif;
  font-weight: 600;
  font-size: 34px;
  margin: 0 0 20px;
  max-width: 700px;
}

/* SOBRE / bio layout */
.bio {
  display: flex;
  align-items: center;
  gap: 64px;
}
.bio-photo {
  width: 340px;
  height: 420px;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: cover;
  background: var(--sand);
}
.bio-text { flex: 1; }
.bio-text h1 {
  font-family: 'Spectral', serif;
  font-weight: 600;
  font-size: 36px;
  margin: 0 0 22px;
}
.bio-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(10,37,64,0.75);
  max-width: 580px;
  margin: 0 0 16px;
}

@media (max-width: 800px) {
  .bio { flex-direction: column; }
  .bio-photo { width: 100%; max-width: 320px; height: 380px; }
}

/* CARDS (servicos) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  padding: 36px 30px;
  background: #FFFFFF;
  border-top: 3px solid var(--gold);
}
.card h3 {
  font-family: 'Spectral', serif;
  font-weight: 600;
  font-size: 21px;
  margin: 0 0 14px;
}
.card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(10,37,64,0.7);
  margin: 0;
}
.card ul { padding-left: 18px; margin: 14px 0 0; }
.card li { font-size: 14.5px; line-height: 1.6; color: rgba(10,37,64,0.7); margin-bottom: 6px; }

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
}

/* CTA / CONTATO band */
.cta {
  background: var(--navy);
  padding: 90px 32px;
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
}
.cta-inner h2 {
  font-family: 'Spectral', serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--cream);
  margin: 0 0 10px;
}
.cta-inner p { font-size: 16px; color: rgba(247,243,235,0.7); margin: 0; }
.cta-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 17px;
}
.cta-links a { color: var(--cream); text-decoration: none; }

/* CONTATO page details */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-item {
  padding: 30px;
  background: #FFFFFF;
  border-left: 3px solid var(--gold);
}
.contact-item .label {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-item a, .contact-item span {
  font-size: 17px;
  text-decoration: none;
  color: var(--navy);
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* FOOTER */
.footer {
  padding: 26px 32px;
  text-align: center;
  font-size: 13px;
  color: rgba(10,37,64,0.5);
}
