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

body.menu-open {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) #f5f5f5;
}
html::-webkit-scrollbar {
  width: 8px;
}
html::-webkit-scrollbar-track {
  background: #f5f5f5;
}
html::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== Header ===== */
.header-moderno {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(var(--color-primary-rgb), 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.header-moderno.scrolled {
  background: rgba(var(--color-primary-rgb), 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.nav-moderno {
  padding: 1rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo .logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}
.nav-logo .logo-img:hover {
  transform: scale(1.1);
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}
.nav-link:hover {
  color: #f8f9fa;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e5e5e5;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.btn-login {
  background: transparent;
  color: white;
  border: 2px solid #e5e5e5;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-portal {
  background: transparent;
  color: #f5a623;
  border: 2px solid #ffe8c5;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-login:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}
.btn-portal:hover {
  background: var(--color-primary);
  color: #f5a623;
  transform: translateY(-2px);
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
}
.nav-mobile-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  transform-origin: center;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  .nav-container {
    padding: 0 1rem;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(var(--color-primary-rgb), 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-mobile-toggle {
    display: flex;
    position: relative;
    z-index: 1000;
  }
  .nav-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  .nav-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .nav-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  .nav-menu.active .nav-item {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-menu.active .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu.active .nav-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-menu.active .nav-item:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-menu.active .nav-item:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 1rem 2rem;
    display: block;
    text-align: center;
    border-radius: 8px;
  }
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
  }
  .nav-link::after {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
    gap: 10px;
    margin-right: 1rem;
  }
  .btn-login,
  .btn-portal {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* ===== Fase 1: Hero ===== */
.dir-hero {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  padding: 3rem 0 2.5rem;
}

.dir-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.dir-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.dir-breadcrumb a:hover {
  color: #fff;
}
.breadcrumb-sep {
  font-size: 0.7rem;
  opacity: 0.6;
}

.dir-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.dir-hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.dir-hero-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.dir-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.dir-stat-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.dir-stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
}
.dir-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.3);
}

/* ===== Fase 2: Toolbar + Tabs ===== */
.dir-toolbar-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0 0;
  position: sticky;
  top: 72px;
  z-index: 50;
}

.dir-toolbar {
  margin-bottom: 1rem;
}

.dir-search {
  position: relative;
  max-width: 420px;
}
.dir-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  font-size: 0.9rem;
}
.dir-search input {
  width: 100%;
  padding: 0.6rem 0.75rem 0.6rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  background: var(--muted);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.dir-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
  background: #fff;
}

.dir-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.dir-tabs::-webkit-scrollbar {
  display: none;
}

.dir-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-foreground);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.dir-tab:hover {
  color: var(--foreground);
}
.dir-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

.tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--muted);
  color: var(--muted-foreground);
}
.dir-tab.active .tab-badge {
  background: rgba(var(--color-primary-rgb), 0.12);
  color: var(--primary);
}

/* ===== Content ===== */
.dir-content {
  padding: 2rem 0 1rem;
}

/* Section titles */
.dir-section {
  margin-bottom: 2rem;
}
.dir-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--foreground);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.25rem;
}
.dir-section-title i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Cards grid */
.dir-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

/* ===== Fase 3: Presidente Destaque ===== */
.dir-presidente-destaque {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all var(--transition-base);
}
.dir-presidente-destaque:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.destaque-photo-col {
  flex-shrink: 0;
}
.destaque-photo-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.destaque-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.destaque-icon {
  font-size: 60px;
  color: var(--primary);
}

.destaque-info {
  flex: 1;
}
.destaque-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(var(--color-primary-rgb), 0.12);
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.destaque-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--foreground);
}
.destaque-quote {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.destaque-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-dir {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}
.btn-dir-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-dir-outline:hover {
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--primary);
}

/* ===== Fase 4: Card Variants ===== */
.dir-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.dir-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Photo */
.card-photo-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}
.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.card-icon {
  font-size: 40px;
  color: var(--primary);
}

/* Info */
.card-info {
  flex: 1;
  text-align: center;
}
.card-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--foreground);
}
.card-role {
  display: block;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}
.card-members {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.3rem;
}
.card-members i,
.card-role i {
  margin-right: 0.2rem;
  font-size: 0.8rem;
}

/* Card type badge */
.card-type-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.badge-ministerio {
  background: #e8f5e9;
  color: #2e7d32;
}
.badge-rede {
  background: #e3f2fd;
  color: #1565c0;
}

/* Logo badge (top-right) */
.card-logo-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.card-logo-icon {
  font-size: 20px;
  color: var(--primary);
}

/* Footer actions (pessoa cards only) */
.card-footer-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(var(--color-primary-rgb), 0.08);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.card-action:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== Skeleton Loaders ===== */
.dir-skeletons {
  padding: 0;
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}

.skeleton-destaque {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.skeleton-avatar-lg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 400px 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 400px 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.skeleton-line {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 400px 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-line.w-25 {
  width: 25%;
}
.skeleton-line.w-40 {
  width: 40%;
}
.skeleton-line.w-50 {
  width: 50%;
}
.skeleton-line.w-60 {
  width: 60%;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.skeleton-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

/* ===== No Results ===== */
.dir-no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted-foreground);
}
.dir-no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.4;
}
.dir-no-results h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

