/* ==========================================================
   SIIM PRIME — Main CSS Design System
   Colors: #282e42 (primary/bg) | #f49222 (accent)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #282e42;
  --primary-rgb: 40, 46, 66;
  --primary-light: #333a53;
  --primary-dark: #1e2333;
  --accent: #f49222;
  --accent-rgb: 244, 146, 34;
  --accent-dark: #d4790e;
  --white: #ffffff;
  --off-white: #f5f5f7;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(40, 46, 66, 0.6);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-accent: 0 8px 32px rgba(244, 146, 34, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --nav-height: 80px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ---- Typography ---- */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
}

.heading-1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.heading-2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
}

.heading-3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
}

.text-white {
  color: var(--white);
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---- Utilities ---- */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
}

.text-center {
  text-align: center;
}

.mt-auto {
  margin-top: auto;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244, 146, 34, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1rem;
}

/* ---- Cards ---- */
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(244, 146, 34, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(244, 146, 34, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 1.4rem;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--accent);
  color: var(--white);
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0 24px;
}

.navbar.scrolled {
  background: rgba(30, 34, 50, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.navbar-logo img {
  height: 44px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  transition: color var(--transition);
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--white);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Mobile Drawer ---- */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--primary-dark);
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer a {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color var(--transition);
}

.mobile-drawer a:hover {
  color: var(--accent);
  padding-left: 8px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary-dark);
}

/* Vídeo de fundo */
.hero-video {
  position: absolute;
  inset: -10% 0 -30%;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  will-change: transform;
  pointer-events: none;
}

/* Overlay com gradiente escuro sobre o vídeo */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(20, 24, 38, 0.72) 0%,
      rgba(20, 24, 38, 0.55) 40%,
      rgba(20, 24, 38, 0.78) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(244, 146, 34, 0.10) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: calc(var(--nav-height) + 20px) 24px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 146, 34, 0.12);
  border: 1px solid rgba(244, 146, 34, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Hero Stat Cards (Glassmorphism) ---- */
.hero-stats--cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.hero-stat-card {
  position: relative;
  flex: 1;
  min-width: 240px;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(244, 146, 34, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 146, 34, 0.35);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(244, 146, 34, 0.08);
}

.hero-stat-card:hover::before {
  transform: scaleX(1);
}

.hero-stat-card:hover::after {
  opacity: 1;
}

.hero-stat-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.18) 0%, rgba(244, 146, 34, 0.06) 100%);
  border: 1.5px solid rgba(244, 146, 34, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.hero-stat-card:hover .hero-stat-card__icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  border-color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(244, 146, 34, 0.35);
}

.hero-stat-card__title {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.hero-stat-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.hero-stat-card:hover .hero-stat-card__desc {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .hero-stat-card {
    min-width: 100%;
    max-width: 100%;
    padding: 28px 24px;
  }
  
  .hero-stats--cards {
    gap: 16px;
    padding: 32px 0;
  }
  
  .hero-stat-card__icon {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
}

/* ---- Sobre Section ---- */
.sobre-section {
  position: relative;
  overflow: hidden;
}

.sobre-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(244, 146, 34, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sobre-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.sobre-header .heading-1 {
  margin-bottom: 20px;
}

.sobre-header > p {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  font-size: 1.05rem;
}

.sobre-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Left column */
.sobre-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.sobre-paragraphs p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Highlights */
.sobre-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.sobre-highlight {
  display: flex;
  gap: 18px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.08) 0%, rgba(244, 146, 34, 0.02) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 146, 34, 0.12);
  transition: var(--transition);
}

.sobre-highlight:hover {
  border-color: rgba(244, 146, 34, 0.3);
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.12) 0%, rgba(244, 146, 34, 0.04) 100%);
  transform: translateX(4px);
}

.sh-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.2) 0%, rgba(244, 146, 34, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  transition: var(--transition);
}

.sobre-highlight:hover .sh-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  transform: scale(1.05);
}

.sh-text h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.sh-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Actions */
.sobre-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right column: Feature Cards with timeline */
.sobre-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 12px;
}

.sobre-right::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 44px;
  bottom: 44px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), rgba(244, 146, 34, 0.08));
}

