/* ==========================================================================
   PROGRAMA LIDERAR — DESIGN SYSTEM & STYLESHEET
   Domain: liderar.grupocompetitiva.com.br
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES / DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --navy-900: #030C1C;
  --navy-800: #061630;
  --navy-700: #0B1E3D;
  --navy-600: #122B52;
  --navy-500: #1C3B6B;
  
  --orange-500: #E85A0C;
  --orange-600: #D44F08;
  --orange-700: #B83E00;
  --orange-100: #FFF3EB;

  --gold-500: #D9822B;
  --gold-100: #FFF8EE;

  /* Neutral Colors */
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;
  --white:    #FFFFFF;

  /* Functional Assignments */
  --bg-page: var(--gray-50);
  --text-main: var(--gray-900);
  --text-muted: var(--gray-600);
  --text-light: #94A3B8;

  /* Typography */
  --font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radius & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(6, 22, 48, 0.08);
  --shadow-lg: 0 12px 32px rgba(6, 22, 48, 0.12);
  --shadow-glow: 0 0 25px rgba(232, 90, 12, 0.35);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* --------------------------------------------------------------------------
   2. BASE & RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

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

.section-title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-divider {
  width: 48px;
  height: 4px;
  background-color: var(--orange-500);
  margin: 0.75rem auto 1rem;
  border-radius: var(--radius-full);
}

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

/* --------------------------------------------------------------------------
   3. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn-orange {
  background-color: var(--orange-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232, 90, 12, 0.3);
}

.btn-orange:hover:not(:disabled) {
  background-color: var(--orange-600);
  box-shadow: 0 6px 20px rgba(232, 90, 12, 0.45);
  transform: translateY(-2px);
}

.btn-orange-outline {
  background-color: transparent;
  color: var(--orange-500);
  border: 1.5px solid var(--orange-500);
}

.btn-orange-outline:hover {
  background-color: var(--orange-500);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy-outline {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-navy-outline:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-disabled, .btn-disabled:hover {
  background-color: var(--gray-300) !important;
  color: var(--gray-600) !important;
  box-shadow: none !important;
  transform: none !important;
  cursor: not-allowed !important;
  border: none !important;
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 10px rgba(6, 22, 48, 0.05);
  transition: all var(--transition-normal);
}

.site-header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(6, 22, 48, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo Liderar Header */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-text {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

.brand-text .accent-a {
  color: var(--orange-500);
}

/* Navigation Menu */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

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

.nav-link {
  color: var(--navy-800);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover {
  color: var(--orange-500);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange-500);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--navy-800);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  background: radial-gradient(circle at 80% 20%, #122B52 0%, var(--navy-800) 60%, var(--navy-900) 100%);
  color: var(--white);
  padding-top: 140px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

/* Tech nodes background effect */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(232, 90, 12, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(18, 43, 82, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange-500);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Hero Media Frame */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-image-wrapper img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: right center;
  display: block;
}

/* Network Overlay Graphics */
.hero-graph-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 22, 48, 0.1) 0%, rgba(6, 22, 48, 0.5) 100%);
}

/* --------------------------------------------------------------------------
   6. AGENDA SECTION (SEGUNDO BLOCO - PRIORITÁRIO)
   -------------------------------------------------------------------------- */
.agenda-section {
  padding: 65px 0;
  background-color: var(--gray-50);
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.agenda-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.agenda-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 2.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.25rem;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(6, 22, 48, 0.06);
  transition: all var(--transition-normal);
}

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

/* Badge de Data em Laranja */
.agenda-badge-date {
  background: var(--orange-500);
  color: var(--white);
  border-radius: var(--radius-md);
  width: 85px;
  height: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(232, 90, 12, 0.35);
  flex-shrink: 0;
}

.badge-day {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-month {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Conteúdo da Agenda */
.agenda-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.agenda-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.agenda-city {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

.agenda-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  flex-wrap: wrap;
}

.agenda-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.agenda-meta-item strong {
  color: var(--gray-800);
}

.agenda-meta-divider {
  color: var(--gray-400);
}

.icon-meta {
  width: 16px;
  height: 16px;
  stroke: var(--gray-500);
}

.agenda-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 0.2rem;
}

.agenda-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Empty State Agenda */
.agenda-empty-state {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px dashed var(--gray-300);
}

.agenda-empty-icon {
  width: 48px;
  height: 48px;
  stroke: var(--gray-400);
  margin: 0 auto 1rem;
}

.agenda-empty-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.35rem;
}

.agenda-empty-text {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* --------------------------------------------------------------------------
   7. BENEFÍCIOS ("O QUE O LIDERAR DESENVOLVE")
   -------------------------------------------------------------------------- */
.benefits-section {
  padding: 80px 0;
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background-color: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
}

.benefit-card:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(232, 90, 12, 0.2);
}

.benefit-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: rgba(6, 22, 48, 0.05);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all var(--transition-fast);
}

.benefit-card:hover .benefit-icon-wrapper {
  background-color: var(--orange-100);
}

.benefit-icon-wrapper svg {
  width: 30px;
  height: 30px;
  stroke: var(--navy-800);
  transition: stroke var(--transition-fast);
}

