/* ==========================================================================
   Expressive & Geometric Design System — 3º Congresso APAE/PE
   With GSAP + ScrollSmoother Ready Layout
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,300,0,0');

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 24;
  display: inline-block;
  vertical-align: middle;
  color: #0e3f8a;
}

:root {
  /* Official Color Palette */
  --apae-yellow: #FECC15;
  --apae-blue-dark: #0E3F8A;
  --apae-blue-light: #3A8DC7;
  --apae-green: #82AB33;

  /* Accent Palette */
  --accent-cream: #FAF8F5;
  --accent-soft-yellow: #FFF9E5;
  --accent-soft-blue: #EBF4FC;
  --accent-soft-green: #F0F7E6;

  /* Surfaces & Typography */
  --bg-main: #FAF8F5;
  --bg-card: #FFFFFF;
  --text-main: #0E1726;
  --text-muted: #475569;
  --border-light: #E2E8F0;

  /* Elevation & Radius */
  --shadow-sm: 0 4px 14px rgba(14, 63, 138, 0.06);
  --shadow-md: 0 12px 32px rgba(14, 63, 138, 0.10);
  --shadow-lg: 0 24px 48px rgba(14, 63, 138, 0.15);

  --radius-pill: 999px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --transition-bounce: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: 'Sofia Sans', sans-serif;
  font-size: 16px;
  color: var(--text-main);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Floating Organic Geometric Shape Accents (Larger on Desktop with Rounded Corners) */