.sobre-feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sobre-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(244, 146, 34, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.sobre-feature-card:hover {
  transform: translateX(6px);
  border-color: rgba(244, 146, 34, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-md);
}

.sobre-feature-card:hover::before {
  opacity: 1;
}

.sfc-number {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.15) 0%, rgba(244, 146, 34, 0.05) 100%);
  border: 1.5px solid rgba(244, 146, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.sobre-feature-card:hover .sfc-number {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  border-color: var(--accent);
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(244, 146, 34, 0.3);
}

.sfc-body {
  flex: 1;
  position: relative;
  z-index: 1;
  padding-top: 10px;
}

.sfc-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.sfc-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.sobre-feature-card:hover .sfc-body p {
  color: rgba(255, 255, 255, 0.6);
}

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

  .sobre-header {
    margin-bottom: 40px;
  }

  .sobre-right::before {
    display: none;
  }
  
  .sobre-right {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .sobre-feature-card {
    padding: 20px;
  }

  .sfc-number {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }

  .sobre-highlight {
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
  }
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-indicator-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollLine 2s ease-in-out infinite;
}

/* ---- Particles ---- */
#particles-js {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* ---- Section: Diferenciais ---- */
/* ---- Diferenciais Section ---- */
.dif-section {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.dif-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(244, 146, 34, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dif-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.dif-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dif-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(244, 146, 34, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.dif-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 146, 34, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-md);
}

.dif-card:hover::before {
  transform: scaleX(1);
}

.dif-card:hover::after {
  opacity: 1;
}

.dif-card--featured {
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.1) 0%, rgba(244, 146, 34, 0.03) 100%);
  border-color: rgba(244, 146, 34, 0.2);
}

.dif-card--featured::before {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(1);
}

.dif-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(244, 146, 34, 0.15);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.dif-card:hover .dif-number {
  color: rgba(244, 146, 34, 0.25);
}

.dif-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.16) 0%, rgba(244, 146, 34, 0.05) 100%);
  border: 1px solid rgba(244, 146, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dif-card:hover .dif-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  border-color: var(--accent);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 6px 24px rgba(244, 146, 34, 0.3);
}

.dif-card--featured .dif-icon {
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.22) 0%, rgba(244, 146, 34, 0.08) 100%);
  border-color: rgba(244, 146, 34, 0.35);
}

.dif-card--featured:hover .dif-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  border-color: var(--accent);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 32px rgba(244, 146, 34, 0.4);
}

.dif-title {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.dif-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.dif-card:hover .dif-desc {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 968px) {
  .dif-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .dif-card {
    padding: 24px 20px 24px;
  }

  .dif-number {
    font-size: 2rem;
  }
}
  font-weight: 700;
  color: rgba(244, 146, 34, 0.12);
  line-height: 1;
  margin-bottom: 8px;
}

/* ---- Section: Processo ---- */
/* ---- Processo Section ---- */
.processo-section {
  position: relative;
  overflow: hidden;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.proc-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.proc-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.15) 0%, rgba(244, 146, 34, 0.05) 100%);
  border: 2px solid rgba(244, 146, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 24px;
  box-shadow: 0 0 0 4px rgba(40, 46, 66, 1), 0 0 0 5px rgba(244, 146, 34, 0.1);
}

.proc-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(244, 146, 34, 0.08);
  pointer-events: none;
}

.proc-circle__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  transition: all 0.4s ease;
  position: absolute;
}

.proc-circle__icon {
  font-size: 0;
  color: var(--accent);
  transition: all 0.4s ease;
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
}

.proc-step:hover .proc-circle {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 0 0 4px rgba(40, 46, 66, 1), 0 0 0 5px rgba(244, 146, 34, 0.2), 0 12px 40px rgba(244, 146, 34, 0.35);
}

.proc-step:hover .proc-circle__num {
  opacity: 0;
  transform: scale(0.5);
}

.proc-step:hover .proc-circle__icon {
  font-size: 1.4rem;
  opacity: 1;
  transform: scale(1);
  color: var(--white);
}

.proc-body {
  text-align: center;
  padding: 0 8px;
}

.proc-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proc-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.proc-step:hover .proc-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* Connecting line between circles */
.proc-grid {
  position: relative;
}

.proc-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(244, 146, 34, 0.15), var(--accent), rgba(244, 146, 34, 0.15), var(--accent));
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 968px) {
  .proc-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .proc-grid::before { display: none; }
  .proc-circle {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }
  .proc-circle__num { font-size: 1.1rem; }
  .proc-step:hover .proc-circle__icon { font-size: 1.2rem; }
}

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

@media (max-width: 480px) {
  .proc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .proc-step {
    flex-direction: row;
    gap: 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
  }
  .proc-circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .proc-body {
    text-align: left;
    padding: 0;
    flex: 1;
  }
}

