:root {
  --primary: #1c2a2f;
  --primary-mid: #2b3f46;
  --primary-light: #35505a;
  --accent: #c6a355;
  --accent-light: #d9bc76;
  --accent-dark: #a8884a;
  --accent-glow: rgba(198, 163, 85, 0.15);
  --off-white: #f2f4f4;
  --cream: #e8ecec;
  --gray-100: #dfe3e3;
  --gray-300: #b8bfbf;
  --gray-500: #7a8585;
  --gray-700: #3d4a4a;
  --dark: #10191c;
  --white: #ffffff;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --shadow-soft: 0 4px 30px rgba(28, 42, 47, 0.06);
  --shadow-md: 0 8px 40px rgba(28, 42, 47, 0.1);
  --shadow-gold: 0 4px 25px rgba(198, 163, 85, 0.2);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  scrollbar-color: #c6a355 #1c2a2f;
  scrollbar-width: auto;
}
::-webkit-scrollbar {
  width: 1vw;
  height: 1vw;
  background: #1c2a2f;
}

::-webkit-scrollbar-thumb {
  background: -webkit-linear-gradient(transparent, #c6a355);
  background: linear-gradient(transparent, #c6a355);
  border-radius: 20px;
}

::selection {
  background: rgb(198, 163, 85);
  color: #ffffff;
  text-shadow: none;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.2;
}
a {
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}
img {
  max-width: 100%;
  height: auto;
}
::selection {
  background: var(--accent);
  color: var(--white);
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}

/* TOP BAR */
.top-bar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(198, 163, 85, 0.15);
}
.top-bar a {
  color: rgba(255, 255, 255, 0.7);
}
.top-bar a:hover {
  color: var(--accent-light);
}
.top-bar i {
  color: var(--accent);
  margin-right: 6px;
}

/* NAVBAR - transparent at top, solid on scroll */
.navbar {
  background: var(--primary);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 12px 0;
  transition: all 0.4s var(--ease-out);
  border-top: 1px solid rgba(198, 163, 85, 0.15);
  border-bottom: 1px solid rgba(198, 163, 85, 0.15);
}
.navbar.scrolled {
  padding: 8px 0;
  background: rgba(28, 42, 47, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-top-color: transparent;
  border-bottom-color: rgba(198, 163, 85, 0.08);
}
.navbar-brand img {
  height: 52px;
  transition: height 0.3s var(--ease-out);
}
.navbar.scrolled .navbar-brand img {
  height: 42px;
}
.navbar .nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 18px !important;
  position: relative;
  transition: color 0.3s ease;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--white);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}