/* ===== Fase 5: CTA Bar ===== */
.dir-cta-bar {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 3rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text {
  color: #fff;
}
.cta-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}
.cta-text p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  border: none;
}
.cta-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary);
}

/* ===== Scroll Reveal ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Utility ===== */
.text-primary {
  color: var(--primary) !important;
}

/* ===== Floating Actions ===== */
.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-base);
}
.floating-actions.hidden {
  transform: translateX(150%);
  opacity: 0;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  text-decoration: none;
}
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.floating-btn-whatsapp {
  background: #25d366;
  animation: pulse-wa 2s ease-in-out infinite;
}
.floating-btn-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #f77737 100%);
  animation: pulse-ig 2.5s ease-in-out infinite;
}
.floating-btn-youtube {
  background: #ff0000;
  animation: pulse-yt 3s ease-in-out infinite;
}
@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
  }
}
@keyframes pulse-ig {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(131, 58, 180, 0.6);
  }
}
@keyframes pulse-yt {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(253, 29, 29, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(253, 29, 29, 0.6);
  }
}
.floating-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  text-decoration: none;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ===== Footer ===== */
.footer {
  background: var(--foreground);
  color: var(--background);
  padding: 4rem 1rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: background var(--transition-base);
}
.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-base);
}
.footer-links a:hover {
  color: white;
}
.footer-contact {
  list-style: none;
}
.footer-contact li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copyright-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.4;
}
.footer-logo-right {
  display: flex;
  align-items: center;
}
.footer-mtco-logo-small {
  height: 20px;
  width: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer-mtco-logo-small:hover {
  opacity: 1;
}
.mtco-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.mtco-link:hover {
  transform: scale(1.05);
}
.footer-col {
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}
.footer-col h5 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 18px;
}
.footer-col ul.nav-flex-column li {
  margin-bottom: 8px;
}
.footer-col a.text-body-secondary:hover {
  color: #fff !important;
}
.footer-logo {
  max-height: 50px;
  width: auto;
  margin-right: 10px;
}
.footer-mtco-logo {
  height: 20px;
  width: auto;
  margin-right: 8px;
}
.footer-social-container {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}
.footer-social-container a {
  display: block;
  transition: transform 0.3s ease;
  color: #fff !important;
}
.footer-social-container a:hover {
  transform: scale(1.1);
}
.f_area_icone_item {
  font-size: 18px;
  color: #fff;
  min-width: 24px;
  text-align: center;
  margin-top: 2px;
}
.footer-copyright {
  padding: 15px 0;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .dir-presidente-destaque {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .destaque-actions {
    justify-content: center;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .dir-hero {
    padding: 2rem 0 1.75rem;
  }
  .dir-hero-title {
    font-size: 1.5rem;
  }
  .dir-hero-stats {
    gap: 0.75rem;
  }
  .dir-stat-num {
    font-size: 1.5rem;
  }
  .dir-stat-label {
    font-size: 0.75rem;
  }
  .dir-stat-divider {
    height: 20px;
  }
  .dir-toolbar-section {
    top: 70px;
  }
  .dir-search {
    max-width: 100%;
  }
  .dir-tabs {
    gap: 0;
  }
  .dir-tab {
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
  }
  .dir-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
  }
  .destaque-photo-wrapper {
    width: 90px;
    height: 90px;
  }
  .destaque-name {
    font-size: 1.2rem;
  }
  .skeleton-destaque {
    flex-direction: column;
  }
  .skeleton-avatar-lg {
    width: 90px;
    height: 90px;
  }
  .floating-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-logo-right {
    justify-content: center;
  }
  .footer-mtco-logo-small {
    height: 18px;
  }
  .footer-col {
    flex: 0 0 100%;
    min-width: 100%;
    text-align: center;
    padding: 15px 10px;
  }
  .footer-social-container {
    justify-content: center;
    margin: 15px 0;
  }
  .footer-copyright {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 15px 10px;
    margin-top: 20px;
  }
  .footer-logo {
    max-height: 35px;
    margin-right: 8px;
  }
}

@media (max-width: 480px) {
  .dir-hero-title {
    font-size: 1.25rem;
  }
  .dir-hero-subtitle {
    font-size: 0.9rem;
  }
  .dir-hero-stats {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .dir-stat-divider {
    display: none;
  }
  .dir-stat {
    flex: 0 0 calc(50% - 0.5rem);
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
  }
  .dir-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-photo-wrap {
    width: 60px;
    height: 60px;
  }
  .card-icon {
    font-size: 30px;
  }
  .card-name {
    font-size: 0.85rem;
  }
  .card-role {
    font-size: 0.75rem;
  }
  .cta-text h3 {
    font-size: 1.2rem;
  }
  .footer-copyright-text {
    font-size: 0.8rem;
  }
  .footer-mtco-logo-small {
    height: 16px;
  }
}

/* ===== VLibras ===== */
.vw-plugin-top-wrapper {
  z-index: 10000;
}
@media (max-width: 768px) {
  .vw-plugin-top-wrapper {
    bottom: 70px !important;
  }
}

@media (hover: none) {
  .footer-social-container a:hover {
    transform: none;
  }
}