/* ---- Section: Equipe ---- */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.team-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover {
  border-color: rgba(244, 146, 34, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-card:hover::before {
  opacity: 1;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid rgba(244, 146, 34, 0.4);
  transition: var(--transition);
}

.team-card:hover .team-avatar {
  border-color: var(--accent);
}

.team-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--white);
}

.team-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.12) 0%, transparent 100%);
  border-top: 1px solid rgba(244, 146, 34, 0.2);
  border-bottom: 1px solid rgba(244, 146, 34, 0.2);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(244, 146, 34, 0.08), transparent 70%);
  pointer-events: none;
}

/* ---- CTA Cards ---- */
.cta-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius-md);
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.cta-card:hover {
  transform: translateY(-4px);
}

/* Primary variant */
.cta-card--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: var(--shadow-accent);
  color: var(--white);
}

.cta-card--primary::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
}

.cta-card--primary:hover {
  box-shadow: 0 16px 48px rgba(244, 146, 34, 0.5);
}

.cta-card--primary:hover::before {
  opacity: 1;
}

.cta-card--primary .cta-card__icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

/* Outline variant */
.cta-card--outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 146, 34, 0.35);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.cta-card--outline::before {
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.08), transparent);
}

.cta-card--outline:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.cta-card--outline:hover::before {
  opacity: 1;
}

.cta-card--outline .cta-card__icon {
  background: rgba(244, 146, 34, 0.12);
  color: var(--accent);
}

/* Card internals */
.cta-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.cta-card__body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-card__title {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--white);
  letter-spacing: 0.01em;
}

.cta-card--outline .cta-card__title {
  color: var(--white);
}

.cta-card__desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.cta-card--primary .cta-card__desc {
  color: rgba(255, 255, 255, 0.85);
}

.cta-card__arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.cta-card:hover .cta-card__arrow {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.25);
}

.cta-card--outline .cta-card__arrow {
  background: rgba(244, 146, 34, 0.15);
  color: var(--accent);
}

.cta-card--outline:hover .cta-card__arrow {
  background: var(--accent);
  color: var(--white);
}

/* CTA Highlight phrase */
.cta-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 40px;
  padding: 16px 32px;
  max-width: 600px;
  background: rgba(244, 146, 34, 0.08);
  border: 1px solid rgba(244, 146, 34, 0.2);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.cta-highlight i {
  font-size: 0.85rem;
  opacity: 0.5;
}

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

/* ---- Footer ---- */
.footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 2px;
  min-width: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.social-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: linear-gradient(180deg, rgba(244, 146, 34, 0.06) 0%, transparent 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(244, 146, 34, 0.1);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-info-item:hover {
  border-color: rgba(244, 146, 34, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.contact-info-icon {
  min-width: 48px;
  height: 48px;
  background: rgba(244, 146, 34, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-info-value {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

/* ---- Login Page ---- */
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.login-bg {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px;
  gap: 40px;
}

.login-bg-decoration {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(244, 146, 34, 0.1) 0%, transparent 70%);
}

.login-form-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
}

.login-form-wrap {
  width: 100%;
  max-width: 420px;
}

.login-logo {
  height: 56px;
  margin-bottom: 40px;
}

.login-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.login-sub {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.login-back {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 24px;
}

.login-back a {
  color: var(--accent);
  transition: color var(--transition);
}

.login-back a:hover {
  color: var(--accent-dark);
}

.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 20px;
  display: none;
}

.alert-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.alert-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

/* ---- Processo Page ---- */
.processo-hero-bg {
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.08) 0%, transparent 60%);
}

.etapas-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

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

.etapa-item:nth-child(even) {
  direction: rtl;
}

.etapa-item:nth-child(even)>* {
  direction: ltr;
}

.etapa-visual {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.etapa-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 146, 34, 0.06) 0%, transparent 70%);
}

.etapa-big-number {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(244, 146, 34, 0.1);
  line-height: 1;
  position: relative;
}

.etapa-icon-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: var(--accent);
}

.etapa-info .etapa-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.etapa-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.etapa-info p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.etapa-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.etapa-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.etapa-feature-item i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 0.75rem;
}

/* ---- Nosso Processo - horizontal steps nav ---- */
.processo-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 6px;
  overflow-x: auto;
}