.btn-nav-cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 24px !important;
  border-radius: 0;
  transition: all 0.3s var(--ease-out);
}
.btn-nav-cta:hover {
  background: var(--accent);
  color: var(--white) !important;
  box-shadow: var(--shadow-gold);
}
.navbar-toggler {
  border: 1px solid rgba(198, 163, 85, 0.4);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(198,163,85,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Mobile: always solid */
@media (max-width: 991px) {
  .navbar {
    background: rgba(28, 42, 47, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: none;
    border-bottom: 1px solid rgba(198, 163, 85, 0.08);
  }
  .navbar-collapse {
    background: var(--primary);
    margin: 12px -16px -12px;
    padding: 20px 24px;
    border-top: 1px solid rgba(198, 163, 85, 0.1);
  }
  .navbar .nav-link {
    padding: 12px 0 !important;
  }
  .navbar .nav-link::after {
    left: 0;
    right: auto;
    width: 24px;
  }
  .btn-nav-cta {
    margin-top: 12px;
    display: inline-block;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;

  background: var(--primary);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(198, 163, 85, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(43, 63, 70, 0.5) 0%, transparent 50%), radial-gradient(ellipse at 50% 80%, rgba(28, 42, 47, 0.9) 0%, transparent 70%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(30deg, var(--accent) 1px, transparent 1px), linear-gradient(-30deg, var(--accent) 1px, transparent 1px);
  background-size: 60px 100px;
}
.hero-deco-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0;
  animation: heroLineIn 1.5s 0.5s var(--ease-out) forwards;
}
@keyframes heroLineIn {
  to {
    opacity: 0.4;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 50px 0 0px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.hero-badge::before,
.hero-badge::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}
.hero h1 .accent-text {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease-out) forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s var(--ease-out) forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(28, 42, 47, 0.5);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(198, 163, 85, 0.1);
}
.stat-item {
  padding: 28px 0;
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(198, 163, 85, 0.2);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* BUTTONS */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 0;
  transition: all 0.35s var(--ease-out);
}
.btn-gold:hover {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-outline-light-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  transition: all 0.35s var(--ease-out);
}
.btn-outline-light-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--accent);
  border-radius: 0;
  transition: all 0.35s var(--ease-out);
}
.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* SECTION COMMONS */
section {
  padding: 110px 0;
  max-width: 100%;
  overflow-x: hidden;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-label::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1875rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.8;
}
.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  margin: 20px 0;
}

/* ABOUT */
.about-section {
  background: var(--white);
}
.about-image-wrapper {
  position: relative;
}
.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--accent);
  opacity: 0.3;
  z-index: 0;
}
.about-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.about-image-placeholder img {
  filter: brightness(1.1);
}
.about-text p {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.about-feature span {
  font-size: 1.0625rem;
  color: var(--gray-700);
}

/* AREAS */
.areas-section {
  background: var(--off-white);
  position: relative;
}
.areas-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-100), transparent);
}
.area-card {
  background: var(--white);
  padding: 48px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
}
.area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.area-card:hover {
  border-color: rgba(198, 163, 85, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.area-card:hover::before {
  transform: scaleX(1);
}
.area-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s var(--ease-out);
}
.area-card:hover .area-icon {
  background: var(--accent);
  box-shadow: var(--shadow-gold);
}
.area-icon i {
  font-size: 1.75rem;
  color: var(--accent);
  transition: color 0.4s ease;
}
.area-card:hover .area-icon i {
  color: var(--white);
}
.area-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
}
.area-card p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.area-card .area-services {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.area-card .area-services li {
  font-size: 1rem;
  color: var(--gray-500);
  padding: 6px 0 6px 20px;
  position: relative;
}
.area-card .area-services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
.area-link {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.area-link i {
  font-size: 1rem;
  transition: transform 0.3s var(--ease-out);
}
.area-card:hover .area-link i {
  transform: translateX(4px);
}

/* EQUIPE */
.team-section {
  background: var(--white);
}
.team-card {
  text-align: center;
  padding: 0;
  overflow: hidden;
}
.team-photo-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.team-photo-placeholder i {
  font-size: 4.5rem;
  color: rgba(198, 163, 85, 0.3);
}
.team-photo-placeholder span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.team-photo-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}
.team-info {
  padding: 28px 24px 36px;
}
.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-oab {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.team-experience {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  font-style: italic;
}
.team-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}
.team-specs li {
  font-size: 1rem;
  color: var(--gray-500);
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.team-specs li i {
  font-size: 0.875rem;
  color: var(--accent);
}

/* CTA */
.cta-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(198, 163, 85, 0.06) 0%, transparent 60%);
}
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: linear-gradient(30deg, var(--accent) 1px, transparent 1px), linear-gradient(-30deg, var(--accent) 1px, transparent 1px);
  background-size: 50px 86px;
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1875rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* DIFERENCIAIS */
.diff-section {
  background: var(--off-white);
}
.diff-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  height: 100%;
  transition: all 0.4s var(--ease-out);
}
.diff-card:hover {
  border-color: rgba(198, 163, 85, 0.2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.diff-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diff-icon i {
  font-size: 2.25rem;
  color: var(--accent);
}
.diff-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.diff-card p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* LOCALIZAÇÃO */
.location-section {
  background: var(--white);
  overflow: hidden;
}
.location-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}
.location-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.location-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28, 42, 47, 0.1) 0%, transparent 40%);
}
.location-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.location-content p {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.location-address-card {
  background: var(--off-white);
  padding: 28px 32px;
  margin-top: 24px;
  border-left: 3px solid var(--accent);
}
.location-address-card i {
  color: var(--accent);
  font-size: 1.375rem;
  margin-right: 12px;
}
.location-address-card .address-text {
  font-size: 1.0625rem;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.7;
}
.location-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}
.location-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--gray-500);
}
.location-feat i {
  color: var(--accent);
  font-size: 1.125rem;
}

