@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --navy: #0e1a2e;
  --navy-mid: #162440;
  --navy-light: #1e3055;
  --gold: #b8945a;
  --gold-light: #d4af7a;
  --cream: #f7f3ec;
  --cream-dark: #ede8de;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-light: #8a8a8a;
  --border: rgba(184,148,90,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  background: rgba(14,26,46,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,148,90,0.2);
  overflow: visible;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: 'EB Garamond', serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.75);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  font-family: 'EB Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--gold);
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.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(--cream);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(184,148,90,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 50%, rgba(30,48,85,0.6) 0%, transparent 60%),
    linear-gradient(135deg, #0e1a2e 0%, #162440 50%, #0e1a2e 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(184,148,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,148,90,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  font-family: 'EB Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(247,243,236,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 1rem 2.2rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(184,148,90,0.25);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,148,90,0.35);
}

.btn-secondary {
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(247,243,236,0.3);
  padding: 1rem 2.2rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.25s, color 0.25s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-stat {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.03);
}

.hero-stat p {
  font-size: 0.9rem;
  color: rgba(247,243,236,0.8);
  font-style: normal;
  line-height: 1.6;
}

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 500;
  font-style: normal;
  margin-bottom: 0.5rem;
}

/* ── SECTIONS ── */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.section-title em { font-style: italic; }

.section-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ── POSITIONING BLOCK ── */
.positioning {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.positioning::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,148,90,0.07) 0%, transparent 70%);
}

.positioning .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.positioning blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.positioning .section-label { color: var(--gold); }
.positioning .section-label::before { background: var(--gold); }

.positioning-text p {
  font-size: 1.05rem;
  color: rgba(247,243,236,0.7);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* ── SERVICE CARDS ── */
.services {
  background: var(--cream-dark);
}

.services-header {
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.service-card {
  background: var(--cream);
  padding: 2.5rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s, transform 0.2s;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.35s;
}

.service-card:hover {
  background: var(--navy);
}

.service-card:hover::after { width: 100%; }

.service-card:hover .card-title,
.service-card:hover .card-num {
  color: var(--cream);
}

.service-card:hover .card-desc {
  color: rgba(247,243,236,0.6);
}

.service-card:hover .card-bullet {
  color: rgba(247,243,236,0.5);
}

.service-card:hover .card-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

.card-num {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-family: 'EB Garamond', serif;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.8rem;
  line-height: 1.3;
  transition: color 0.3s;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}

.card-bullets {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card-bullet {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
  transition: color 0.3s;
}

.card-bullet::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.card-arrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s, transform 0.3s;
}

/* ── AUTHORITY ── */
.authority {
  background: var(--white);
}

.authority .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.authority-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.methodology {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.method-step {
  padding: 2rem 0;
  border-bottom: 1px solid var(--cream-dark);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.method-step:last-child { border-bottom: none; }

.method-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  opacity: 0.5;
}

.method-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.method-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── LAWYER PROFILE ── */
.profile {
  background: var(--navy);
  color: var(--cream);
}

.profile .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.profile .section-label { color: var(--gold); }
.profile .section-label::before { background: var(--gold); }
.profile .section-title,
.profile .section-title em,
.positioning .section-title,
.positioning .section-title em,
.sp-how .section-title,
.sp-how .section-title em {
  font-style: normal;
  color: var(--cream);
}

.profile .section-title { color: var(--cream); }

.profile-text p {
  font-size: 1.05rem;
  color: rgba(247,243,236,0.7);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184,148,90,0.2);
}

.profile-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(247,243,236,0.65);
}

.profile-detail::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

.profile-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,148,90,0.15);
  padding: 2rem;
  border-radius: 2px;
}

.profile-card-title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.profile-card p {
  font-size: 1rem;
  color: rgba(247,243,236,0.65);
  line-height: 1.7;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--gold);
  padding: 5rem 2rem;
}

.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  max-width: 560px;
}

.cta-strip h2 em { font-style: italic; }

.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-dark {
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--navy);
  padding: 1rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, transform 0.15s;
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-outline-dark {
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--navy);
  padding: 1rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, color 0.25s;
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--cream);
}

/* ── FOOTER ── */
footer {
  background: #080f1c;
  color: rgba(247,243,236,0.5);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.45);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(247,243,236,0.3);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 70% 70% at 50% 100%, rgba(184,148,90,0.1) 0%, transparent 60%),
    linear-gradient(180deg, #0e1a2e 0%, #162440 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero .section-label {
  justify-content: center;
}

