/* ========================================
   CSS PRINCIPAL - PÁGINA BENEFÍCIOS
   ======================================== */

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

:root {
  /* Cores Principais */
  --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: #17c557;
  --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);
}

/* ========================================
   ESTILOS BASE E RESET
   ======================================== */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  background: var(--gradient-bg);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

*:not(.gradient-text):not(strong) {
  color: hsl(var(--foreground)) !important;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

/* ========================================
   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.active::after {
  content: "" !important;
  position: absolute !important;
  bottom: 3px !important;
  width: 80%;
  left: 10%;
  height: 2px !important;
  background: hsl(var(--foreground)) !important;
  transition: width 0.4s ease, left 0.4s ease !important;
  z-index: 10 !important;
}


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

/* Usando estilos do CSS principal */

/* Í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%;
}

/* Usando estilos do CSS principal */

/* 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;
  }
}

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

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

/* Botões primários */
.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;
}

/* Í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));
}

/* 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;
}

/* Botão outline */
.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;
}

/* Botão ghost */
.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
}

/* Botões de navegação */
.nav__buttons {
  display: flex;
  gap: 20px;
}

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

/* Botão 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;
}

.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: hsl(var(--whatsapp-color));
  transform: rotate(360deg);
  transition: transform 1s ease;
}

/* Efeitos específicos do hero-cta */
.hero-cta .btn-primary .icon,
.hero-cta .btn-primary .icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* WhatsApp specific styles for outline buttons */
.btn-outline:has(.fa-whatsapp):hover {
  background-color: transparent;
  transform: scale(1.06);
  transition: 0.25s;
  color: hsl(var(--foreground));
  box-shadow: 0 4px 15px hsl(var(--primary) / 0.3);
  border: solid 0.15rem hsl(var(--primary));
  transition: all 0.5s ease;
}

.btn-outline .fa-whatsapp {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
}

/* Ícones */
.icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Global strong rule */
strong {
  color: hsl(var(--primary));
  font-weight: 600;
}

/* ========================================
   ELEMENTOS DE FUNDO E ANIMAÇÕES
   ======================================== */

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

.bg-ellipse-5 {
  width: 400px;
  height: 500px;
  background: hsl(var(--union-red-light));
  bottom: 75%;
  right: -5%;
  z-index: -5;
  filter: blur(100px);
}

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

.bg-ellipse-4 {
  width: 400px;
  height: 450px;
  object-fit: contain;
  background: hsl(var(--union-red-light));
  bottom: -40%;
  left: -5%;
  z-index: -1;
  filter: blur(120px);
}

/* Particles */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: hsl(var(--primary));
  border-radius: 50%;
  opacity: 0.3;
  animation: particles 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

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

@keyframes particles {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

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

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

.hero-section {
  padding: 6rem 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  position: relative;
  overflow-x: 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: 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(--foreground));
  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;
  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: var(--foreground);
  position: relative;
  z-index: 1;
}

.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;
}

.title-subtitle {
  font-size: 1.5rem;
  position: relative;
  z-index: 15;
  margin-bottom: 1.5rem;
}

@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(--foreground));
  font-weight: 500;
  position: relative;
  z-index: 15;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  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(--foreground));
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 15;
}

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

.stat-label {
  color: var(--foreground);
  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-indicator a {
  color: var(--foreground);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.scroll-indicator a:hover {
  color: hsl(var(--primary));
}

/* ========================================
   SEÇÃO MEMO
   ======================================== */

.memo-section {
  padding: 4rem 0;
  background: transparent;
  position: relative;
}

.memo-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.memo-content p {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.memo-content strong {
  color: hsl(var(--primary));
  font-weight: 600;
}

/* ========================================
   SEÇÃO QUOTE
   ======================================== */

.quote-section {
  padding: 4rem 0;
  background: var(--gradient-card);
  position: relative;
  margin-bottom: 4rem;
  z-index: 10;
}

.quote-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.quote-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.quote-divider {
  width: 60px;
  height: 4px;
  background: hsl(var(--primary));
  border: none;
  margin: 1.5rem 0;
}

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

.quote-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 2rem;
}

/* ========================================
   SEÇÃO 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 (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: 0.5rem;
  padding: 1.5rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  z-index: 15;
  overflow: visible;
}

.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;
  will-change: transform;
  width: 100%;
}

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

.benefit-icon {
  width: 3rem;
  height: 2.8rem;
  color: hsl(var(--foreground));
  position: relative;
  z-index: 15;
}

/* Font Awesome icons in benefit cards */
.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;
}

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

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

@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;
  }
}

