:root {
  --background: #f2f4f7;
  --foreground: #0d1117;

  --card: #0f141a;
  --card-foreground: #f2f4f7;

  --popover: #0f141a;
  --popover-foreground: #f2f4f7;

  --primary: #a68200;
  --primary-foreground: #f2f4f7;

  --secondary: #22262b;
  --secondary-foreground: #f2f4f7;

  --muted: #161a1f;
  --muted-foreground: #9aa4b1;

  --border: #292f36;
  --input: #22262b;

  --radius: 1rem;

  /* Union Specific Colors */
  --union-red: #a68200; /*OK*/
  --union-red-light: #a68200;
  --union-dark: #0a0e13;
  --union-darker: #06090d;
  --union-gray: #333940;

  /* WhatsApp Colors */
  --whatsapp-color: #0f993e;
  --whatsapp-color-light: #17c95c;
  --predominant-tone-10-percent: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #003082, #003082);
  --gradient-bg: linear-gradient(135deg, #0a0e13, #06090d);
  --gradient-card: linear-gradient(145deg, #0f141a, #161a1f);

  /* Animations */
  --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);
}

* {
  box-sizing: border-box;
  border-color: var(--border);
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

#edital {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
}

.edital-convacacao {
  max-width: 95%;
  width: 100%;
  margin: 0 auto 80px auto;
}

@media (min-width: 1024px) {
  .edital-convacacao {
    max-width: 65%;
  }
}

strong {
  color: var(--primary) !important;
  font-weight: 600;
}

.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;
}

body {
  background: #fff;
  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;
}

.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;
}

/* Icon size for "Seja um Associado" (Lucide users) */
.hero-cta .btn-primary .icon,
.hero-cta .btn-primary .icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Button Styles */
.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-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn .icon {
  width: 20px;
  height: 20px;
  pointer-events: none;
  flex-shrink: 0;
}

/* Button Variants */
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.btn-primary:hover {
  transform: scale(1.06);
  transition: 0.25s;

  transition: all 0.5s ease;
}

/* WhatsApp style for buttons with WhatsApp icon */
.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;
  transition: all 0.5s ease;
}

.btn-outline {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  transform: scale(1.06);
  transition: 0.25s;
  color: var(--gradient-primary);
  border: solid 0.15rem var(--primary);
  transition: all 0.5s ease;
}

/* WhatsApp style for outline buttons with WhatsApp icon */
.btn-outline:has(.fa-whatsapp):hover {
  background-color: transparent;
  transform: scale(1.06);
  transition: 0.25s;
  color: var(--gradient-primary);
  border: solid 0.15rem var(--primary);
  transition: all 0.5s ease;
}

.btn-ghost {
  background: transparent;
  color: var(--foreground);
}

/* Button Sizes */
.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;
}

/* Animations */
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px var(--union-red);
  }
  50% {
    box-shadow: 0 0 40px var(--union-red);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Additional floating elements for depth */
.floating-element {
  position: absolute;
  background: 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;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 9999px;
  color: #fff;
}

.section-badge .icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin: 24px 0px;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 48px;
  }
}

.section-subtitle {
  font-size: 20px;
  max-width: 85%;
  margin: 0 auto;
  line-height: 1.5;
}

/* Common Section Padding */
.hero-section,
.about-section,
.benefits-section,
.video-section,
.cta-section,
.contact-section {
  padding: 5rem 1rem;
}

@media (min-width: 640px) {
  .hero-section,
  .about-section,
  .benefits-section,
  .video-section,
  .cta-section,
  .contact-section {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section,
  .about-section,
  .benefits-section,
  .video-section,
  .cta-section,
  .contact-section {
    padding: 5rem 2rem;
  }
}

/* Navigation Styles */
.navigation {
  backdrop-filter: blur(16px);
  background-color: #f9f9f9;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  height: auto;
}

/* Active nav underline (padronizado com Benefícios) */
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  overflow: visible;
}