.shape-float {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  filter: drop-shadow(0 14px 28px rgba(14, 63, 138, 0.1));
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shape-organic-1 {
  width: 240px;
  height: 220px;
  background: var(--apae-yellow);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  left: -30px;
  top: 8%;
}

.shape-organic-2 {
  width: 280px;
  height: 260px;
  background: var(--apae-blue-light);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  right: -40px;
  top: 14%;
}

.shape-organic-3 {
  width: 210px;
  height: 210px;
  background: var(--apae-green);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  bottom: 8%;
  left: 4%;
}

.shape-organic-4 {
  width: 260px;
  height: 200px;
  background: #f6bf08;
  border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
  bottom: 12%;
  right: 4%;
}

.shape-organic-pill {
  width: 230px;
  height: 110px;
  background: #82AB33;
  border-radius: 999px;
  transform: rotate(-18deg);
  left: 2%;
  top: 48%;
}

@media (max-width: 992px) {
  .shape-organic-1 { width: 140px; height: 130px; }
  .shape-organic-2 { width: 150px; height: 140px; }
  .shape-organic-3 { width: 120px; height: 120px; }
  .shape-organic-4 { width: 140px; height: 110px; }
  .shape-organic-pill { width: 130px; height: 65px; }
}

/* Header & Sticky Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--apae-yellow);
  padding: 14px 0;
  transition: var(--transition-smooth);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  height: 52px;
  width: auto;
  transition: var(--transition-bounce);
}

.brand-logo:hover {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--apae-blue-dark);
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.nav-link:hover {
    font-weight: 800;
}

/* ==========================================================================
   BUTTON STYLES (CTA1 & CTA2 as requested - NO RED #D52524)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Sofia Sans', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-md);
  text-align: center;
}

/* CTA1: Outline 2px #0E3F8A, text #0E3F8A. Hover: bg #FECC15, text #0E3F8A */
.btn-cta1 {
  background: transparent;
  border: 2px solid #0E3F8A;
  color: #0E3F8A;
}

.btn-cta1:hover {
  background: #FECC15;
  border-color: #FECC15;
  color: #0E3F8A;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(254, 204, 21, 0.4);
}

/* CTA2: Background #FECC15 no border, text #0E3F8A. Hover: bg #0E3F8A, text #FECC15 */
.btn-cta2 {
  background: #FECC15;
  border: none;
  color: #0E3F8A;
}

.btn-cta2:hover {
  background: #0E3F8A;
  color: #FECC15;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 63, 138, 0.4);
}

/* Aliases for backwards compatibility */
.btn-primary { extend .btn-cta2; background: #FECC15; color: #0E3F8A; border: none; }
.btn-primary:hover { background: #0E3F8A; color: #FECC15; }

.btn-outline-blue { extend .btn-cta1; background: transparent; border: 2px solid #0E3F8A; color: #0E3F8A; }
.btn-outline-blue:hover { background: #FECC15; border-color: #FECC15; color: #0E3F8A; }

.btn-red { extend .btn-cta2; background: #FECC15; color: #0E3F8A; border: none; }
.btn-red:hover { background: #0E3F8A; color: #FECC15; }


/* ==========================================================================
   SECTION HEADERS (User exact CSS requirements)
   ========================================================================== */
.section-header-center {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 64px auto;
}

.section-tag {
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4.5px;
  color: var(--apae-blue-dark);
  /* background: #f6bf08; */
  border: 1px solid rgb(246 191 8);
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.15;
  color: #0e3f8a;
  margin-bottom: 16px;
  letter-spacing: -1.6px;
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 140px 0 90px 0;
  background: var(--bg-main);
  overflow: hidden;
}

.hero-main-logo-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.hero-main-logo {
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 14px 28px rgba(14, 63, 138, 0.15));
}

.hero-pills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
  align-items: stretch;
}

.hero-pill-yellow {
  background: var(--apae-yellow);
  color: var(--apae-blue-dark);
  border-radius: var(--radius-pill);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
}

.hero-pill-yellow:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hero-pill-icon {
  font-size: 3rem;
  background: rgba(255, 255, 255, 0.4);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-pill-yellow-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
}

.hero-pill-yellow-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 4px;
  opacity: 0.9;
}

.hero-pill-blue {
    background: var(--apae-blue-dark);
    color: #FFFFFF;
    border-radius: var(--radius-pill);
    padding: 44px 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
}

.hero-pill-blue:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-cta-row .btn {
  min-width: 280px;
}

/* ==========================================================================
   MARQUEE INFINITO (Google Labs Style Ticker)
   ========================================================================== */
.marquee-section {
  background: var(--apae-blue-dark);
  color: #FFFFFF;
  padding: 16px 0;
  overflow: hidden;
  border-top: 3px solid var(--apae-yellow);
  border-bottom: 3px solid var(--apae-yellow);
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.marquee-item .star {
  color: var(--apae-yellow);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   GALERIA CARROSSEL LENTO DE IMAGENS (Google / Material Design Style)
   ========================================================================== */
.gallery-carousel-section {
  padding: 30px 0 50px 0;
  background: var(--bg-main);
  overflow: hidden;
}

.gallery-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: gallery-slow-scroll 45s linear infinite;
}

.gallery-carousel-track:hover {
  animation-play-state: paused;
}

.gallery-card {
  width: 380px;
  height: 240px;
  flex-shrink: 0;
  border-radius: 28px;
  overflow: hidden;
  border: none;
  box-shadow: 0 12px 32px rgba(14, 63, 138, 0.12);
  transition: var(--transition-bounce);
  background: #FFFFFF;
}

.gallery-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(14, 63, 138, 0.22);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes gallery-slow-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   ACCESSIBILITY & REDUCED MOTION (WCAG 2.1 AA / AAA Standards)
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  background: var(--apae-yellow);
  color: var(--apae-blue-dark);
  padding: 12px 24px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  z-index: 10000;
  transition: top 0.2s ease;
  box-shadow: var(--shadow-lg);
}

.skip-link:focus {
  top: 24px;
}

:focus-visible {
  outline: 3px solid var(--apae-blue-dark);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .gallery-carousel-track {
    animation: none !important;
  }
  .gallery-carousel-container {
    overflow-x: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   SOBRE / O EVENTO
   ========================================================================== */
.sobre-section {
  padding: 100px 0;
  background: #FFFFFF;
  position: relative;
}

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

.diferencial-card {
    background: #fcca15;
    border-radius: 32px;
    padding: 36px 32px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.diferencial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: #FFFFFF;
}

.diferencial-icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: var(--accent-soft-yellow);
}

.diferencial-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--apae-blue-dark);
  margin-bottom: 10px;
}

.diferencial-text {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ==========================================================================
   GOOGLE LABS INPIRED COMPONENTS (Marquee & Interactive Filters)
   ========================================================================== */

/* 1. Marquee Infinito (Google Labs Ticker) */
.marquee-section {
  background: var(--apae-blue-dark);
  color: #FFFFFF;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  border-top: 3px solid var(--apae-yellow);
  border-bottom: 3px solid var(--apae-yellow);
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.marquee-item span.star {
  color: var(--apae-yellow);
  font-size: 1.4rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 2. Filtro de Palestrantes em Pílula (Google Labs Filter) */
.filter-pill-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.filter-btn {
    background: #FFFFFF;
    border: 2px solid var(--apae-blue-dark);
    color: var(--apae-blue-dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 16px 24px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--apae-blue-dark);
  color: var(--apae-yellow);
  border-color: var(--apae-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.palestrante-card.hidden {
  display: none !important;
}
.publico-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #94b650 0%, #577f08 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.publico-section .section-tag {
  background: transparent;
  color: #FECC15;
  border-color: #FECC15;
}

.publico-section .section-title {
  color: #FFFFFF;
}

.publico-section .section-subtitle {
  color: #E2E8F0;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.publico-pill {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  transition: var(--transition-bounce);
}

.publico-pill:nth-child(odd) { transform: rotate(-1.5deg); }
.publico-pill:nth-child(even) { transform: rotate(1.5deg); }
.publico-pill:nth-child(3n) { transform: rotate(-2.5deg); }

.publico-pill:hover {
  background: var(--apae-yellow);
  color: var(--apae-blue-dark);
  border-color: var(--apae-yellow);
  transform: scale(1.08) rotate(0deg) !important;
  box-shadow: 0 10px 24px rgba(254, 204, 21, 0.35);
}

/* ==========================================================================
   TEMAS EM DESTAQUE (#fecc15 background & transparent pills)
   ========================================================================== */
.temas-section {
  padding: 100px 0;
  background: #fecc15;
}

.temas-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 1050px;
  margin: 0 auto;
}

.tema-card-pill {
  background: transparent;
  border: 2px solid var(--apae-blue-dark);
  color: var(--apae-blue-dark);
  font-weight: 900;
  font-size: 1.2rem;
  padding: 18px 34px;
  border-radius: var(--radius-pill);
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
}

.tema-card-pill:hover {
  background: var(--apae-blue-dark);
  color: #FECC15;
  border-color: var(--apae-blue-dark);
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   PALESTRANTES (User exact CSS requirements applied)
   ========================================================================== */
.palestrantes-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.palestrantes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.palestrante-card {
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #f6bf08;
  transition: var(--transition-bounce);
  position: relative;
  background: var(--bg-main);
}

.palestrante-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--apae-blue-dark);
  background: #FFFFFF;
}

.palestrante-photo-wrapper {
  width: 200px;
  height: auto;
  margin: 0 auto 20px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Removed .palestrante-photo-wrapper::before as requested */

.palestrante-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* border-radius: 50%; */
  background: #FFFFFF;
  position: relative;
  z-index: 2;
  border: 3px solid #FFFFFF;
}

.palestrante-nome {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--apae-blue-dark);
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.palestrante-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #0e3f8a;
  background: #f6bf08;
  padding: 6px 14px;
  border-radius: 8px;
  text-transform: uppercase;
}

/* ==========================================================================
   FAQ & CTA FINAL
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background: var(--bg-main);
}

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

.faq-item {
  background: #FFFFFF;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--apae-blue-light);
}

.faq-question {
  width: 100%;
  padding: 24px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--apae-blue-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 1.1rem;
  display: none;
}

/* CTA Final (NO RED) */
.cta-final-section {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--apae-blue-dark) 0%, #061F47 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
}

.cta-final-title {
  font-size: 3.4rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.cta-final-text {
  font-size: 1.35rem;
  max-width: 720px;
  margin: 0 auto 40px auto;
  opacity: 0.95;
}

/* ==========================================================================
   SEÇÃO REDE FEAPAES-PE (32 APAEs & MAPA PE EM AZUL)
   ========================================================================== */
.rede-section {
  padding: 100px 0;
  background: #FFFFFF;
  position: relative;
  text-align: center;
}

.rede-map-wrapper {
  max-width: 960px;
  margin: 36px auto 48px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.rede-map-svg {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(14, 63, 138, 0.18));
}

.rede-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.rede-stat-card {
  background: var(--bg-main);
  border: 2px solid var(--apae-yellow);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-bounce);
}

.rede-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--apae-blue-dark);
}

.rede-stat-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--apae-blue-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.rede-stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

/* FOOTER */
.site-footer {
  background: #fcf7e4;
  color: #0E3F8A;
  padding: 60px 0 40px 0;
  font-size: 0.95rem;
  border-top: 3px solid #0E3F8A;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.footer-logo {
  height: 64px;
  width: auto;
}

.footer-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.footer-img {
  max-height: 95px;
  width: auto;
  object-fit: contain;
}

.footer-copyright {
    border-top: 1px solid rgb(254 204 21);
    padding-top: 24px;
    width: 100%;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0E3F8A;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsiveness */
@media (max-width: 992px) {
  .hero-pills-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2.8rem; }
  .hero-pill-yellow { border-radius: var(--radius-lg); }
  .hero-pill-blue { border-radius: var(--radius-lg); }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 2.2rem; }

  .shape-organic-1 {
    width: 40%;
    height: 10%;
    background: var(--apae-yellow);
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    left: -30px;
    top: 0%;
  }

  .shape-organic-2 {
    width: 30%;
    height: 10%;
    background: var(--apae-blue-light);
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    right: 0%;
    top: 0%;
  }

  .hero-pill-yellow {
    background: var(--apae-yellow);
    color: var(--apae-blue-dark);
    border-radius: 40px;
    padding: 24px 40px 40px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    flex-direction: column;
  }

  .btn {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-md);
    text-align: center;
  }
}
