/* ==========================================================================
   JESSICA GUEVARA - DIPUTADA (JP) | DESIGN SYSTEM & MAIN STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Institutional Brand Palette - Partido JP */
  --jp-green: #0d8a4e;
  --jp-green-light: #15b367;
  --jp-green-dark: #075831;
  --jp-green-glow: rgba(13, 138, 78, 0.25);
  
  --jp-red: #e52e39;
  --jp-red-hover: #c91c27;
  --jp-red-light: #ffeeef;
  --jp-red-glow: rgba(229, 46, 57, 0.2);

  --jp-gold: #d97706;
  --jp-gold-light: #fbbf24;

  /* Executive Dark Slate Scale */
  --dark-bg: #070d18;
  --dark-surface: #0f192b;
  --dark-surface-2: #16243d;
  --dark-text: #f1f5f9;
  
  /* Light Neutral Scale */
  --bg-light: #f8fafc;
  --bg-light-alt: #f1f5f9;
  --surface-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;

  /* Borders & Shadows */
  --border-light: #e2e8f0;
  --border-glass: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
  --shadow-glow-green: 0 0 40px rgba(13, 138, 78, 0.3);
  --shadow-glow-red: 0 0 40px rgba(229, 46, 57, 0.25);

  /* Layout & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1280px;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

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

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

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

/* Section Header Styles */
.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-tag.green {
  background: rgba(13, 138, 78, 0.1);
  color: var(--jp-green);
  border: 1px solid rgba(13, 138, 78, 0.25);
}

.badge-tag.red {
  background: var(--jp-red-light);
  color: var(--jp-red);
  border: 1px solid rgba(229, 46, 57, 0.3);
}

.section-title {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Institutional Color Accent Spans */
.text-green {
  color: var(--jp-green);
}
.text-red {
  color: var(--jp-red);
}
.text-gradient {
  background: linear-gradient(135deg, var(--jp-green) 0%, #086b3b 50%, var(--jp-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
