/* ========================================
   JCI Lajeado — Design System
   Brand Guide v1.2 — Nov 2025
   ======================================== */

:root {
  /* Cores Principais da Marca */
  --jci-blue: #0097D7;
  --jci-black: #130F2D;
  --jci-white: #FFFFFF;

  /* Cores Secundárias da Marca */
  --jci-navy: #1F4789;
  --jci-teal: #57BCBC;
  --jci-yellow: #EFC40F;

  /* Tons derivados para layout escuro (hero) */
  --bg-dark: #0e0b22;
  --bg-section: #16123a;
  --bg-card: #1c1745;
  --border-subtle: rgba(0, 151, 215, 0.12);

  /* Tema claro (seções) */
  --bg-light: #FFFFFF;
  --bg-light-alt: #f5f7fa;
  --bg-light-card: #FFFFFF;
  --border-light: rgba(19, 15, 45, 0.08);

  /* Texto escuro (tema claro) */
  --text-dark: #130F2D;
  --text-dark-secondary: #4a4563;
  --text-dark-muted: #8a849e;

  /* Texto claro (tema escuro / hero) */
  --text-primary: #FFFFFF;
  --text-secondary: #b3afd0;
  --text-muted: #7b77a0;

  /* Tipografia — Plus Jakarta Sans + Arvo */
  --font-primary: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-secondary: 'Arvo', Georgia, serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ========================================
   Reset & Base
   ======================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

input, textarea {
  font-family: inherit;
}

/* ========================================
   Layout
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

/* ========================================
   Reveal Animations
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Navigation
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
  padding: 0.5rem 0;
  background: rgba(14, 11, 34, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav.scrolled .nav-logo-img {
  height: 42px;
  padding: 4px 10px;
}

.nav.menu-open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: none !important;
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s var(--ease-out-expo);
  background: #FFFFFF;
  padding: 8px 18px;
  border-radius: 10px;
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--jci-blue);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

.nav-glow {
  padding: 0.5rem 1.1rem !important;
  font-size: 0.8rem !important;
  border-radius: 100px;
  background: linear-gradient(135deg, #EFC40F, #d4a80a) !important;
  color: #1a5c2a !important;
  font-weight: 700 !important;
  animation: glow-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(239, 196, 15, 0.4);
}

.nav-glow::after {
  display: none !important;
}

.nav-glow:hover {
  background: linear-gradient(135deg, #f5d030, #EFC40F) !important;
  box-shadow: 0 0 25px rgba(239, 196, 15, 0.6);
  transform: scale(1.05);
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(239, 196, 15, 0.3); }
  50% { box-shadow: 0 0 25px rgba(239, 196, 15, 0.6), 0 0 50px rgba(239, 196, 15, 0.2); }
}

.nav-passaporte {
  padding: 0.5rem 1.1rem !important;
  font-size: 0.8rem !important;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--jci-black) !important;
  font-weight: 700 !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  animation: white-glow 2s ease-in-out infinite;
  white-space: nowrap;
}

.nav-passaporte::after {
  display: none !important;
}

.nav-passaporte:hover {
  background: #FFFFFF !important;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
}

@keyframes white-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 0 25px rgba(255, 255, 255, 0.7), 0 0 50px rgba(255, 255, 255, 0.2); }
}

.nav-cta {
  padding: 0.5rem 1.1rem !important;
  border: 1px solid var(--jci-blue) !important;
  border-radius: 100px;
  color: var(--jci-blue) !important;
  transition: all 0.3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--jci-blue) !important;
  color: var(--jci-white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: url('img/hero-bg.png') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 11, 34, 0.82);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 151, 215, 0.15), transparent 70%);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31, 71, 137, 0.5), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(87, 188, 188, 0.1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 151, 215, 0.25);
  background: rgba(0, 151, 215, 0.06);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--jci-teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jci-blue);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.title-line {
  display: block;
}

.title-highlight {
  color: var(--jci-blue);
  font-style: normal;
}

.hero-subtitle {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.3125rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out-expo);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--jci-blue);
  color: var(--jci-white);
}

.btn-primary:hover {
  background: #00aaef;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 151, 215, 0.35);
}

.btn-ghost {
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  border-color: var(--jci-blue);
  color: var(--jci-blue);
  transform: translateY(-2px);
}

.btn-yellow {
  background: linear-gradient(135deg, #FFD700, #FFC200, #FFD700);
  color: #1a5c2a;
  animation: btn-glow 2s ease-in-out infinite, btn-blink 3s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(239, 196, 15, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-yellow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 3s ease-in-out infinite;
}

.btn-yellow:hover {
  background: linear-gradient(135deg, #FFE44D, #FFD700);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 35px rgba(255, 215, 0, 0.7);
  animation: none;
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.3); }
}

@keyframes btn-blink {
  0%, 85%, 100% { opacity: 1; }
  90% { opacity: 0.6; }
  95% { opacity: 1; }
}

@keyframes btn-shine {
  0%, 65% { left: -60%; }
  100% { left: 120%; }
}

.btn-lg {
  padding: 1.1rem 2.75rem;
  font-size: 1.2rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ========================================
   Hero Stats
   ======================================== */

.hero-stats {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
  padding: 2rem 3rem;
  background: rgba(31, 71, 137, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--jci-blue);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--jci-blue);
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 151, 215, 0.15);
}