.page-hero .section-label::before { display: none; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(247,243,236,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── SERVICE PAGE SECTIONS ── */
.sp-problem {
  background: var(--cream-dark);
}

.sp-what {
  background: var(--white);
}

.sp-how {
  background: var(--navy);
  color: var(--cream);
}

.sp-how .section-title { color: var(--cream); }
.sp-how .section-label { color: var(--gold); }
.sp-how .section-label::before { background: var(--gold); }
.sp-how p { color: rgba(247,243,236,0.7); }

.sp-situations {
  background: var(--cream);
}

.sp-result {
  background: var(--cream-dark);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.text-block p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bullet-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 0.1em;
}

.sp-how .bullet-list li {
  color: rgba(247,243,236,0.65);
}

.sp-how .bullet-list li::before { color: var(--gold); }

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.result-item {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
}

.result-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── SERVICES LIST PAGE ── */
.services-list {
  background: var(--white);
}

.service-list-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.3s;
}

.service-list-item:hover {
  padding-left: 1rem;
}

.service-list-item:hover .sli-arrow {
  color: var(--gold);
  transform: translateX(6px);
}

.sli-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  font-style: italic;
  width: 3rem;
}

.sli-content {}

.sli-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.sli-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.sli-arrow {
  font-size: 1.2rem;
  color: var(--cream-dark);
  transition: color 0.3s, transform 0.3s;
}

/* ── SOBRE PAGE ── */
.sobre-main {
  background: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}

.sobre-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.sobre-sidebar {}

.sobre-card {
  background: var(--cream-dark);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sobre-card-title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sobre-card-title::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
}

.sobre-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.5;
}

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

.sobre-item::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* ── ARTIGOS PAGE ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: var(--white);
  padding: 5rem 2rem;
}

.article-card {
  background: var(--cream);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.article-card:hover {
  border-bottom-color: var(--gold);
}

.article-tag {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.article-excerpt {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── CONTACT PAGE ── */
.contact-main {
  background: var(--white);
  padding: 5rem 2rem;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form-wrap {}

.contact-info {}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

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

.ci-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  width: 90px;
  flex-shrink: 0;
  padding-top: 0.2em;
}

.ci-value {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ci-value a {
  color: var(--text-muted);
  text-decoration: none;
}

.ci-value a:hover { color: var(--gold); }

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  transition: border-color 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--navy);
  border: none;
  padding: 1.1rem 2.5rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  width: 100%;
}

.form-submit:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* ── ANIMATIONS ── */
/* ── PROFILE PHOTO ── */
.profile-photo-wrap {
  position: relative;
  margin-bottom: 1.5rem;
  max-width: 220px;
}

.profile-photo {
  width: 100%;
  display: block;
  border-radius: 2px;
  filter: grayscale(20%);
  border: 1px solid rgba(184,148,90,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.profile-photo-wrap::before {
  content: '';
  position: absolute;
  top: 10px; left: 10px;
  right: -10px; bottom: -10px;
  border: 1px solid rgba(184,148,90,0.2);
  border-radius: 2px;
  z-index: -1;
}

/* ── SOBRE PHOTO ── */
.sobre-photo-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.sobre-photo {
  width: 100%;
  display: block;
  border-radius: 2px;
  filter: grayscale(15%);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 1px solid var(--cream-dark);
}

.sobre-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -8px; right: -8px;
  width: 60%; height: 60%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.8s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 70px);
    background-color: #0e1a2e !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s;
    z-index: 9999;
    overflow-y: auto;
    padding: 2rem;
    margin: 0;
  }

  .nav-links li {
    display: block !important;
    width: 100%;
    text-align: center;
    list-style: none;
  }

  .nav-links a {
    font-size: 1.1rem;
    display: block;
    padding: 0.4rem 0;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-cta {
    display: block !important;
    margin-top: 0.5rem;
    color: #0e1a2e !important;
  }

  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .positioning .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .authority .container { grid-template-columns: 1fr; gap: 3rem; }
  .profile .container { grid-template-columns: 1fr; gap: 3rem; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .service-list-item { grid-template-columns: auto 1fr; }
  .sli-arrow { display: none; }
}

@media (max-width: 600px) {
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .cta-strip-actions { flex-direction: column; width: 100%; }
  .hero-actions { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* ── TESTIMONIALS RESPONSIVE ── */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── SOBRE PAGE RESPONSIVE ── */
@media (max-width: 900px) {
  .sobre-main [style*="grid-template-columns: 220px"] {
    grid-template-columns: 1fr !important;
  }
  .sobre-main [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  .sobre-main [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