/* ========================================
   SEÇÃO BSF
   ======================================== */

.bsf-section {
  padding: 6rem 0;
  background: transparent;
  position: relative;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--foreground);
  max-width: 600px;
  margin: 0 auto;
}

.title-divider {
  border: none;
  background-color: hsl(var(--primary));
  width: 30%;
  height: 0.15rem;
  margin: 0 0.5rem;
}

.section-title .title-divider {
  display: inline-block;
}

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

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

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

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

.bsf-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);
  cursor: pointer;
  position: relative;
  z-index: 15;
  overflow: visible;
}

.bsf-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;
}

.bsf-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.bsf-card .icon {
  font-size: 3rem;
  color: hsl(var(--primary) / 0.8);
  margin-bottom: 1rem;
}

.bsf-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.bsf-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.bsf-card .btn {
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
}

/* BSF Info Section */
.bsf-info-section {
  padding: 4rem 0;
  background: transparent;
  position: relative;
}

.bsf-info-content {
  max-width: 800px;
  margin: 0 auto;
}

.bsf-info-text h2 {
  color: hsl(var(--primary));
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.bsf-info-image {
  text-align: center;
  margin-bottom: 2rem;
}

.bsf-info-image img {
  max-width: 320px;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
}

.bsf-info-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  text-align: justify;
}

.bsf-info-text .btn {
  margin-top: 1rem;
}

.bsf-info-text .btn .bsf-icon {
  transition: transform 0.5s ease;
}

.bsf-info-text .btn:hover .bsf-icon {
  transform: translateX(5px);
}

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

.faq-section {
  padding: 6rem 0;
  background: transparent;
  position: relative;
}

.faq-container {
  max-width: 800px;
  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);
  overflow: hidden;
}

.accordion__btn {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: left;
}

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

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

.accordion__icon {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  transition: var(--transition-smooth);
}

.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;
}

/* Legal Consultation */
.legal-consultation {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

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

.legal-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ========================================
   SEÇÃO SHARE
   ======================================== */

.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;
  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: 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: var(--foreground);
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto;
}

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

@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;
  text-align: left;
}

.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;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

/* Media Queries para Navegação */
@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;
  }
}

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

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

/* Media Queries para Ellipses */
@media (max-width: 1285px) {
  .bg-ellipse-4 {
    bottom: -30%;
    left: -15%;
  }

  .bg-ellipse-5 {
    bottom: 80%;
    right: 0%;
  }
}

@media (max-width: 1026px) {
  .bg-ellipse-4 {
    left: -20%;
  }

  .bg-ellipse-5 {
    width: 300px;
    height: 400px;
    opacity: 1;
    bottom: 85%;
  }
}

@media (max-width: 980px) {
  .bg-ellipse-5 {
    width: 300px;
    height: 300px;
    right: 0%;
    opacity: 1;
    bottom: 90%;
  }
}

@media (max-width: 768px) {
  .bg-ellipse-4 {
    height: 300px;
    filter: blur(100px);
  }

  .bg-ellipse-5 {
    width: 200px;
    bottom: 95%;
    filter: blur(90px);
  }

  .bg-ellipse-3 {
    filter: blur(140px);
  }
}

@media (max-width: 500px) {
  .bg-ellipse-4 {
    width: 300px;
    height: 330px;
    left: -25%;
    filter: blur(70px);
    bottom: -25%;
  }
}

/* Media Queries Gerais */
@media (max-width: 767px) {
  .nav-mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

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

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

  .quote-title {
    font-size: 2rem;
  }

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

  .bsf-card {
    padding: 1.5rem;
  }

  .bsf-card .icon {
    font-size: 2.5rem;
  }

  .bsf-card h3 {
    font-size: 1.1rem;
  }

  .title-divider {
    width: 20%;
  }

  .bsf-info-text h2 {
    font-size: 1.5rem;
  }

  .bsf-info-image img {
    max-width: 280px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .benefits-section .btn-whatsapp {
    font-size: 0.85rem;
    padding: 0.75rem 0.8rem;
  }

  .memo-content p {
    text-align: left;
  }

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

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

  .benefits-cta-content {
    align-items: normal;
    justify-content: normal;
  }

  .share-text-content {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .share-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .title-divider {
    width: 42.5%;
  }

  .bsf-info-text h2 {
    font-size: 3rem;
  }
}