/* ========================================
   Hero Scroll Indicator
   ======================================== */

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--jci-blue), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 20px; }
}

/* ========================================
   Section Tags & Titles
   ======================================== */

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--jci-blue);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em {
  color: var(--jci-blue);
  font-style: normal;
}

.section-title-center {
  text-align: center;
}

.section-text {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ========================================
   About Section
   ======================================== */

.section-about {
  background: linear-gradient(to bottom, var(--bg-dark), #151240, #1e1a55);
  padding-top: 10rem;
}

.section-about .section-tag {
  color: var(--jci-teal);
}

.section-about .section-title {
  color: var(--text-primary);
}

.section-about .section-title em {
  color: var(--jci-teal);
}

.section-about .section-text {
  color: rgba(255, 255, 255, 0.75);
}

.section-about .section-text strong {
  color: var(--text-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-label {
  position: sticky;
  top: 8rem;
}

/* ========================================
   Purpose Section
   ======================================== */

.section-purpose {
  background: linear-gradient(to bottom, #1e1a55, #3d3880, #6a65a8);
}

.section-purpose .section-tag {
  color: var(--jci-teal);
}

.section-purpose .section-title {
  color: var(--text-primary);
}

.section-purpose .section-title em {
  color: var(--jci-teal);
}

.purpose-header {
  margin-bottom: 4rem;
}

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

.purpose-card {
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-out-expo);
}

.purpose-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.purpose-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 151, 215, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--jci-blue);
}

.purpose-card h3 {
  font-family: var(--font-primary);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.purpose-card p {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ========================================
   Principles Section
   ======================================== */

.section-principles {
  background: linear-gradient(to bottom, #6a65a8, #9590c0, #c0bdd8, #e0dfed, var(--bg-light));
}

.section-principles .section-tag {
  color: var(--jci-teal);
}

.section-principles .section-title {
  color: var(--text-dark);
}

.section-principles .section-title em {
  color: var(--jci-navy);
}

.principles-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.principles-left {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.principle {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: flex-start;
}

.principle:last-child {
  border-bottom: none;
}

.principle-number {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--jci-teal);
  min-width: 2rem;
  opacity: 0.7;
}

.principle p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
}

.principle:nth-child(1) p { color: rgba(255, 255, 255, 0.9); }
.principle:nth-child(2) p { color: rgba(255, 255, 255, 0.85); }
.principle:nth-child(3) p { color: var(--jci-black); }
.principle:nth-child(4) p { color: var(--jci-black); }
.principle:nth-child(5) p { color: var(--text-dark); }
.principle:nth-child(6) p { color: var(--text-dark); }

.principle:nth-child(1) .principle-number { color: var(--jci-teal); }
.principle:nth-child(2) .principle-number { color: var(--jci-teal); }
.principle:nth-child(3) .principle-number { color: var(--jci-navy); }
.principle:nth-child(4) .principle-number { color: var(--jci-navy); }
.principle:nth-child(5) .principle-number { color: var(--jci-navy); }
.principle:nth-child(6) .principle-number { color: var(--jci-navy); }

.principle:nth-child(3),
.principle:nth-child(4),
.principle:nth-child(5),
.principle:nth-child(6) {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* ========================================
   Areas Section
   ======================================== */

.section-areas {
  background: var(--bg-light);
}

.section-areas .section-title {
  color: var(--text-dark);
}

.section-areas .section-title em {
  color: var(--jci-blue);
}

.areas-header {
  margin-bottom: 4rem;
}

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

.area-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: var(--bg-light-card);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jci-blue), var(--jci-teal));
  opacity: 0;
  transition: opacity 0.5s;
}

.area-card:hover {
  border-color: rgba(0, 151, 215, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.area-card:hover::before {
  opacity: 1;
}

.area-number {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--jci-teal);
  opacity: 0.6;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

.area-icon {
  color: var(--jci-blue);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.area-card h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.area-card p {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-dark-secondary);
  line-height: 1.7;
}

/* ========================================
   Convenção Nacional Section
   ======================================== */

.section-convencao {
  background: var(--bg-light);
}

.section-convencao .section-tag {
  color: var(--jci-yellow);
  background: rgba(239, 196, 15, 0.1);
  padding: 0.3rem 1rem;
  border-radius: 100px;
}

.section-convencao .section-title {
  color: var(--text-dark);
}

.section-convencao .section-title em {
  color: var(--jci-blue);
}

.section-convencao .section-text {
  color: var(--text-dark-secondary);
}

.section-convencao .section-text strong {
  color: var(--text-dark);
}

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

.convencao-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.convencao-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark-secondary);
  font-size: 1.125rem;
}

.convencao-detail svg {
  color: var(--jci-blue);
  flex-shrink: 0;
}

.convencao-detail strong {
  color: var(--text-dark);
}

.convencao-slogan {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 1.375rem;
  color: var(--jci-navy);
}

.convencao-banner {
  display: flex;
  justify-content: center;
}

.convencao-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s var(--ease-out-expo);
}

.convencao-banner img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .convencao-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ========================================
   Passaporte Gastronômico Section
   ======================================== */

.section-passaporte {
  background: var(--bg-light);
  text-align: center;
}

.section-passaporte .section-tag {
  color: var(--jci-blue);
}

.section-passaporte .section-title {
  color: var(--text-dark);
}

.passaporte-content {
  max-width: 750px;
  margin: 0 auto;
}

.passaporte-icon-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.passaporte-icon-large img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.passaporte-desc {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.passaporte-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.passaporte-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark-secondary);
  font-size: 1rem;
  font-weight: 500;
}