@media (max-width: 480px) {
  .nav-content {
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
}

.nav-logo {
  flex-shrink: 0;
  min-width: 120px;
}

.logo-img {
  width: 124px;
  height: auto;
  max-width: 100%;
}

@media (max-width: 480px) {
  .nav-logo {
    min-width: 80px;
    max-width: 80px;
  }

  .logo-img {
    width: 80px;
  }

  .nav-content {
    gap: 0.25rem;
  }
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: none;
}

@media (min-width: 768px) {
  .nav-menu {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .nav-menu.desktop-menu {
    display: none;
  }
}

.nav-menu.desktop-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .nav-menu.desktop-menu {
    gap: 0.5rem;
  }
}

.nav-link {
  color: var(--foreground);
  padding: 0rem 0.75rem;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
  .nav-link {
    padding: 0.5rem;
    font-size: 18px;
  }
}

.nav-link:hover {
  color: var(--primary);
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }

  .nav-cta i {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .nav-cta {
    gap: 0.5rem;
  }

  .nav-cta .btn {
    padding: 0.5rem 0.75rem;
    font-size: 20px;
  }

  .nav-cta .btn .icon {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.nav-mobile-toggle {
  display: block;
  flex-shrink: 0;
  min-width: 2.5rem;
  min-height: 2.5rem;
  z-index: 100;
}

@media (min-width: 811px) {
  .nav-mobile-toggle {
    display: none;
  }
}

@media (max-width: 810px) {
  .nav-mobile-toggle {
    display: block !important;
  }

  .nav-menu.desktop-menu {
    display: none !important;
  }

  .nav-cta {
    display: none !important;
  }
}

.mobile-menu-btn {
  color: var(--foreground);
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: var(--transition-smooth);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
}

.mobile-menu-btn:hover {
  background: #003082;
  color: #fff;
}

.mobile-menu-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: var(--transition-smooth);
}

.mobile-menu-btn .menu-icon,
.mobile-menu-btn .close-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Fallback para ícones do menu caso Lucide não esteja carregado */
.mobile-menu-btn .menu-icon::before {
  content: "☰";
  font-size: 20px;
  line-height: 1;
  display: block;
  transition: transform 0.3s ease;
}

.mobile-menu-btn .close-icon::before {
  content: "✕";
  font-size: 20px;
  line-height: 1;
  display: block;
  transition: transform 0.3s ease;
}

.mobile-menu {
  margin-top: 32px;
  background: #f9f9f9;
  border-top: 2px solid #ccc;
}

.mobile-menu-content {
  padding: 0.5rem 1rem 0.75rem;
}

.mobile-nav-link {
  display: block;
  color: var(--foreground);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0.75rem 0;
}

/* =========================
   Dropdown Desktop
========================= */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: " ▾";
  font-size: 0.8rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: none;
  flex-direction: column;
  min-width: 280px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  color: var(--foreground);
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: #e6e6e6;
  color: var(--primary);
}

/* =========================
   Mobile Dropdown
========================= */
.mobile-dropdown {
  display: block;
  margin-bottom: 0.5rem;
}

.mobile-dropdown .dropdown-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  color: var(--foreground);
  cursor: pointer;
}

.mobile-submenu {
  padding-left: 1rem;
  border-left: 2px solid #ddd;
}

.mobile-submenu a {
  padding: 0.25rem 0.5rem;
}

.mobile-submenu a:hover {
  color: var(--primary);
}

/* Hero Section Styles */
.hero-section {
  padding: 6rem 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 96px;
}

@media (min-width: 640px) {
  .hero-section {
    padding: 7rem 1.5rem 5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 8rem 2rem 6rem;
  }
}

.hero-content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.hero-content-inner {
  animation: fade-in 0.6s ease-out;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  margin: 24px auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 56px;
    line-height: 1.3;
    width: 80%;
  }
}

.title-line {
  padding: 8px 0px;
}

.title-subtitle {
  display: block;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .title-subtitle {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .title-subtitle {
    font-size: 2.25rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: 9999px;
  margin-top: 0.5rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Dedicated scroll indicator float to preserve horizontal centering */
@keyframes scroll-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* About Section Styles */
.about-section {
  overflow: hidden;
  z-index: 5;
}

.about-content {
  display: grid;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  z-index: 5;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.about-description {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Strong elements in specific sections */
.about-description strong,
.message-description strong {
  color: var(--primary) !important;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #f9f9f9;
  border: 2px solid #ccc;
  border-radius: 24px;
  padding: 24px;
  transition: var(--transition-smooth);
}

.feature-icon {
  width: 56px;
  height: 56px;
  color: var(--primary);
}

.feature-title {
  font-size: 24px;
  font-weight: 600;
  margin: 16px 0;
  color: var(--primary) !important;
}

.feature-description {
  font-size: 18px;
  font-weight: 400;
}

/* Benefits Section Styles */
.benefits-section {
  overflow: visible;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  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(3, 1fr);
  }
}

.benefit-card {
  background: #f9f9f9;
  border: 2px solid #ccc;
  border-radius: 24px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card img {
  width: 100%;
  height: auto;
}

/* WhatsApp Button Styles */
.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;
}

/* Responsive adjustments for WhatsApp buttons */

.btn-whatsapp:hover {
  background-color: transparent;
  transform: scale(1.06);
  color: var(--whatsapp-color) !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;
}

/* WhatsApp icon from Font Awesome */
.btn-whatsapp .fa-whatsapp {
  font-size: 1.6rem;
  color: 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;
}

/* WhatsApp icon in primary buttons */
.btn-primary .fa-whatsapp {
  font-size: 1.25rem;
  color: var(--primary-foreground);
}

.btn-primary:hover .fa-whatsapp {
  color: var(--primary-foreground);
}

/* WhatsApp icon in outline buttons */
.btn-outline .fa-whatsapp {
  font-size: 1.25rem;
  color: var(--primary);
}

.btn-outline:hover .fa-whatsapp {
  color: var(--primary-foreground);
}

/* Video Section Styles */
.video-content {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.video-text-content {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .message-icon-container {
    width: 250px;
    height: 250px;
  }
}

@media (min-width: 1024px) {
  .video-content {
    grid-template-columns: 1fr 1fr;
  }
}

.video-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.video-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.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;
}

.video-card {
  overflow: hidden;
  background: linear-gradient(135deg, var(--card), var(--muted));
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.video-iframe-container {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--union-dark), var(--union-darker));
  border-radius: 0.5rem;
  overflow: hidden;
}

.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

/* CTA Section Styles */
.cta-section {
  overflow: hidden;
}

.cta-section .btn-large {
  max-width: 250px;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--union-dark), var(--union-darker));
}

.cta-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(96px);
}