/* CONTATO */
.contact-section {
  background: var(--white);
}
.contact-info-card {
  background: var(--primary);
  padding: 48px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 80%, rgba(198, 163, 85, 0.08), transparent 60%);
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 1.625rem;
  margin-bottom: 8px;
  position: relative;
}
.contact-info-card .divider-gold {
  margin: 20px 0 32px;
}
.contact-info-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 36px;
  position: relative;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(198, 163, 85, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact-item-icon i {
  font-size: 1.25rem;
  color: var(--accent);
}
.contact-item-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
}
.contact-item-text small {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.contact-item-text a {
  color: rgba(255, 255, 255, 0.8);
}
.contact-item-text a:hover {
  color: var(--accent-light);
}
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  position: relative;
}
.contact-social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(198, 163, 85, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.125rem;
  transition: all 0.3s var(--ease-out);
}
.contact-social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.contact-form-wrapper {
  padding: 48px 40px;
  background: var(--off-white);
  height: 100%;
}
.contact-form-wrapper h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
}
.contact-form-wrapper p {
  color: var(--gray-500);
  font-size: 1.0625rem;
  margin-bottom: 32px;
}
.form-floating {
  margin-bottom: 20px;
}
.form-floating .form-control,
.form-floating .form-select {
  border: none;
  border-bottom: 1px solid var(--gray-300);
  border-radius: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  padding-left: 0;
  color: var(--gray-700);
  transition: border-color 0.3s ease;
}
.form-floating .form-control:focus,
.form-floating .form-select:focus {
  box-shadow: none;
  border-color: var(--accent);
}
.form-floating label {
  font-family: var(--font-body);
  color: var(--gray-500);
  padding-left: 0;
}
.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
  color: var(--accent);
}
.form-check {
  margin-top: 8px;
  margin-bottom: 24px;
}
.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}
.form-check-label {
  font-size: 0.9375rem;
  color: var(--gray-500);
}
.form-check-label a {
  color: var(--accent);
  text-decoration: underline;
}
.form-message {
  display: none;
  padding: 12px 16px;
  font-size: 1rem;
  margin-bottom: 16px;
}
.form-message.success {
  display: block;
  background: rgba(46, 125, 91, 0.08);
  color: #2e7d5b;
  border: 1px solid rgba(46, 125, 91, 0.2);
}
.form-message.error {
  display: block;
  background: rgba(192, 57, 43, 0.08);
  color: #c0392b;
  border: 1px solid rgba(192, 57, 43, 0.2);
}

/* FOOTER */
.site-footer {
  background: var(--primary);
  padding: 80px 0 0;
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}
.footer-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 24px;
}
.footer-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 4px;
}
.footer-contact-item span,
.footer-contact-item a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-contact-item a:hover {
  color: var(--accent-light);
}
.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.875rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s var(--ease-out);
  animation: whatsappPulse 2.5s infinite;
  opacity: 0;
  visibility: hidden;
}
.whatsapp-float.show {
  opacity: 1;
  visibility: visible;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20ba5a;
  color: var(--white);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}
@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow:
      0 4px 30px rgba(37, 211, 102, 0.55),
      0 0 0 12px rgba(37, 211, 102, 0.08);
  }
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--gray-700);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: 1px solid rgba(198, 163, 85, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* COOKIE BANNER - BLACK */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #000000;
  border-top: 1px solid rgba(198, 163, 85, 0.2);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}