.passaporte-feature svg {
  color: var(--jci-blue);
}

@media (max-width: 768px) {
  .passaporte-features {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ========================================
   CTA Section
   ======================================== */

.section-cta {
  padding: 4rem 0;
  background: var(--bg-light);
}

.cta-box {
  text-align: center;
  padding: 5rem 3rem;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--jci-navy), #2a5ba8);
  border: 1px solid rgba(0, 151, 215, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 151, 215, 0.15), transparent 70%);
  border-radius: 50%;
}

.cta-box h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
}

.cta-box h2 em {
  color: var(--jci-yellow);
  font-style: normal;
}

.cta-box p {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
}

/* ========================================
   Contact Section
   ======================================== */

.section-contact {
  background: var(--bg-light);
}

.section-contact .section-tag {
  color: var(--jci-blue);
}

.section-contact .section-title {
  color: var(--text-dark);
}

.section-contact .section-title em {
  color: var(--jci-blue);
}

.section-contact .section-text {
  color: var(--text-dark-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-dark-secondary);
  font-size: 1.0625rem;
}

.contact-item svg {
  color: var(--jci-blue);
  flex-shrink: 0;
}

.contact-item a {
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--jci-blue);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.25rem;
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 0.9375rem;
  transition: all 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dark-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--jci-blue);
  background: var(--bg-light-card);
  box-shadow: 0 0 0 3px rgba(0, 151, 215, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  padding: 3rem 0;
  background: var(--bg-light);
}

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

.footer-brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer .logo-city {
  color: var(--text-dark-muted);
}

.footer-text {
  font-family: var(--font-secondary);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--jci-blue);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  opacity: 0.6;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .principles-left {
    position: static;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .nav.menu-open {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
  }

  .nav.menu-open .nav-container {
    position: relative;
    height: 100%;
  }

  .nav.menu-open .nav-logo {
    display: none;
  }

  .nav.menu-open .nav-toggle {
    position: absolute;
    top: 0.75rem;
    right: 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    width: 100%;
    height: 100%;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .nav-links a:hover {
    color: #fff !important;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
    min-height: 100svh;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    margin-top: 3rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

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

  .about-label {
    position: static;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-box {
    padding: 3rem 1.5rem;
  }

  .hero-scroll {
    display: none;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .nav-glow {
    font-size: 0.95rem !important;
    padding: 0.65rem 1.5rem !important;
  }

  .nav-links a.nav-passaporte {
    font-size: 0.95rem !important;
    padding: 0.65rem 1.5rem !important;
    color: #130F2D !important;
    background: rgba(255, 255, 255, 0.95) !important;
  }
}

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

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

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }
}
