/* ========================================
   SISTEMA DE DESIGN - VARIÁVEIS CSS
   ======================================== */

:root {
  /* Cores Principais - Tema Sindicato Moderno */
  --background: 210 20% 8%;
  --foreground: 210 15% 95%;
  --card: 210 20% 9%;
  --card-foreground: 210 15% 95%;
  --popover: 210 20% 9%;
  --popover-foreground: 210 15% 95%;
  --primary: 357 82% 42%;
  --primary-foreground: 210 15% 95%;
  --secondary: 210 15% 15%;
  --secondary-foreground: 210 15% 95%;
  --muted: 210 15% 12%;
  --muted-foreground: 210 10% 65%;
  --accent: 357 82% 42%;
  --accent-foreground: 210 15% 95%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 15% 95%;
  --border: 210 15% 18%;
  --input: 210 15% 15%;
  --ring: 357 82% 42%;
  --radius: 1rem;

  /* Cores Específicas do Sindicato */
  --union-red: 357 82% 42%;
  --union-red-light: 357 82% 52%;
  --union-dark: 210 20% 6%;
  --union-darker: 210 25% 4%;
  --union-gray: 210 10% 20%;

  /* Cores do WhatsApp */
  --whatsapp-color: #0f993e;
  --whatsapp-color-light: 164 84% 45%;
  --predominant-tone-10-percent: 0 0% 100%;

  /* Gradientes */
  --gradient-primary: linear-gradient(
    135deg,
    hsl(var(--union-red)),
    hsl(var(--union-red-light))
  );
  --gradient-bg: linear-gradient(
    135deg,
    hsl(var(--union-dark)),
    hsl(var(--union-darker))
  );
  --gradient-card: linear-gradient(145deg, hsl(var(--card)), hsl(var(--muted)));

  /* Sombras */
  --shadow-glow: 0 0 40px hsl(var(--union-red) / 0.3);
  --shadow-card: 0 10px 30px -10px hsl(var(--union-darker) / 0.5);
  --shadow-lg: 0 15px 30px -10px hsl(var(--union-darker) / 0.7);

  /* Transições */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Tema Claro (não utilizado atualmente) */
.light {
  --background: 0 0% 100%;
  --foreground: 0 0% 100%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 100%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 100%;
  --primary: 357 82% 42%;
  --primary-foreground: 0 0% 100%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 0 0% 100%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 0 0% 100%;
  --accent: 357 82% 42%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 357 82% 42%;
  --union-red: 357 82% 42%;
  --union-red-light: 357 82% 52%;
  --whatsapp-color: 164 84% 35%;
  --whatsapp-color-light: 164 84% 45%;
  --predominant-tone-10-percent: 0 0% 100%;
  --gradient-primary: linear-gradient(
    135deg,
    hsl(var(--union-red)),
    hsl(var(--union-red-light))
  );
}

/* ========================================
   ESTILOS BASE
   ======================================== */

* {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

/* Texto em negrito destacado */
strong {
  color: hsl(var(--primary)) !important;
  font-weight: 600;
}

/* Forçar texto branco para todos os elementos exceto gradient e strong */
*:not(.gradient-text):not(strong):not(h4):not(i):not(h3):not(h1):not(h2):not(
    span
  ) {
  color: hsl(var(--foreground)) !important;
}

/* Texto com gradiente */
.gradient-text {
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  display: inline-block !important;
}

/* Estilos do corpo da página */
body {
  background: var(--gradient-bg);
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ========================================
   CLASSES UTILITÁRIAS
   ======================================== */

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.hidden {
  display: none !important;
}

/* ========================================
   ELEMENTOS DE FUNDO E PARTÍCULAS
   ======================================== */

/* Container de partículas animadas */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: hsl(var(--primary));
  border-radius: 50%;
  opacity: 0;
}

/* Elipses de canto para profundidade */
.corner-ellipse {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  opacity: 0.2;
  background: radial-gradient(
    circle,
    hsl(var(--primary) / 0.3),
    transparent 70%
  );
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.corner-ellipse-left {
  left: -6rem;
  top: 5rem;
}

.corner-ellipse-right {
  right: -6rem;
  bottom: 5rem;
}

/* Elipses de fundo */
.bg-ellipse {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

.bg-ellipse-1 {
  width: 600px;
  height: 800px;
  background: hsl(var(--union-red-light));
  top: 180%;
  right: -20%;
  z-index: -1;
}

.bg-ellipse-2 {
  width: 300px;
  height: 300px;
  background: hsl(var(--union-red-light));
  bottom: -30%;
  right: 0;
  z-index: -1;
  opacity: 1;
}

.bg-ellipse-3 {
  width: 2000px;
  height: 100%;
  background: hsl(var(--union-red));
  filter: blur(800px);
  top: 0%;
  left: 10%;
  transform: translate(-50%, -50%);
}

.bg-ellipse-4 {
  width: 500px;
  height: 600px;
  object-fit: contain;
  background: hsl(var(--union-red-light));
  bottom: 60%;
  left: -20%;
  z-index: -1;
  filter: blur(150px);
}

.bg-ellipse-5 {
  width: 500px;
  height: 600px;
  background: hsl(var(--union-red-light));
  bottom: 80%;
  right: -22%;
  z-index: -5;
}

.bg-ellipse-6 {
  width: 300px;
  height: 300px;
  background: hsl(var(--union-red-light));
  bottom: 20%;
  right: 13%;
  z-index: -1;
}

/* Responsividade das elipses */
@media (max-width: 1285px) {
  .bg-ellipse-5 {
    width: 150px;
    height: 500px;
    right: 0%;
    opacity: 1;
    bottom: 90%;
    filter: blur(120px);
  }
}

@media (max-width: 768px) {
  .bg-ellipse-5 {
    bottom: 95%;
  }
}

@media (max-width: 480px) {
  .bg-ellipse-4 {
    width: 300px;
    height: 450px;
    bottom: 82%;
    left: -30%;
    filter: blur(100px);
  }
}

@media (min-width: 1920px) {
  .bg-ellipse-4 {
    left: -7%;
  }
  .bg-ellipse-1 {
    right: -7%;
  }
  .bg-ellipse-5 {
    right: -7%;
  }
}

@media (min-width: 1400px) {
  .bg-ellipse-3 {
    filter: blur(300px);
  }
}

/* Efeitos de brilho */
.glow-red {
  box-shadow: var(--shadow-glow);
}

/* Tamanho do ícone para "Seja um Associado" */
.hero-cta .btn-primary .icon,
.hero-cta .btn-primary .icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ========================================
   ESTILOS DOS BOTÕES
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn .icon {
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  flex-shrink: 0;
}

/* Variantes de botões */
.btn-primary {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.btn-primary:hover {
  transform: scale(1.06);
  transition: 0.25s;
  color: hsl(var(--gradient-primary));
  box-shadow: 0 4px 15px hsl(var(--primary) / 0.3);
  transition: all 0.5s ease;
}

/* Estilo WhatsApp para botões com ícone WhatsApp */
.btn-primary .fa-whatsapp ~ *,
.btn-primary:has(.fa-whatsapp) {
  border-radius: 10px;
  transition: all 0.5s ease;
}

.btn-primary:has(.fa-whatsapp):hover {
  background-color: transparent;
  transform: scale(1.06);
  transition: 0.25s;
  box-shadow: 0 4px 15px hsl(var(--primary) / 0.3);
  transition: all 0.5s ease;
}

.btn-outline {
  border: 1px solid hsl(var(--primary));
  background: transparent;
  color: hsl(var(--primary));
}

.btn-outline:hover {
  transform: scale(1.06);
  transition: 0.25s;
  color: hsl(var(--gradient-primary));
  box-shadow: 0 4px 15px hsl(var(--primary) / 0.3);
  border: solid 0.15rem hsl(var(--primary));
  transition: all 0.5s ease;
}

/* Estilo WhatsApp para botões outline com ícone WhatsApp */
.btn-outline:has(.fa-whatsapp):hover {
  background-color: transparent;
  transform: scale(1.06);
  transition: 0.25s;
  color: hsl(var(--gradient-primary));
  box-shadow: 0 4px 15px hsl(var(--primary) / 0.3);
  border: solid 0.15rem hsl(var(--primary));
  transition: all 0.5s ease;
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
}

.btn-ghost:hover {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

/* Tamanhos de botões */
.btn-sm {
  height: 2.25rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
}

.btn-lg {
  height: 2.75rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn-large {
  height: 3rem;
  padding: 0 2rem;
  font-size: 1.125rem;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes particles {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px hsl(var(--union-red) / 0.5);
  }
  50% {
    box-shadow: 0 0 40px hsl(var(--union-red) / 0.8);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Classes de animação */
.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-particles {
  animation: particles linear infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Elementos flutuantes para profundidade */
.floating-element {
  position: absolute;
  background: hsl(var(--primary));
  border-radius: 50%;
  opacity: 0;
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  top: 25%;
  left: 25%;
  width: 8px;
  height: 8px;
  opacity: 0.3;
  animation-delay: 2s;
}

.floating-element-2 {
  top: 75%;
  right: 25%;
  width: 12px;
  height: 12px;
  opacity: 0.2;
  animation-delay: 4s;
}

.floating-element-3 {
  top: 50%;
  left: 75%;
  width: 4px;
  height: 4px;
  opacity: 0.4;
  animation-delay: 6s;
}

/* ========================================
   ESTILOS DE SEÇÃO
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 9999px;
}

.section-badge .icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Padding comum das seções */
.hero-section,
.about-section,
.benefits-section,
.video-section,
.cta-section,
.contact-section {
  padding: 5rem 1rem;
  position: relative;
}

.president-section {
  padding: 5rem 1rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .hero-section,
  .about-section,
  .benefits-section,
  .video-section,
  .cta-section,
  .contact-section {
    padding: 5rem 1.5rem;
  }

  .president-section {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section,
  .about-section,
  .benefits-section,
  .video-section,
  .cta-section,
  .contact-section {
    padding: 5rem 2rem;
  }

  .president-section {
    padding: 5rem 2rem;
  }
}

/* ========================================
   HEADER E NAVEGAÇÃO
   ======================================== */

.header {
  width: 100%;
  padding: 20px 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2rem;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

/* Menu Desktop */
.nav__menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav__item {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.4s ease;
  position: relative;
  font-size: 1rem;
  padding: 0.2rem 0.75rem;
  border-radius: 0.375rem;
}

.nav__item::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: hsl(var(--foreground));
  transition: width 0.4s ease, left 0.4s ease;
}

.nav__item:hover {
  color: hsl(var(--foreground));
}

.nav__item:hover::after {
  width: 80%;
  left: 10%;
  transform: translateX(0);
}

.nav__buttons {
  display: flex;
  gap: 20px;
}

/* Ícone Hambúrguer/X */
.mobile-menu-icon {
  display: none; /* Escondido em telas grandes */
}

.mobile-menu-icon button {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

/* As 3 linhas do ícone hambúrguer */
.mobile-menu-icon .line {
  width: 100%;
  height: 3px;
  background-color: hsl(var(--foreground));
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-icon .line-1 {
  top: 0;
}

.mobile-menu-icon .line-2 {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-icon .line-3 {
  bottom: 0;
}

/* Animação Hambúrguer → X */
.header.menu-open .line-1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header.menu-open .line-2 {
  opacity: 0;
}

.header.menu-open .line-3 {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Menu Mobile */
.nav__mobile {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(16px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  padding: 0 2rem;
  display: none;
  z-index: 2;
}

/* Classe que o JavaScript adiciona para abrir */
.nav__mobile.open {
  max-height: 450px;
  border-top: none;
}

.nav__mobile-items {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.nav__mobile .nav__item {
  padding: 1rem 0;
  width: 100%;
}

.nav__mobile .nav__buttons {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  gap: 1rem;
}

/* Media Queries para Responsividade */
@media screen and (max-width: 960px) {
  /* Esconde menus desktop */
  .nav__menu,
  .nav > .nav__buttons {
    display: none;
  }

  /* Mostra menu mobile */
  .nav__mobile {
    display: block;
  }

  /* Mostra ícone hambúrguer */
  .mobile-menu-icon {
    display: block;
  }
}

/* Estilos dos botões no menu mobile */
.nav__mobile .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Estilos do Logo */
.nav__logo {
  flex-shrink: 0;
  min-width: 120px;
}

.nav__logo-image {
  width: 120px;
  height: auto;
  max-width: 100%;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.nav__logo-image:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

@media (max-width: 480px) {
  .nav__logo {
    min-width: 80px;
    max-width: 80px;
  }

  .nav__logo-image {
    width: 80px;
  }
}

/* ========================================
   SEÇÃO HERO
   ======================================== */

.hero-section {
  padding: 6rem 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-section {
    padding: 7rem 1.5rem 5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 8rem 2rem 6rem;
  }
}

.hero-content {
  position: relative;
  z-index: 15;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.hero-content-inner {
  animation: fade-in 0.6s ease-out;
  position: relative;
  z-index: 20;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 500;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 9999px;
  color: hsl(var(--primary));
  position: relative;
  z-index: 15;
}

.hero-badge .icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  color: hsl(var(--primary));
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.title-line {
  position: relative;
  z-index: 1;
  padding: 8px 0px;
}

.title-subtitle {
  display: block;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  position: relative;
  z-index: 15;
}

@media (min-width: 768px) {
  .title-subtitle {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .title-subtitle {
    font-size: 2.25rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 15;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.highlight-text {
  display: block;
  margin-top: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 500;
  position: relative;
  z-index: 15;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 15;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  z-index: 15;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 15;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 15;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

.stat-label {
  color: hsl(var(--foreground) / 0.6);
  position: relative;
  z-index: 15;
}

.scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-float 3s ease-in-out infinite;
  cursor: pointer;
  z-index: 25;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background: hsl(var(--primary));
  border-radius: 9999px;
  margin-top: 0.5rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  position: relative;
  z-index: 25;
}

@keyframes scroll-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ========================================
   SEÇÃO SOBRE
   ======================================== */

.about-section {
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.about-content {
  display: grid;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
  position: relative;
  z-index: 15;
}

.about-description {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 15;
}

/* Elementos strong em seções específicas */
.about-description strong,
.president-message strong,
.message-description strong {
  color: hsl(var(--primary)) !important;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 15;
}

@media (min-width: 640px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 15;
}

.feature-card:hover {
  background: hsl(var(--card) / 0.7);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  position: relative;
  z-index: 15;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  z-index: 15;
  margin-bottom: 0.5rem;
  color: hsl(var(--primary)) !important;
}

.feature-description {
  font-size: 0.875rem;
  position: relative;
  z-index: 15;
}

/* Seção de Direitos */
.rights-section {
  background: var(--gradient-card);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  z-index: 10;
  overflow: visible;
}

@media (min-width: 768px) {
  .rights-section {
    padding: 3rem;
  }
}

.rights-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 20;
  overflow: visible;
}

@media (max-width: 768px) {
  .rights-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .scroll-indicator {
    display: none;
  }
}

@media (min-width: 1024px) {
  .rights-content {
    grid-template-columns: 1fr 1fr;
  }
}

.rights-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 15;
}

.rights-description {
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 15;
}

.rights-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 15;
}

.right-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 15;
}

.right-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  position: relative;
  z-index: 15;
}

.rights-visual {
  text-align: center;
  position: relative;
  z-index: 15;
  overflow: visible;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rights-icon-container {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 15;
  transition: var(--transition-smooth);
  transform: scale(1);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  overflow: hidden;
}

.rights-icon-container:hover {
  transform: scale(1.06);
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .rights-icon-container {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .rights-icon-container {
    width: 200px;
    height: 200px;
  }
}

.rights-imgae {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.rights-visual-icon {
  width: 4rem;
  height: 4rem;
  color: hsl(var(--primary));
  position: relative;
  z-index: 15;
}

.rights-visual-text {
  line-height: 1.7;
  position: relative;
  z-index: 15;
}

/* Elementos visuais da seção About */
.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-image-container {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.about-image-container:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.about-visual-text {
  text-align: center;
  max-width: 250px;
}

.about-visual-text p {
  color: hsl(var(--foreground) / 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  z-index: 15;
}

@media (min-width: 768px) {
  .about-visual {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
  }
}

/* ========================================
   SEÇÃO DE BENEFÍCIOS
   ======================================== */

.benefits-section {
  position: relative;
  z-index: 3;
  overflow: visible;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 5;
  overflow: visible;
}

@media (max-width: 768px) {
  .benefits-section .btn-whatsapp {
    font-size: 0.85rem;
    padding: 0.75rem 0.8rem;
  }
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  z-index: 15;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0.5rem;
  padding: 2px;
  background: linear-gradient(
    71deg,
    hsl(var(--union-darker)),
    hsl(var(--union-red)),
    hsl(var(--union-darker))
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.benefit-icon-container {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform var(--transition-smooth);
  position: relative;
  z-index: 15;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  width: 100%;
}

.benefit-card:hover .benefit-icon-container {
  transform: scale(1.1);
  transition: all 0.5s;
}

.benefit-icon {
  width: 3rem;
  height: 2.8rem;
  position: relative;
  z-index: 15;
}

/* Ícones Font Awesome nos cards de benefícios */
.benefit-icon.fas,
.benefit-icon.far,
.benefit-icon.fab {
  font-size: 1.5rem;
  width: auto;
  height: auto;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
  transition: color var(--transition-smooth);
  position: relative;
  z-index: 15;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-title {
  color: hsl(var(--primary));
  transition: all 0.3s ease;
}

.benefit-description {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  z-index: 15;
}

.benefits-cta {
  background: var(--gradient-card);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 15;
}

@media (max-width: 768px) {
  .benefits-cta {
    padding: 1rem;
  }
  .benefits-cta-title {
    text-align: left;
  }

  .benefits-cta-description {
    text-align: left;
  }

  .benefits-cta-buttons {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .benefits-cta {
    padding: 3rem;
  }
}

.benefits-cta-content {
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.benefits-cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 15;
}

.benefits-cta-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 15;
}

.benefits-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .benefits-cta-buttons {
    flex-direction: row;
  }
}

/* ========================================
   BOTÕES WHATSAPP
   ======================================== */

.btn-whatsapp {
  border-radius: 10px;
  background-color: var(--whatsapp-color);
  border: solid 0.1rem var(--whatsapp-color);
  font-size: 1rem;
  font-style: normal;
  text-decoration: none;
  color: var(--predominant-tone-10-percent);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  transition: all 0.5s ease;
  font-weight: 500;
  gap: 1rem;
  cursor: pointer;
  max-width: 400px;
}

.btn-whatsapp:hover {
  background-color: transparent;
  transform: scale(1.06);
  color: var(--predominant-tone-10-percent) !important;
  box-shadow: 0 0px 10px var(--whatsapp-color);
  border: solid 0.15rem var(--whatsapp-color);
  transition: all 0.5s ease;
  z-index: 20;
}

.btn-whatsapp .icon {
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
  flex-shrink: 0;
  position: relative;
  z-index: 15;
}

/* Ícone WhatsApp do Font Awesome */
.btn-whatsapp .fa-whatsapp {
  font-size: 1.6rem;
  color: hsl(var(--predominant-tone-10-percent));
  transform: rotate(0deg);
  transition: transform 1s ease;
}

.btn-whatsapp:hover .fa-whatsapp {
  font-size: 1.8rem;
  color: var(--whatsapp-color) !important;
  transform: rotate(360deg);
  transition: transform 1s ease;
}

/* Ícone WhatsApp em botões primários */
.btn-primary .fa-whatsapp {
  font-size: 1.25rem;
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover .fa-whatsapp {
  color: hsl(var(--primary-foreground));
}

/* Classe específica para ícone WhatsApp padronizado */
.font-zap {
  font-size: 1.25rem !important;
  color: hsl(var(--primary-foreground)) !important;
}

/* Ícone WhatsApp em botões outline */
.btn-outline .fa-whatsapp {
  font-size: 1.25rem;
}

.btn-outline:hover .fa-whatsapp {
  color: hsl(var(--primary-foreground));
}

/* ========================================
   SEÇÃO DE DEPOIMENTOS (TESTIMONIALS)
   ======================================== */

.testimonials-section {
  padding: 6rem 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.testimonials-section .container {
  position: relative;
}

.swiper {
  position: static !important;
  max-width: 1000px;
  padding: 2rem 0;
}

.testimonialsSwiper {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.testimonial-card {
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border) / 0.5);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border-top: 4px solid hsl(var(--primary));
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  margin-bottom: 1.5rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  font-size: 1.5rem;
  color: hsl(var(--primary));
  margin-bottom: 0.75rem;
  display: block;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.9);
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  flex-shrink: 0;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar i {
  font-size: 1rem;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin: 0 0 0.25rem 0;
}

.author-role {
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.7);
  margin: 0 0 0.5rem 0;
}

.author-rating {
  display: flex;
  gap: 0.25rem;
}

.author-rating i {
  color: #ffd700;
  font-size: 0.875rem;
}

.testimonialsSwiper .swiper-button-prev,
.testimonialsSwiper .swiper-button-next {
  border-radius: 50%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  font-size: 0.5rem;
  top: 70%;
  transform: translateY(-50%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1rem !important;
}

.testimonialsSwiper .swiper-button-prev {
  left: 11%;
  top: 105%;
}

.testimonialsSwiper .swiper-button-next {
  right: 11%;
  top: 105%;
}

/* Swiper Navigation */
.testimonialsSwiper .swiper-pagination {
  position: relative;
  margin-top: 1rem;
}

.testimonialsSwiper .swiper-pagination-bullet {
  background: hsl(var(--muted-foreground));
  opacity: 0.5;
  transition: all 0.3s ease;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
  background: hsl(var(--primary));
  opacity: 1;
  transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonial-card {
    padding: 1.5rem;
    min-height: 250px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .author-avatar {
    width: 2.25rem;
    height: 2.25rem;
  }

  .author-avatar i {
    font-size: 0.9rem;
  }

  .author-name {
    font-size: 0.95rem;
  }

  .author-role {
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .testimonialsSwiper .swiper-button-prev,
  .testimonialsSwiper .swiper-button-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 2rem 20px;
  }

  .testimonial-card {
    padding: 1.25rem;
    min-height: 220px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .quote-icon {
    font-size: 1.25rem;
  }
}

/* ========================================
   SEÇÃO DO PRESIDENTE
   ======================================== */

.president-section {
  background: transparent;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .president-section::before {
    width: 600px;
    height: 600px;
    left: 18%;
  }
}

@media (min-width: 1024px) {
  .president-section::before {
    width: 700px;
    height: 700px;
    left: 15%;
  }
}

.president-card {
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  background: var(--gradient-card);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 15;
}

.president-content {
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .president-content {
    flex-direction: column;
    padding: 1.5rem;
  }
}

@media (min-width: 768px) {
  .president-content {
    padding: 4rem;
  }
}

@media (min-width: 1024px) {
  .president-content {
    padding: 5rem;
    gap: 5rem;
  }
}

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

@media (min-width: 768px) {
  .president-image {
    text-align: left;
  }
}

.president-image-container {
  position: relative;
  display: inline-block;
}

.president-photo {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid hsl(var(--primary) / 0.3);
  background: linear-gradient(
    135deg,
    hsl(var(--primary) / 0.2),
    hsl(var(--union-red-light) / 0.2)
  );
}

@media (max-width: 768px) {
  .president-photo {
    width: 16rem;
    height: 16rem;
  }
}

.president-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .president-badge {
    position: absolute;
    top: -1rem;
    right: 0rem;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .president-badge .icon {
    width: 2rem;
    height: 2rem;
  }

  .president-badge {
    width: 4rem;
    height: 4rem;
    top: -1.5rem;
    right: -1.5rem;
  }

  .president-photo {
    width: 22rem;
    height: 22rem;
  }
}

.president-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.president-quote {
  position: relative;
  display: flex;
  flex-direction: column;
}

.president-section .quote-icon {
  font-size: 3rem;
  color: hsl(var(--primary)) !important;
}

.quote-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  line-height: 1.6;
  padding-left: 1.5rem;
}

.president-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.president-title {
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .quote-text {
    font-size: 1.3rem;
    padding-left: 0rem;
  }

  .president-section .quote-icon {
    font-size: 2.5rem;
  }

  .president-name {
    font-size: 1.3rem;
  }

  .president-title {
    font-size: 1rem;
  }
}

.president-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: hsl(var(--primary));
  color: hsl(var(--primary));
  stroke: hsl(var(--primary));
  stroke-width: 2;
}

.rating-text {
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .rating-text {
    font-size: 0.9rem;
  }
}

.president-message {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

/* ========================================
   SEÇÃO DE MENSAGEM
   ======================================== */

.message-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .message-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

.message-icon-container {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .message-icon-container {
    width: 250px;
    height: 250px;
  }
}

.message-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-text {
  text-align: left;
}

.message-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.message-description {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

/* ========================================
   SEÇÃO DE VÍDEO
   ======================================== */

.video-section {
  position: relative;
  z-index: 1;
}

.video-content {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .video-content {
    grid-template-columns: 1fr 1fr;
  }
}

.video-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.video-text-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
}

.video-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .video-title {
    font-size: 2.25rem;
  }
}

.video-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 15;
}

.video-highlight {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 2rem;
  position: relative;
  z-index: 15;
}

.video-container {
  position: relative;
  z-index: 1;
}

.video-card {
  overflow: hidden;
  background: linear-gradient(135deg, hsl(var(--card)), hsl(var(--muted)));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}

.video-iframe-container {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(
    135deg,
    hsl(var(--union-dark)),
    hsl(var(--union-darker))
  );
  border-radius: 0.5rem;
  overflow: hidden;
  z-index: 1;
}

.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

.video-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  z-index: -1;
}

.video-decoration-1 {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(
    135deg,
    hsl(var(--primary) / 0.2),
    hsl(var(--union-red-light) / 0.2)
  );
  top: -1rem;
  right: -1rem;
  z-index: -1;
}

.video-decoration-2 {
  width: 8rem;
  height: 8rem;
  background: linear-gradient(
    135deg,
    hsl(var(--union-red-light) / 0.2),
    hsl(var(--primary) / 0.2)
  );
  bottom: -1rem;
  left: -1rem;
  z-index: -1;
}

.video-info {
  text-align: center;
  position: relative;
  z-index: 5;
}

.video-info-content {
  background: var(--gradient-card);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.video-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 15;
}

.video-info-description {
  line-height: 1.6;
  position: relative;
  z-index: 15;
}

/* ========================================
   SEÇÃO CTA (CALL TO ACTION)
   ======================================== */

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section .btn-large {
  max-width: 250px;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsl(var(--union-dark)),
    hsl(var(--union-darker))
  );
}

.cta-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(96px);
}

.cta-decoration-1 {
  width: 16rem;
  height: 16rem;
  background: linear-gradient(
    135deg,
    hsl(var(--primary) / 0.1),
    hsl(var(--union-red-light) / 0.1)
  );
  top: 5rem;
  right: 2.5rem;
}

.cta-decoration-2 {
  width: 20rem;
  height: 20rem;
  background: linear-gradient(
    135deg,
    hsl(var(--union-red-light) / 0.1),
    hsl(var(--primary) / 0.1)
  );
  bottom: 5rem;
  left: 2.5rem;
}

.cta-section .container {
  position: relative;
  z-index: 10;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
  transition: color var(--transition-smooth);
}

.step-item:hover .step-title {
  color: hsl(var(--primary));
}

.step-description {
  font-size: 0.875rem;
  line-height: 1.6;
}

.cta-buttons {
  text-align: center;
  margin-bottom: 4rem;
}

.cta-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons-container {
    flex-direction: row;
  }
}

.contribution-section {
  background: linear-gradient(
    135deg,
    hsl(var(--card) / 0.5),
    hsl(var(--muted) / 0.5)
  );
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border) / 0.5);
}

@media (min-width: 768px) {
  .contribution-section {
    padding: 3rem;
  }
}

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

.contribution-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contribution-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .contribution-content {
    text-align: left;
    width: 100%;
  }

  .contribution-description {
    font-size: 1rem;
  }

  .contribution-title {
    font-size: 1.4rem;
  }

  .contribution-description {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/* ========================================
   SEÇÃO DE CONTATO
   ======================================== */

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-main-cta {
  background: var(--gradient-card);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
}

.main-cta-content {
  text-align: center;
}

.main-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.main-cta-description {
  margin-bottom: 1.5rem;
}

/* ========================================
   SEÇÃO FAQ
   ======================================== */

.faq-section {
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
  background: var(--gradient-bg);
}

@media (min-width: 640px) {
  .faq-section {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 5rem 2rem;
  }
}

/* Conteúdo Hero para FAQ */
.hero-content {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-content-inner {
  animation: fade-in 0.6s ease-out;
  position: relative;
  z-index: 20;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 9999px;
  color: hsl(var(--primary));
  position: relative;
  z-index: 15;
}

.hero-badge .icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.title-line {
  display: block;
  color: hsl(var(--foreground));
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--foreground) / 0.7);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 15;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Elipses de canto */
.corner-ellipse {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    hsl(var(--union-red) / 0.05),
    hsl(var(--union-red-light) / 0.05)
  );
  border-radius: 50%;
  filter: blur(30px);
  animation: float 12s ease-in-out infinite;
}

.corner-ellipse-left {
  top: 10%;
  left: -100px;
  animation-delay: 1s;
}

.corner-ellipse-right {
  bottom: 20%;
  right: -100px;
  animation-delay: 3s;
}

/* Elementos flutuantes */
.floating-element {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    hsl(var(--union-red) / 0.03),
    hsl(var(--union-red-light) / 0.03)
  );
  border-radius: 50%;
  filter: blur(20px);
  animation: float 15s ease-in-out infinite;
}

.floating-element-1 {
  top: 30%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element-2 {
  top: 70%;
  right: 15%;
  animation-delay: 4s;
}

.floating-element-3 {
  top: 50%;
  left: 80%;
  animation-delay: 2s;
}

/* Desabilitar animações em telas menores para melhorar performance */
@media (max-width: 768px) {
  .corner-ellipse,
  .floating-element {
    animation: none;
  }

  .accordion__content {
    transition: max-height 0.2s ease;
  }

  /* Otimização adicional para accordions em mobile */
  .accordion__btn {
    transition: background-color 0.2s ease;
  }

  .accordion__icon {
    transition: transform 0.2s ease, color 0.2s ease;
  }
}

/* Configuração simples para accordions */
.accordion__item {
  border-bottom: 1px solid var(--color-gray-200);
}

.accordion__content {
  overflow: hidden;
}

/* Desabilitar animações de fundo na seção FAQ para melhorar performance */
.faq-section .corner-ellipse,
.faq-section .floating-element {
  animation: none !important;
}

.faq-container {
  max-width: 64rem;
  margin: 0 auto;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.accordion__item {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
}

.accordion__btn {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: left;
}

.accordion__btn:hover {
  background: hsl(var(--muted) / 0.5);
}

.accordion__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

@media (max-width: 768px) {
  .accordion__title {
    font-size: 0.9rem;
  }
}

.accordion__icon {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  transition: transform 0.3s ease, color 0.3s ease;
}

.accordion__item.active .accordion__icon {
  transform: rotate(90deg);
  color: hsl(var(--primary));
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion__description {
  padding: 0 1.5rem 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ========================================
   CONSULTA JURÍDICA CTA
   ======================================== */

.legal-consultation {
  background: linear-gradient(
    135deg,
    hsl(var(--primary) / 0.1),
    hsl(var(--union-red-light) / 0.1)
  );
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 64rem;
}

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

.legal-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.legal-description {
  color: hsl(var(--foreground) / 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

/* ========================================
   SEÇÃO DE POSTS DO INSTAGRAM
   ======================================== */

.instagram-section {
  padding: 6rem 0;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instagram-posts {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.instagram-item {
  width: 30%;
  height: 525px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  position: relative;
}

.instagram-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

/* ========================================
   SEÇÃO COMPARTILHAR
   ======================================== */

.share-section {
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .share-section {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .share-section {
    padding: 5rem 2rem;
  }
}

.share-content {
  display: grid;
  gap: 4rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .share-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.share-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .share-text {
    text-align: left;
  }
}

.share-header {
  margin-bottom: 1rem;
}

.share-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  line-height: 1.2;
}

@media (min-width: 768px) {
  .share-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .share-title {
    font-size: 3.5rem;
    justify-content: flex-start;
  }
}

.title-line-decorative {
  width: 3rem;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .title-line-decorative {
    width: 4rem;
    height: 4px;
  }
}

.title-text {
  white-space: nowrap;
}

.share-description {
  margin-bottom: 1rem;
}

.share-text-content {
  font-size: 1.125rem;
  color: hsl(var(--foreground) / 0.8);
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .share-text-content {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .share-text-content {
    margin: 0;
  }
}

.share-cta {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .share-whatsapp-btn {
    margin: 0;
  }
}

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

@media (min-width: 1024px) {
  .share-visual {
    justify-content: flex-end;
  }
}

.fist-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  width: 100%;
  min-height: 400px;
}

@media (min-width: 768px) {
  .fist-illustration {
    max-width: 500px;
  }
}

@media (min-width: 1024px) {
  .fist-illustration {
    max-width: 600px;
  }
}

.fist-image {
  width: 60%;
  height: auto;
  transition: all 0.5s ease;
}

.fist-image:hover {
  transform: scale(1.05);
  transition: all 0.5s ease;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: linear-gradient(
    135deg,
    hsl(var(--union-darker)),
    hsl(var(--union-dark))
  );
  border-top: 1px solid hsl(var(--border) / 0.2);
  position: relative;
  overflow: hidden;
}

.footer .container {
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .footer .container {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer .container {
    padding: 4rem 2rem;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.brand-description {
  line-height: 1.7;
  max-width: 28rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(
    135deg,
    hsl(var(--primary) / 0.2),
    hsl(var(--union-red-light) / 0.2)
  );
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(
    135deg,
    hsl(var(--primary) / 0.3),
    hsl(var(--union-red-light) / 0.3)
  );
  transform: scale(1.1);
}

.social-link .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  transition: transform var(--transition-smooth);
}

.social-link:hover .icon {
  transform: scale(1.1);
}

.footer-links,
.footer-services {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links-title,
.footer-services-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.footer-links-list,
.footer-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link,
.footer-service {
  color: hsl(var(--foreground) / 0.6);
  text-decoration: none;
  transition: color var(--transition-smooth);
  display: flex;
  align-items: center;
}

.footer-link:hover,
.footer-service:hover {
  color: hsl(var(--primary));
}

.footer-service-icon {
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.25rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.2);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
  }
}

.footer-copyright {
  color: hsl(var(--foreground) / 0.6);
  font-size: 0.875rem;
}

.footer-affiliations {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.affiliation-text {
  color: hsl(var(--foreground) / 0.6);
}

.slogan {
  color: hsl(var(--primary));
  font-weight: 500;
}

/* ========================================
   BOTÃO "VOLTAR AO TOPO"
   ======================================== */

.scroll-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  z-index: 1000;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  display: none;
  align-items: center;
  justify-content: center;
}

.scroll-to-top-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.scroll-to-top-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* ========================================
   SEÇÃO DE NOTÍCIAS
   ======================================== */

.news-section {
  padding: 8rem 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.news-container {
  margin-top: 4rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  min-height: 400px; /* Altura mínima para evitar layout shift durante carregamento */
}

.news-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  color: hsl(var(--muted-foreground));
}

.news-card {
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border) / 0.5);
  transition: var(--transition-smooth);
  position: relative;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: hsl(var(--primary) / 0.3);
}

.news-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(var(--card)), hsl(var(--muted)));
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-image-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: hsl(var(--primary));
  font-size: 3rem;
  display: none;
  z-index: 1;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  display: block;
  background-color: hsl(var(--muted));
  opacity: 1;
}

.news-img[style*="display: none"] {
  opacity: 0;
}

.news-card:hover .news-img {
  transform: scale(1.05);
}

.news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: hsl(var(--primary));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-content {
  padding: 1.5rem;
}

.news-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-excerpt {
  color: hsl(var(--foreground) / 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.news-source {
  color: hsl(var(--primary));
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-date {
  color: hsl(var(--foreground) / 0.5);
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.news-link:hover {
  color: hsl(var(--union-red-light));
  transform: translateX(5px);
}

.news-link i {
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.news-link:hover i {
  transform: translateX(3px);
}

/* Tags das notícias */
.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.news-tag {
  background: hsl(var(--primary));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Metadados das notícias */
.news-metadata {
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border) / 0.3);
}

.news-metadata p {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.metadata-label {
  font-weight: 600;
  color: hsl(var(--primary));
}

/* Responsividade da Seção de Notícias */
@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .news-section {
    padding: 6rem 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-content {
    padding: 1.25rem;
  }

  .news-title {
    font-size: 1rem;
  }

  .news-excerpt {
    font-size: 0.85rem;
  }

  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .news-image {
    height: 180px;
  }

  .news-category {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Animação de entrada dos cards de notícias */
.news-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.news-card-visible {
  opacity: 1;
  transform: translateY(0);
}