.btn-cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 10px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cookie-accept:hover {
  background: var(--accent-dark);
}

/* PAGE HERO (internal pages) */
.page-hero {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px;
}
.page-hero .hero-bg,
.page-hero .hero-pattern {
  position: absolute;
  inset: 0;
}
.page-hero .hero-bg {
  background: radial-gradient(ellipse at 20% 50%, rgba(198, 163, 85, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(43, 63, 70, 0.5) 0%, transparent 50%);
}
.page-hero .hero-pattern {
  opacity: 0.03;
  background-image: linear-gradient(30deg, var(--accent) 1px, transparent 1px), linear-gradient(-30deg, var(--accent) 1px, transparent 1px);
  background-size: 60px 100px;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-custom a:hover {
  color: var(--accent-light);
}
.breadcrumb-custom .separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}
.breadcrumb-custom .current {
  color: var(--accent);
  font-weight: 500;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero .page-hero-subtitle {
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  line-height: 1.8;
}
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.btn-hero-cta:hover {
  background: #d4b06a;
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-hero-cta i {
  font-size: 1.1rem;
}
.page-hero-article-img {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* SERVICE PAGE */
.service-intro {
  background: var(--white);
}
.service-intro .lead-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-intro p {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.service-content {
  background: var(--off-white);
}
.service-content-white {
  background: var(--white);
}
.service-content h2,
.service-content-white h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
}
.service-content p,
.service-content-white p {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.service-content ul,
.service-content-white ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.service-content ul li,
.service-content-white ul li {
  font-size: 1.0625rem;
  color: var(--gray-500);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.7;
}
.service-content ul li::before,
.service-content-white ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}
.service-highlight-box {
  background: var(--white);
  border-left: 3px solid var(--accent);
  padding: 32px 36px;
  margin: 32px 0;
}
.service-content .service-highlight-box {
  background: var(--white);
}
.service-content-white .service-highlight-box {
  background: var(--off-white);
}
.service-highlight-box p {
  margin: 0;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.8;
}
.service-icon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.service-icon-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease-out);
}
.service-content-white .service-icon-item {
  background: var(--off-white);
}
.service-icon-item:hover {
  border-color: rgba(198, 163, 85, 0.2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.service-icon-item i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.service-icon-item h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.service-icon-item p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.7;
}
.service-cta-inline {
  background: var(--primary);
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.service-cta-inline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(198, 163, 85, 0.06) 0%, transparent 60%);
}
.service-cta-inline h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
  position: relative;
}
.service-cta-inline p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 1.0625rem;
  margin-bottom: 24px;
  position: relative;
}
.service-cta-inline .btn-gold {
  position: relative;
}

/* FAQ ACCORDION */
.faq-section {
  background: var(--off-white);
}
.faq-section .accordion-item {
  border: 1px solid var(--gray-100);
  border-radius: 0 !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-section .accordion-button {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  padding: 20px 28px;
  border-radius: 0 !important;
  box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--accent-dark);
  box-shadow: none;
}
.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c6a355'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(198, 163, 85, 0.3);
}
.faq-section .accordion-body {
  padding: 0 28px 24px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-500);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  section {
    padding: 80px 0;
  }
  .hero-content {
    padding: 120px 0 120px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .contact-info-card,
  .contact-form-wrapper {
    padding: 36px 28px;
  }
  .location-content {
    padding: 48px 24px;
  }
  .location-image-wrapper {
    min-height: 350px;
  }
}
@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }
  .hero-content {
    padding: 100px 0 120px;
    text-align: center;
  }
  .hero-description {
    margin: 0 auto 36px;
  }
  .hero-badge {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .about-image-wrapper {
    margin-bottom: 40px;
  }
  .about-image-wrapper::before {
    display: none;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.625rem;
    bottom: 20px;
    right: 20px;
  }
  .back-to-top {
    bottom: 84px;
    right: 22px;
    width: 38px;
    height: 38px;
  }
  .top-bar {
    display: none;
  }
}