.cta-decoration-1 {
  width: 16rem;
  height: 16rem;
  background: linear-gradient(135deg, var(--primary), var(--union-red-light));
  top: 5rem;
  right: 2.5rem;
}

.cta-decoration-2 {
  width: 20rem;
  height: 20rem;
  background: linear-gradient(135deg, var(--union-red-light), var(--primary));
  bottom: 5rem;
  left: 2.5rem;
}

.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(2, 1fr);
  }
}

.step-item {
  text-align: center;
}

.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;
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.step-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--foreground);
  transition: color var(--transition-smooth);
}

.step-h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #003082;
}

.step-item:hover .step-title {
  color: var(--primary);
}

.step-description {
  font-size: 18px;
  line-height: 1.6;
}

/* Contact Section Styles */
.contact-section {
  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;
}

/* Footer Styles */
.footer {
  background: #f9f9f9;
  border-top: 2px solid #ccc;
  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, var(--primary), var(--union-red-light));
  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, var(--primary), var(--union-red-light));
  transform: scale(1.1);
}

.social-link i {
  color: #fff;
}

.social-link .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
  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: 20px;
  font-weight: 600;
  color: 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 {
  font-size: 18px;
  color: var(--foreground);
  text-decoration: none;
  transition: color var(--transition-smooth);
  display: flex;
  align-items: center;
}

.footer-link:hover,
.footer-service:hover {
  color: 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 #ccc;
}

.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: var(--foreground);
  font-size: 18px;
  font-weight: 500;
}

.footer-affiliations {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 18px;
}

.slogan {
  color: var(--primary);
  font-weight: 500;
}

.slogan a {
  color: #003082;
}

/* Scroll to Top Button */
.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);
  display: none;
  align-items: center;
  justify-content: center;
}

.scroll-to-top-btn:hover {
  transform: translateY(-2px);
}

.scroll-to-top-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.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 (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 {
  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;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 1rem;
  overflow: hidden;
}

/* Hero Content for FAQ */
.hero-content {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-content-inner {
  animation: fade-in 0.6s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 500;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 999px;
  color: #fff;
}

.hero-badge .icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.title-line {
  display: block;
  color: var(--foreground);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--foreground);
  line-height: 1.5;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 24px;
    margin: 0 auto;
    width: 85%;
  }
}

/* Corner Ellipses */
.corner-ellipse {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--union-red), var(--union-red-light));
  border-radius: 50%;
  filter: blur(30px);
  animation: float 8s ease-in-out infinite;
}

.corner-ellipse-left {
  top: 10%;
  left: -100px;
  animation-delay: 1s;
}

.corner-ellipse-right {
  bottom: 20%;
  right: -100px;
  animation-delay: 3s;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--union-red), var(--union-red-light));
  border-radius: 50%;
  filter: blur(20px);
  animation: float 10s 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;
}

/* Animations */
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

@media (min-width: 640px) {
  .faq-section {
    padding: 5rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .faq-section {
    padding: 5rem 2rem;
  }
}

.faq-container {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #f9f9f9;
  border: 2px solid #ccc;
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.faq-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 2rem;
  text-align: center;
  animation: bounce 2s infinite;
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
  flex: 1;
}

.faq-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.faq-arrow i {
  color: #fff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  background: var(--primary);
  transform: scale(1.1);
}

.faq-item.active .faq-arrow i {
  color: white;
  transform: rotate(90deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem;
}

.faq-answer p {
  color: var(--foreground);
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-size: 18px;
}