.processo-nav-item {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  text-align: center;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.processo-nav-item.active {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

/* ---- Modals ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--primary-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: var(--transition);
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.modal-footer {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ---- Document Viewer Modal ---- */
.doc-modal-box {
  max-width: 900px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.doc-preview-frame {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
}

.doc-preview-frame iframe,
.doc-preview-frame img {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

/* ---- Tab System ---- */
.tabs-header {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  overflow-x: auto;
}

.tab-btn {
  padding: 16px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  color: var(--white);
}

.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ---- Document List ---- */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.doc-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(244, 146, 34, 0.2);
}

.doc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.doc-icon.pdf {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
}

.doc-icon.img {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.doc-info {
  flex: 1;
  min-width: 0;
}

.doc-name {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.doc-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.doc-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.doc-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.doc-action-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ---- Gallery Grid ---- */
.gallery-filters {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-filter-select {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-filter-select:focus {
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(244, 146, 34, 0.1));
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 48px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.timeline-dot.completed {
  background: var(--accent);
  color: var(--white);
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: var(--transition);
  margin-top: 4px;
}

.timeline-content:hover {
  border-color: rgba(244, 146, 34, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.timeline-date {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

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

/* ---- Socio: Dashboard ---- */
.dev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.dev-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: block;
}

.dev-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 146, 34, 0.3);
  box-shadow: var(--shadow-md);
}

.dev-card-img {
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.dev-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dev-card:hover .dev-card-img img {
  transform: scale(1.06);
}

.dev-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 2.5rem;
}

.dev-card-body {
  padding: 24px;
}

.dev-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.dev-status.execucao {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.dev-status.planejamento {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.dev-status.comercializacao {
  background: rgba(244, 146, 34, 0.12);
  color: var(--accent);
}

.dev-status.concluido {
  background: rgba(139, 92, 246, 0.12);
  color: #c4b5fd;
}

.dev-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.dev-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---- Member Topbar ---- */
.member-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(30, 34, 50, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 32px;
}

.member-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.member-logo {
  height: 36px;
}

.member-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(244, 146, 34, 0.4);
}

.member-avatar-initials {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.member-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.member-page {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

.member-content {
  padding: 48px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- Empty states ---- */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

.empty-state-text {
  font-size: 0.9rem;
}

/* ---- Loading ---- */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  gap: 12px;
  color: var(--text-muted);
}

.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ---- Animations ---- */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ---- Scroll Reveal — CSS driven, IntersectionObserver controlled ---- */
/* By default elements are VISIBLE. JS adds .js-reveal-ready to body, then hides them */
.js-reveal-ready .reveal,
.js-reveal-ready .reveal-left,
.js-reveal-ready .reveal-right,
.js-reveal-ready .reveal-scale {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-reveal-ready .reveal {
  transform: translateY(40px);
}

.js-reveal-ready .reveal-left {
  transform: translateX(-50px);
}

.js-reveal-ready .reveal-right {
  transform: translateX(50px);
}

.js-reveal-ready .reveal-scale {
  transform: scale(0.92);
}

/* When visible — all reveal classes become fully shown */
.js-reveal-ready .reveal.is-visible,
.js-reveal-ready .reveal-left.is-visible,
.js-reveal-ready .reveal-right.is-visible,
.js-reveal-ready .reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

/* ---- Badge / Tags ---- */
.badge-accent {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(244, 146, 34, 0.15);
  border: 1px solid rgba(244, 146, 34, 0.3);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.breadcrumb a {
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb i {
  font-size: 0.6rem;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(244, 146, 34, 0.4);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}


/* ---- Seção: Empreendimentos (público) ---- */
.empreendimentos-section {
  background: rgba(255, 255, 255, 0.02);
}

.emp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

/* Card = link clicável */
.emp-card {
  display: block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.emp-card:hover {
  border-color: rgba(244, 146, 34, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* Imagem de capa */
.emp-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--primary-light);
}

.emp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.emp-card:hover .emp-card-img img {
  transform: scale(1.07);
}

.emp-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 3.5rem;
  color: rgba(244, 146, 34, 0.2);
}

/* Overlay escuro na imagem */
.emp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 24, 38, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

/* Badge de status */
.emp-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.emp-badge--planejamento {
  background: rgba(96, 165, 250, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #93c5fd;
}

.emp-badge--execucao {
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #86efac;
}

.emp-badge--comercializacao {
  background: rgba(244, 146, 34, 0.15);
  border: 1px solid rgba(244, 146, 34, 0.4);
  color: var(--accent);
}

.emp-badge--concluido {
  background: rgba(196, 181, 253, 0.15);
  border: 1px solid rgba(196, 181, 253, 0.4);
  color: #c4b5fd;
}

/* Corpo do card */
.emp-card-body {
  padding: 24px 28px;
}

.emp-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.emp-location i {
  font-size: 0.7rem;
}

.emp-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.emp-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.emp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.emp-year {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.emp-year i {
  color: var(--accent);
}

.emp-cta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.emp-card:hover .emp-cta {
  gap: 10px;
}

/* Estado vazio */
.emp-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.emp-empty i {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  opacity: 0.3;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .proc-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proc-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .etapa-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .etapa-item:nth-child(even) {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .login-page {
    grid-template-columns: 1fr;
  }

  .login-bg {
    display: none;
  }

  .login-form-section {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {

  .navbar-nav,
  .navbar-cta {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .mobile-drawer {
    display: flex;
  }

  .hero-stats {
    gap: 24px;
  }

  .proc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .equipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .section {
    padding: 64px 0;
  }

  .tab-btn {
    padding: 12px 16px;
    font-size: 0.8rem;
  }

  .member-content {
    padding: 32px 16px;
  }
}

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

  .equipe-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .socio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ================================================================
   ÁREA DO SÓCIO — Dashboard de Empreendimentos
   ================================================================ */

/* Cabeçalho da seção */
.socio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 24px;
}

.socio-header h1 {
  margin-bottom: 6px;
}

.socio-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.socio-header-meta {
  display: flex;
  gap: 32px;
}

.socio-meta-item {
  text-align: center;
  background: rgba(244, 146, 34, 0.08);
  border: 1px solid rgba(244, 146, 34, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  min-width: 100px;
}

.socio-meta-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.socio-meta-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Grid de cards */
.socio-dev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

/* Card */
.socio-dev-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  cursor: pointer;
}

.socio-dev-card:hover {
  border-color: rgba(244, 146, 34, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

/* Imagem do card */
.socio-dev-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--primary-light);
  flex-shrink: 0;
}

.socio-dev-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.socio-dev-card:hover .socio-dev-img img {
  transform: scale(1.06);
}

.socio-dev-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 3rem;
  color: rgba(244, 146, 34, 0.25);
}

/* Gradiente suave — apenas na borda inferior para não escurecer a imagem */
.socio-dev-img-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(20, 24, 38, 0.6) 0%, transparent 100%);
  pointer-events: none;
}

/* Badge de status (sobre a imagem) */
.socio-dev-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  backdrop-filter: blur(10px);
}

.socio-dev-badge--planejamento {
  background: rgba(96, 165, 250, 0.22);
  border: 1px solid rgba(96, 165, 250, 0.5);
  color: #93c5fd;
}

.socio-dev-badge--execucao {
  background: rgba(74, 222, 128, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.5);
  color: #86efac;
}

.socio-dev-badge--comercializacao {
  background: rgba(244, 146, 34, 0.18);
  border: 1px solid rgba(244, 146, 34, 0.5);
  color: var(--accent);
}

.socio-dev-badge--concluido {
  background: rgba(196, 181, 253, 0.18);
  border: 1px solid rgba(196, 181, 253, 0.5);
  color: #c4b5fd;
}

/* Corpo do card */
.socio-dev-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.socio-dev-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.socio-dev-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.socio-dev-location i {
  color: var(--accent);
  font-size: 0.7rem;
}

.socio-dev-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

/* Rodapé do card */
.socio-dev-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.socio-dev-vgv {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.socio-dev-vgv-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.socio-dev-vgv-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

.socio-dev-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(244, 146, 34, 0.12);
  border: 1px solid rgba(244, 146, 34, 0.25);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.socio-dev-card:hover .socio-dev-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  gap: 10px;
}

/* Animações CSS nativas para a página sócio */
@keyframes socioCardIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.socio-dev-card {
  animation: socioCardIn 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.socio-dev-card:nth-child(1) { animation-delay: 0.10s; }
.socio-dev-card:nth-child(2) { animation-delay: 0.22s; }
.socio-dev-card:nth-child(3) { animation-delay: 0.34s; }
.socio-dev-card:nth-child(4) { animation-delay: 0.44s; }
.socio-dev-card:nth-child(5) { animation-delay: 0.52s; }
.socio-dev-card:nth-child(6) { animation-delay: 0.60s; }

@keyframes socioHeaderIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.socio-header {
  animation: socioHeaderIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.05s both;
}

/* Ampliar member-content para telas grandes */
.member-content {
  padding: 48px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ================================================================
   STATUS BADGE (dev-status) — usado no detalhe do empreendimento
   ================================================================ */
.dev-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.dev-status.planejamento {
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #93c5fd;
}

.dev-status.execucao {
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #86efac;
}

.dev-status.comercializacao {
  background: rgba(244, 146, 34, 0.12);
  border: 1px solid rgba(244, 146, 34, 0.35);
  color: var(--accent);
}

.dev-status.concluido {
  background: rgba(196, 181, 253, 0.12);
  border: 1px solid rgba(196, 181, 253, 0.35);
  color: #c4b5fd;
}

/* ================================================================
   TABS — cabeçalho de abas da página de empreendimento
   ================================================================ */
.tabs-header {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-btn {
  padding: 14px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.tab-btn:hover {
  color: var(--white);
}

.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: tabFadeIn 0.3s ease both;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ================================================================
   DOC LIST — Contratos e Financeiro
   ================================================================ */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.doc-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(244, 146, 34, 0.25);
}

.doc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.doc-icon.pdf {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
}

.doc-icon.img {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.doc-info {
  flex: 1;
  min-width: 0;
}

.doc-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.doc-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.doc-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.doc-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
}

.doc-action-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ================================================================
   GALLERY — Evolução da Obra
   ================================================================ */
.gallery-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.gallery-filter-select {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}

.gallery-filter-select:focus {
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ================================================================
   TIMELINE — Atualização
   ================================================================ */
.timeline {
  position: relative;
  padding: 8px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(244, 146, 34, 0.08));
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-dot.completed {
  background: var(--accent);
  color: var(--white);
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 4px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: rgba(244, 146, 34, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.timeline-date {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

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

/* ================================================================
   LOADING SPINNER
   ================================================================ */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.spinner {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ================================================================
   EMPTY STATE
   ================================================================ */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}

.empty-state-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  opacity: 0.35;
}

.empty-state-text {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ================================================================
   MODAL — Preview de documentos e lightbox
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--primary-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 560px;
  transform: scale(0.95) translateY(20px);
  transition: var(--transition);
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.doc-modal-box {
  max-width: 90vw;
  max-height: 90vh;
  height: 80vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.doc-preview-frame {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
}

.doc-preview-frame iframe,
.doc-preview-frame img {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

/* ================================================================
   BADGE ACCENT
   ================================================================ */
.badge-accent {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(244, 146, 34, 0.14);
  border: 1px solid rgba(244, 146, 34, 0.3);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.breadcrumb a {
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb i {
  font-size: 0.55rem;
}

/* ================================================================
   NOTIFICATION SYSTEM
   ================================================================ */

/* Bell button */
.notif-bell-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}

.notif-bell-btn:hover {
  background: rgba(244, 146, 34, 0.15);
  border-color: rgba(244, 146, 34, 0.4);
  color: var(--accent);
}

/* Unread badge */
.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50px;
  background: #e74c3c;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  line-height: 1;
  animation: notifPop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes notifPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Overlay behind panel */
.notif-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: transparent;
}

/* Slide-in panel */
.notif-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 95vw;
  height: 100vh;
  z-index: 1200;
  background: #1e2233;
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
  flex-direction: column;
  animation: panelSlideIn 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes panelSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}

.notif-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.notif-panel-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.notif-panel-title i {
  color: var(--accent);
}

.notif-read-all {
  font-size: 0.75rem;
  color: var(--accent);
  background: rgba(244, 146, 34, 0.08);
  border: 1px solid rgba(244, 146, 34, 0.2);
  border-radius: 50px;
  padding: 5px 12px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.notif-read-all:hover {
  background: rgba(244, 146, 34, 0.2);
}

.notif-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.notif-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Notifications list */
.notif-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.08) transparent;
}

.notif-list::-webkit-scrollbar { width: 4px; }
.notif-list::-webkit-scrollbar-track { background: transparent; }
.notif-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }

/* Individual notification row */
.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
}

.notif-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.notif-item.unread {
  background: rgba(244, 146, 34, 0.04);
}

.notif-item.unread:hover {
  background: rgba(244, 146, 34, 0.07);
}

/* Type icon */
.notif-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Content area */
.notif-content {
  flex: 1;
  min-width: 0;
}

.notif-dev {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 3px;
}

.notif-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-msg {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notif-date {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-top: 5px;
}

/* Unread dot */
.notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Loading/Empty states */
.notif-loading,
.notif-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.notif-loading i { font-size: 1.4rem; color: var(--accent); }
.notif-empty i   { font-size: 2rem; color: rgba(255,255,255,0.12); }