/* ARTIGOS - FILTROS */
.article-filter-btn {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-500);
  background: transparent;
  border: 1px solid var(--gray-100);
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.article-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.article-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ARTIGOS - CARDS */
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  transition: all 0.4s var(--ease-out);
}
.article-card:hover {
  border-color: rgba(198, 163, 85, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.article-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}
.article-card-image img {
  transition: transform 0.5s var(--ease-out);
}
.article-card:hover .article-card-image img {
  transform: scale(1.05);
}
.article-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white);
  padding: 5px 12px;
}
.article-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.article-card-date {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-card-date i {
  color: var(--accent);
  font-size: 0.8125rem;
}
.article-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.article-card:hover .article-card-title {
  color: var(--accent-dark);
}
.article-card-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-link {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.article-card-link i {
  font-size: 1rem;
  transition: transform 0.3s var(--ease-out);
}
.article-card:hover .article-card-link i {
  transform: translateX(4px);
}

/* ARTIGOS - PAGINAÇÃO */
.article-pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
  flex-wrap: wrap;
}
.article-page-item {
  display: flex;
}
.article-page-link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-100);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.article-page-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.article-page-item.active .article-page-link {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.article-page-item.disabled .article-page-link {
  color: var(--gray-300);
  cursor: default;
  pointer-events: none;
}
@media (max-width: 767px) {
  .article-filter-btn {
    font-size: 0.8125rem;
    padding: 6px 14px;
  }
  .article-page-link {
    width: 38px;
    height: 38px;
    font-size: 0.875rem;
  }
}

/* PRIVACY PAGE */
.privacy-section {
  background: var(--white);
  padding: 80px 0 110px;
}
.privacy-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--gray-500);
  background: var(--off-white);
  padding: 10px 20px;
  margin-bottom: 48px;
  border-left: 3px solid var(--accent);
}
.privacy-updated i {
  color: var(--accent);
}
.privacy-block {
  position: relative;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gray-100);
}
.privacy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.privacy-block-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-glow);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
  color: rgba(198, 163, 85, 0.15);
}
.privacy-block h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  margin-bottom: 20px;
}
.privacy-block h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.privacy-block h3 i {
  color: var(--accent);
  font-size: 1.25rem;
}
.privacy-block p {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.privacy-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.privacy-block ul li {
  font-size: 1.0625rem;
  color: var(--gray-500);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.7;
}
.privacy-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}
.privacy-purposes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.privacy-purpose-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease-out);
}
.privacy-purpose-item:hover {
  border-color: rgba(198, 163, 85, 0.2);
  box-shadow: var(--shadow-soft);
}
.privacy-purpose-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.privacy-purpose-icon i {
  font-size: 1.25rem;
  color: var(--accent);
}
.privacy-purpose-item h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.privacy-purpose-item p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.7;
}
.privacy-table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
}
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.privacy-table th {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--primary);
  padding: 14px 20px;
  text-align: left;
}
.privacy-table td {
  padding: 16px 20px;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.7;
}
.privacy-table tbody tr:hover {
  background: var(--off-white);
}
.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.privacy-right-card {
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease-out);
}
.privacy-right-card:hover {
  border-color: rgba(198, 163, 85, 0.2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.privacy-right-card i {
  font-size: 1.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.privacy-right-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.privacy-right-card p {
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}
.privacy-contact-card {
  background: var(--primary);
  padding: 36px 40px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.privacy-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 80%, rgba(198, 163, 85, 0.08), transparent 60%);
}
.privacy-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}
.privacy-contact-item:last-child {
  margin-bottom: 0;
}
.privacy-contact-item i {
  font-size: 1.25rem;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.privacy-contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}
.privacy-contact-item span,
.privacy-contact-item a {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
}
.privacy-contact-item a:hover {
  color: var(--accent-light);
}
@media (max-width: 767px) {
  .privacy-section {
    padding: 48px 0 60px;
  }
  .privacy-block {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }
  .privacy-purpose-item {
    flex-direction: column;
    gap: 12px;
  }
  .privacy-contact-card {
    padding: 28px 24px;
  }
  .privacy-rights-grid {
    grid-template-columns: 1fr;
  }
}

/* SOBRE - MISSÃO, VISÃO, VALORES */
.sobre-mvv-section {
  background: var(--off-white);
  position: relative;
}
.sobre-mvv-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-100), transparent);
}
.sobre-mvv-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.sobre-mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.sobre-mvv-card:hover {
  border-color: rgba(198, 163, 85, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.sobre-mvv-card:hover::before {
  transform: scaleX(1);
}
.sobre-mvv-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  background: var(--accent-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out);
}
.sobre-mvv-card:hover .sobre-mvv-icon {
  background: var(--accent);
  box-shadow: var(--shadow-gold);
}
.sobre-mvv-icon i {
  font-size: 2rem;
  color: var(--accent);
  transition: color 0.4s ease;
}
.sobre-mvv-card:hover .sobre-mvv-icon i {
  color: var(--white);
}
.sobre-mvv-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
}
.sobre-mvv-card p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin: 0;
}