.benefit-card:hover .benefit-icon-wrapper svg {
  stroke: var(--orange-500);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.75rem;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   8. JORNADA DE TRANSFORMAÇÃO (4 PASSOSTEPS)
   -------------------------------------------------------------------------- */
.journey-section {
  padding: 80px 0;
  background-color: var(--gray-50);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.journey-step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--navy-800);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(6, 22, 48, 0.2);
}

.step-icon-circle svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
}

.step-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange-500);
  margin-bottom: 0.25rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}

.step-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Seta de navegação entre passos */
.journey-step-card:not(:last-child)::after {
  content: '›';
  position: absolute;
  top: 18px;
  right: -0.9rem;
  font-size: 2rem;
  font-weight: 300;
  color: var(--orange-500);
}

/* --------------------------------------------------------------------------
   9. SEÇÃO INSTITUCIONAL & PARA QUEM É
   -------------------------------------------------------------------------- */
.about-section {
  padding: 80px 0;
  background-color: var(--white);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.target-card {
  background: var(--gray-50);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange-500);
  box-shadow: var(--shadow-sm);
}

.target-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}

.target-card-text {
  font-size: 0.925rem;
  color: var(--gray-600);
}

/* --------------------------------------------------------------------------
   10. DIAGNÓSTICO EMPRESARIAL FORJAR (BLOCO DESTAQUE)
   -------------------------------------------------------------------------- */
.forjar-section {
  padding: 50px 0;
  background-color: var(--white);
}

.forjar-card {
  background: linear-gradient(135deg, #FFF9F2 0%, #FFF3E5 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  border: 1px solid rgba(217, 130, 43, 0.25);
  box-shadow: 0 10px 30px rgba(217, 130, 43, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.forjar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-right: 2.5rem;
  border-right: 1px solid rgba(217, 130, 43, 0.2);
}

.forjar-logo-img {
  width: 140px;
  height: auto;
  margin-bottom: 0.75rem;
}

.forjar-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.forjar-content h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.forjar-content p {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 1.75rem;
  max-width: 650px;
}

/* --------------------------------------------------------------------------
   11. BANNER INSTITUCIONAL — LEVE O LIDERAR PARA SUA EMPRESA OU CIDADE
   -------------------------------------------------------------------------- */
.regional-section {
  padding: 40px 0 80px;
  background-color: var(--white);
}

.regional-banner {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 15px 35px rgba(6, 22, 48, 0.25);
  position: relative;
  overflow: hidden;
}

.regional-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 90, 12, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.regional-info {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  z-index: 1;
}

.regional-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.regional-icon-box svg {
  width: 32px;
  height: 32px;
  stroke: var(--orange-500);
}

.regional-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.regional-action {
  z-index: 1;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. FOOTER (RODAPÉ INSTITUCIONAL)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--navy-900);
  color: var(--white);
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand-divider {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-domain {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

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

.social-icon-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-link:hover {
  background: var(--orange-500);
  transform: translateY(-2px);
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Assinatura de Tecnologia ALFREDO360 */
.footer-tech-signature {
  text-align: center;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
}

.tech-signature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.tech-signature-link:hover {
  transform: translateY(-1px);
}

.tech-text-white {
  color: var(--white);
  font-weight: 400;
}

.tech-text-orange {
  color: var(--orange-500);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   13. MEDIA QUERIES & RESPONSIVIDADE (320px, 375px, 768px, 1024px, 1366px, 1920px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .journey-step-card:not(:last-child)::after {
    display: none;
  }

  .forjar-card {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.25rem 1.75rem;
  }

  .forjar-brand {
    border-right: none;
    border-bottom: 1px solid rgba(217, 130, 43, 0.2);
    padding-right: 0;
    padding-bottom: 1.25rem;
  }
}

@media (max-width: 868px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 15px 35px rgba(6, 22, 48, 0.15);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
  }

  .main-nav.is-active {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    width: 100%;
  }

  .nav-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-800);
  }

  .nav-link:hover {
    color: var(--orange-500);
  }

  .mobile-cta {
    width: 100%;
    max-width: 280px;
    margin-top: 0.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .agenda-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }

  .agenda-card-content {
    align-items: center;
  }

  .agenda-meta {
    justify-content: center;
  }

  .target-grid {
    grid-template-columns: 1fr;
  }

  .regional-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.25rem 1.5rem;
  }

  .regional-info {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 105px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.15;
  }

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

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-image-wrapper img {
    height: 270px;
  }

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

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

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .forjar-card {
    padding: 1.5rem 1.15rem;
    border-radius: var(--radius-md);
  }

  .forjar-content h3 {
    font-size: 1.45rem;
  }

  .forjar-content p {
    font-size: 0.925rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .forjar-logo-img {
    width: 110px;
  }

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

  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
}

@media (max-width: 375px) {
  .container {
    padding: 0 1rem;
  }
  
  .btn {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.875rem;
  }

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

  .agenda-card {
    padding: 1.25rem 0.85rem;
  }

  .badge-day {
    font-size: 1.65rem;
  }

  .agenda-badge-date {
    width: 70px;
    height: 70px;
  }

  .forjar-card {
    padding: 1.25rem 0.85rem;
  }
}

/* Accessiblity: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
