:root {
  --navy: #0B1F3A;
  --navy-mid: #162D50;
  --teal: #1A7A6E;
  --teal-light: #25A99A;
  --teal-pale: #E6F5F3;
  --gold: #C9962A;
  --gold-light: #F2D98A;
  --off-white: #F7F5F0;
  --warm-gray: #E8E4DC;
  --text-dark: #0B1F3A;
  --text-mid: #3A4A5C;
  --text-light: #6B7A8D;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--warm-gray);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(11,31,58,0.08); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

/* BOTÃO AGENDAR */
.btn-agendar {
  display: flex;
  align-items: center;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;

  background: linear-gradient(
    135deg,
    var(--teal),
    var(--teal-light)
  );

  color: var(--white);
  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  /* border-radius: 14px; */

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 10px 25px rgba(26, 122, 110, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);

  background: linear-gradient(
    135deg,
    var(--teal-light),
    var(--teal)
  );

  box-shadow:
    0 14px 32px rgba(26, 122, 110, 0.24),
    0 0 0 3px rgba(37, 169, 154, 0.12);
}

.nav-cta:active {
  transform: translateY(0);
}

/* .nav-cta::after {
  content: "↗";
  margin-left: 10px;

  font-size: 0.9rem;
  opacity: 0.85;

  transition: transform 0.25s ease;
} */

.nav-cta:hover::after {
  transform: translateX(3px);
}




.nav-links a:hover { color: var(--teal); }

.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: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--warm-gray);
  z-index: 999;
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(11,31,58,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--warm-gray);
  padding-bottom: 1rem;
}
.mobile-menu a:last-child { border-bottom: none; }

/* HERO */
#hero {
  /* margin-top: 68px; */
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
#hero, section{
  padding: 0 0 0 0;
}

.hero-image-col {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero-image-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,122,110,0.4) 0%, rgba(11,31,58,0.7) 60%);
  z-index: 1;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(1.05);
  display: block;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-placeholder svg {
  width: 200px;
  height: 200px;
  opacity: 0.2;
}

.hero-accent-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 50%, var(--gold) 100%);
  z-index: 2;
}

.hero-info-col {
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  position: relative;
}
.hero-info-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal) 0%, var(--gold) 100%);
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: var(--teal);
  margin-bottom: 2rem;
}

.contact-item { margin-bottom: 1.2rem; }

.endereco{
  margin-bottom: 2rem;
}


.contact-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}
.social-link {
  width: 38px; height: 38px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.25s;
  font-weight: 500;
}
.social-link:hover {
  background: var(--navy);
  color: var(--white);
}

/* SECTIONS */
section { padding: 6rem 0; }

.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  margin-bottom: 3rem;
}

/* SOBRE */
#sobre { background: var(--off-white); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.sobre-stat-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-left: 3px solid var(--teal);
  padding: 1.5rem 1.5rem;
  border-radius: 0 8px 8px 0;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 400;
}

.sobre-text { }
.sobre-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.sobre-text p:last-child { margin-bottom: 0; }

/* EXPERIÊNCIA */
#experiencia { background: var(--white); }

.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 200px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--warm-gray);
}

.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 3rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-left {
  text-align: right;
  padding-right: 2rem;
  padding-top: 0.1rem;
}
.timeline-period {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.timeline-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.timeline-dot {
  position: absolute;
  left: 194px;
  top: 6px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  z-index: 1;
}
.timeline-dot.gold { border-color: var(--gold); }

.timeline-right { padding-left: 1rem; }
.timeline-company {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.timeline-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* FORMAÇÃO */
#formacao { background: var(--off-white); }

/* CLIENTES */
#clientes { background: var(--white); }
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.cliente-card {
  background: var(--off-white);
  border: 1px solid var(--warm-gray);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.25s;
}
.cliente-card:hover {
  border-color: var(--teal);
  background: var(--teal-pale);
  transform: translateY(-2px);
}
.cliente-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.08em;
  transition: color 0.25s;
}
.cliente-card:hover .cliente-logo { color: var(--teal); }
.cliente-sector {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
  transition: color 0.25s;
}

/* HABILIDADES */
#habilidades {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#habilidades::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(26,122,110,0.2);
  border-radius: 50%;
}
#habilidades::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border: 1px solid rgba(201,150,42,0.15);
  border-radius: 50%;
}
#habilidades .section-label { color: var(--teal-light); }
#habilidades .section-title { color: var(--white); }

.hab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hab-item {
  background: rgba(255,255,255,0.03);
  padding: 2rem 1.8rem;
  transition: background 0.25s;
}
.hab-item:hover { background: rgba(26,122,110,0.15); }
.hab-cat {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.5rem;
}
.hab-name {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1rem;
}
.hab-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.hab-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
  transition: width 1.2s ease;
}

/* ESPECIALIDADES */
#especialidades { background: var(--teal-pale); }
.esp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.esp-card {
  background: var(--white);
  border: 1px solid rgba(26,122,110,0.15);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}
.esp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,122,110,0.12);
  border-color: var(--teal);
}
.esp-icon {
  width: 44px; height: 44px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.esp-icon svg { width: 22px; height: 22px; color: var(--teal); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.esp-title {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.esp-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* CONTATO */
#contato { background: var(--white); }
.contato-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--warm-gray);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--teal); }
.form-input::placeholder { color: var(--text-light); }
textarea.form-input { resize: vertical; min-height: 140px; }

.btn-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.25s;
  width: 100%;
}
.btn-submit:hover { background: var(--teal); }

.contato-info { padding-top: 0.5rem; }
.contato-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.contato-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.contato-divider {
  height: 1px;
  background: var(--warm-gray);
  margin: 2rem 0;
}

/* FOOTER */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
}
.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.25s;
}
.footer-social a:hover { border-color: var(--teal-light); color: var(--teal-light); }
footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-col { min-height: 320px; }
  .hero-photo-placeholder { min-height: 320px; }
  .hero-info-col { padding: 2.5rem 2rem; }

  .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-stat-col { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 130px; }

  .timeline::before { left: 0; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 1.8rem; }
  .timeline-left { text-align: left; padding-right: 0; padding-left: 0; }
  .timeline-dot { left: -6px; }

  .clientes-grid { grid-template-columns: repeat(3, 1fr); }
  .hab-grid { grid-template-columns: 1fr 1fr; }
  .esp-grid { grid-template-columns: 1fr 1fr; }
  .contato-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .clientes-grid { grid-template-columns: repeat(2, 1fr); }
  .hab-grid { grid-template-columns: 1fr; }
  .esp-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