/* SOBRE - FUNDADORES */
.sobre-founders-section {
  background: var(--white);
}
.sobre-founder-block {
  margin-bottom: 60px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
}
.sobre-founder-block:last-child {
  margin-bottom: 0;
}
.sobre-founder-block:hover {
  border-color: rgba(198, 163, 85, 0.2);
  box-shadow: var(--shadow-md);
}
.sobre-founder-photo {
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sobre-founder-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.sobre-founder-photo-placeholder i {
  font-size: 5rem;
  color: rgba(198, 163, 85, 0.25);
}
.sobre-founder-photo-placeholder span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sobre-founder-info {
  padding: 48px 44px;
}
.sobre-founder-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.sobre-founder-oab {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
}
.sobre-founder-info p {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.sobre-founder-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.sobre-founder-spec {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sobre-founder-spec i {
  color: var(--accent);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.sobre-founder-spec span {
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}
@media (max-width: 991px) {
  .sobre-founder-photo {
    min-height: 320px;
  }
  .sobre-founder-info {
    padding: 36px 28px;
  }
}
@media (max-width: 767px) {
  .sobre-founder-photo {
    min-height: 260px;
  }
  .sobre-founder-info {
    padding: 28px 24px;
  }
  .sobre-founder-block {
    margin-bottom: 40px;
  }
}

/* ARTICLE PAGE */
.article-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(198, 163, 85, 0.15);
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
}
.article-meta-item i {
  color: var(--accent);
  font-size: 0.875rem;
}
.article-meta-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(198, 163, 85, 0.2);
  border: 1px solid rgba(198, 163, 85, 0.3);
  padding: 5px 14px;
}
.article-summary-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  padding: 32px;
  position: relative;
}
.article-summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-light));
}
.article-summary-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-summary-card h3 i {
  color: var(--accent);
}
.article-summary-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.article-summary-card ul li {
  counter-increment: toc;
  margin-bottom: 0;
}
.article-summary-card ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease-out);
}
.article-summary-card ul li:last-child a {
  border-bottom: none;
}
.article-summary-card ul li a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 20px;
}
.article-summary-card ul li a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.article-requirements-table {
  overflow-x: auto;
  margin: 24px 0;
}
.article-author-box {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-left: 3px solid var(--accent);
}
.article-author-avatar {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-author-avatar i {
  font-size: 2rem;
  color: rgba(198, 163, 85, 0.4);
}
.article-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.article-author-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.article-author-info h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.article-author-oab {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent) !important;
  margin-bottom: 12px !important;
}
.article-author-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin: 0;
}
@media (max-width: 767px) {
  .article-meta {
    gap: 12px;
  }
  .article-meta-item {
    font-size: 0.8125rem;
  }
  .article-summary-card {
    padding: 24px;
  }
  .article-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }
}
