/* Permite que emails largos no se salgan del contenedor */
.break-email {
  word-break: break-all;
  overflow-wrap: anywhere;
}
/* Cambia el color del texto de los botones principales de acción en el home */
.home-btn,
.home-btn span,
.home-btn svg {
  color: var(--color-primary-dark) !important;
}

.home-btn-primary {
  color: #fff !important;
  background: var(--color-primary);
}
.home-btn-primary span,
.home-btn-primary svg {
  color: #fff !important;
}

.home-btn-secondary {
  color: var(--color-primary-dark) !important;
  background: #fff3cd;
  border: 1.5px solid #ffeeba;
}
.home-btn-secondary span,
.home-btn-secondary svg {
  color: var(--color-primary-dark) !important;
}
/* Banner de mantenimiento debajo del formulario PQR */
.form-banner-arreglo {
  margin: 2rem auto 0 auto;
  max-width: 800px;
  background: #fff3cd;
  color: #1a237e;
  border: 1.5px solid #ffeeba;
  border-radius: 8px;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 2px 8px 0 #0001;
}
/* Estilo para el enlace de correo en el formulario de contacto */
.correo-link {
  color: #006eff;
  background: #faaf4e;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  text-decoration: underline;
  transition:
    color 0.2s,
    background 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  display: inline-block;
}
.correo-link:hover {
  color: #fff;
  background: #1a73e8;
}
/* ============================================
   SIDEBAR OSCURO REUTILIZABLE
   ============================================ */
.sidebar-dark {
  background: #000000 !important;
  color: #fff !important;
  border-radius: 20px !important;
  border: 1px solid #000000 !important;
  box-shadow: none !important;
}

.sidebar-dark h1,
.sidebar-dark h2,
.sidebar-dark h3,
.sidebar-dark h4,
.sidebar-dark h5,
.sidebar-dark h6 {
  color: #000000 !important;
}

.sidebar-dark p,
.sidebar-dark li,
.sidebar-dark span,
.sidebar-dark a {
  color: #000000 !important;
}

/* Para aplicar el estilo oscuro a cualquier sidebar, solo agrega la clase 'sidebar-dark' al contenedor principal del sidebar. Ejemplo:
   <div class="sidebar-card sidebar-dark"> ... </div>
*/
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap");

:root {
  /* Colores principales - inspirados en servicios públicos de aseo */
  --color-primary: #3d5c3a; /* Verde natural - sostenibilidad */
  --color-primary-light: #7a9f76; /* Verde medio natural */
  --color-primary-dark: #2a3f28; /* Verde muy oscuro */

  --color-secondary: #e89f5b; /* Naranja cálido - energía */
  --color-secondary-light: #e8b485;
  --color-secondary-dark: #d17f3f;

  --color-accent: #e8b485; /* Naranja durazno - calidez */
  --color-accent-light: #f4d1a8;
  --color-accent-dark: #e89f5b;

  /* Colores de estado */
  --color-success: #7a9f76;
  --color-warning: #e89f5b;
  --color-error: #f44336;
  --color-info: #2196f3;

  /* Grises */
  --color-gray-50: #fafafa;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #eeeeee;
  --color-gray-300: #e0e0e0;
  --color-gray-400: #bdbdbd;
  --color-gray-500: #9e9e9e;
  --color-gray-600: #757575;
  --color-gray-700: #616161;
  --color-gray-800: #424242;
  --color-gray-900: #212121;

  /* Texto */
  --color-text-primary: #212121;
  --color-text-secondary: #757575;
  --color-text-disabled: #bdbdbd;
  --color-text-white: #ffffff;

  /* Fondos */
  --color-bg-white: #ffffff;
  --color-bg-light: #f5f3ea;
  --color-bg-gray: #e5e4ce;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 3px 6px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 15px 25px rgba(0, 0, 0, 0.15), 0 5px 10px rgba(0, 0, 0, 0.05);

  /* Espaciado */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Bordes */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-full: 9999px;

  /* Transiciones */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  /* Tipografía */
  --font-family-base:
    "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  --font-family-heading:
    "Nunito Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --transition-base: 250ms ease-in-out;
}

/* Reset base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-base);
}

p {
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-relaxed);
}

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

a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

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

/* Utilidades */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--spacing-lg);
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: var(--spacing-md);
}
.mt-2 {
  margin-top: var(--spacing-lg);
}
.mt-3 {
  margin-top: var(--spacing-xl);
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: var(--spacing-md);
}
.mb-2 {
  margin-bottom: var(--spacing-lg);
}
.mb-3 {
  margin-bottom: var(--spacing-xl);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.section-title p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
}

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

.bg-white {
  background-color: var(--color-bg-white);
}

.bg-primary {
  background-color: var(--color-primary);
  color: var(--color-text-white);
}

.bg-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-white);
}

/* ============================================
   NAVBAR MODERNIZADO
   ============================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #1a1a1a;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-brand:hover {
  color: #1a1a1a;
  text-decoration: none;
}

.navbar-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.navbar-company {
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-menu > a,
.navbar-item > a {
  color: #303030;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.navbar-menu > a:hover,
.navbar-item > a:hover {
  color: #111111;
  text-decoration: none;
}

.navbar-item {
  position: relative;
}

.navbar-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
}

.dropdown {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  min-width: 270px;
  padding: 0.6rem;
  display: grid;
  gap: 0.25rem;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.dropdown a {
  color: #3a3a3a;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: none;
}

.dropdown a:hover {
  color: #111111;
  background: #f5f5f5;
  text-decoration: none;
}

.navbar-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
}

.navbar-toggle span {
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

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

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

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

@media (max-width: 992px) {
  .navbar .container {
    min-height: 72px;
  }

  .navbar-toggle {
    display: inline-flex;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu > a,
  .navbar-item > a {
    padding: 1rem 0.25rem;
  }

  .navbar-item > a {
    min-height: auto;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    min-width: 100%;
    margin-top: 0.25rem;
    padding: 0.4rem 0 0.4rem 0.8rem;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .navbar-item:hover .dropdown {
    transform: none;
  }

  .navbar-item.active .dropdown {
    display: grid;
  }

  .dropdown a {
    padding: 0.75rem 0.9rem;
  }
}

/* ============================================
   SERVICIOS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--color-primary);
}

/* ============================================
   NOTICIAS
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-secondary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-grid {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-column a:hover {
  color: white;
  padding-left: 5px;
  transition: all 0.3s ease;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid p,
.footer-grid a,
.footer-grid h5,
.footer-grid h4,
.footer-grid span,
.footer-grid strong {
  color: #ffffff !important;
}
.footer-bottom p,
a {
  color: rgba(255, 255, 255, 0.6) !important;
}
/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--color-secondary);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

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

/* ============================================
   MARCA Y MEMBRETES
   ============================================ */

.brand-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    rgba(46, 125, 50, 0.96),
    rgba(76, 175, 80, 0.92)
  );
  color: #fff;
}

.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(255, 255, 255, 0.2),
      transparent 45%
    ),
    radial-gradient(circle at 85% 80%, rgba(2, 119, 189, 0.2), transparent 40%);
}

.brand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/image.svg") no-repeat right 6% center / 220px;
  opacity: 0.1;
  pointer-events: none;
}

.brand-hero .container {
  position: relative;
  z-index: 1;
}

.logo-watermark {
  position: relative;
  overflow: hidden;
}

.logo-watermark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/image.svg") no-repeat center center / 180px;
  opacity: 0.06;
  pointer-events: none;
}

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

.membrete {
  border-left: 5px solid var(--color-accent);
  background: linear-gradient(
    90deg,
    rgba(255, 167, 38, 0.12),
    rgba(255, 255, 255, 0.7)
  );
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
}

.card-elegant {
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.08);
  padding: 1.5rem;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.card-elegant:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(27, 94, 32, 0.12);
}

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

.btn-natural {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: #fff;
  border: none;
}

.btn-natural:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(0.95);
}

/* ============================================
   PAGE HERO OVERRIDES
   ============================================ */

.page-hero,
.hero {
  background: #ffffff !important;
  color: #1a1a1a !important;
  padding: 10rem 1rem 4rem !important;
  text-align: center !important;
  border-bottom: 1px solid #eaeaea !important;
}

.page-hero h1,
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.04em !important;
  color: #1a1a1a !important;
  font-family: "Nunito Sans", system-ui, sans-serif !important;
}

.page-subtitle {
  font-size: 1.25rem !important;
  color: #616161 !important;
  max-width: 650px !important;
  margin: 0 auto !important;
}

/* ============================================
   CONTAINER AND CARD OVERRIDES
   ============================================ */

.content-grid {
  gap: 3rem !important;
  align-items: start !important;
}

.card,
.value-card,
.sidebar-card,
.info-box {
  background: #fafafa !important;
  border-radius: 20px !important;
  border: 1px solid #eaeaea !important;
  box-shadow: none !important;
  padding: 2.5rem 2rem !important;
  transition:
    transform 0.3s ease,
    background 0.3s ease !important;
  color: #ffffff !important;
}

.value-card:hover,
.card:hover {
  transform: translateY(-4px) !important;
  background: #f0f0f0 !important;
}

/* ============================================
   TYPOGRAPHY OVERRIDES
   ============================================ */

h2,
h3,
h4 {
  color: #1a1a1a !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  font-family: "Nunito Sans", system-ui, sans-serif !important;
}

p,
li,
span {
  color: #616161 !important;
  line-height: 1.6 !important;
}

/* ============================================
   SIDEBAR & INFO BOX
   ============================================ */

.sidebar {
  align-self: start !important;
}

.sidebar-card h4 {
  border-bottom: 1px solid #eaeaea !important;
  padding-bottom: 1rem !important;
  margin-bottom: 1.5rem !important;
  color: #1a1a1a !important;
}

.info-box {
  border-left: none !important;
}

.info-item {
  border-bottom: 1px solid #eaeaea !important;
  padding: 1rem 0 !important;
  color: #1a1a1a !important;
}

/* ============================================
   BUTTONS RESTYLED
   ============================================ */

.btn-sidebar,
.btn-primary,
.btn,
.news-cta .btn {
  background: #ffffff !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  padding: 0.875rem 2rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border: 1px solid #000000 !important;
  transition:
    transform 0.2s,
    background 0.2s !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-sidebar:hover,
.btn-primary:hover,
.btn:hover {
  transform: translateY(-2px) !important;
  background: #fad8a5 !important;
  box-shadow: none !important;
}
/* 
.btn-sidebar a,
.btn-icon span {
  color: #ffffff !important;
} */

/* ============================================
   SECTION FIX
   ============================================ */

.section {
  padding: 6rem 1rem !important;
}

.bg-light {
  background: #ffffff !important;
}

/* ============================================
   BRAND HERO CLEAN
   ============================================ */

.brand-hero,
.brand-hero-clean {
  background: #ffffff !important;
  color: #1a1a1a !important;
  padding: 10rem 1rem 4rem !important;
  text-align: center !important;
  border-bottom: 1px solid #eaeaea !important;
}

.brand-hero::before,
.brand-hero::after {
  display: none !important;
}

.brand-hero h1,
.brand-hero-clean h1 {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.04em !important;
  color: #1a1a1a !important;
  font-family: "Nunito Sans", system-ui, sans-serif !important;
  margin-bottom: 1rem !important;
}

.brand-hero p,
.brand-hero-clean p {
  color: #616161 !important;
  font-size: 1.25rem !important;
  margin: 0 auto !important;
  max-width: 650px !important;
}

.news-article {
  background: #fafafa !important;
  border-radius: 20px !important;
  border: 1px solid #eaeaea !important;
  box-shadow: none !important;
  transition:
    transform 0.3s ease,
    background 0.3s ease !important;
}

.news-article:hover {
  transform: translateY(-4px) !important;
  background: #f0f0f0 !important;
  box-shadow: none !important;
}

/* ============================================
   HEADER ANTIGRAVITY STYLES
   ============================================ */

.ag-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0 2rem;
  font-family: "Nunito Sans", system-ui, sans-serif;
}

.ag-header-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ag-header-container a {
  color: #1a1a1a !important;
  text-decoration: none !important;
}
.ag-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
  color: #1a1a1a !important;
}

.ag-logo img {
  width: 24px;
  height: 24px;
}

.ag-logo span {
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.ag-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ag-nav-link {
  text-decoration: none;
  color: #424242;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.ag-nav-link:hover {
  color: #1a1a1a;
}

.ag-dropdown {
  position: relative;
  height: 72px;
  display: flex;
  align-items: center;
}

.ag-dropdown-menu {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  display: flex;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex-direction: column;
}

.ag-dropdown:hover .ag-dropdown-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ag-dropdown.active .ag-dropdown-menu {
  display: flex;
}

.ag-dropdown-menu a {
  text-decoration: none;
  color: #424242;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
}

.ag-dropdown-menu a:hover {
  background: #f5f5f5;
  color: #1a1a1a;
}

.ag-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ag-btn-download {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

.ag-btn-download:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark),
    var(--color-primary)
  );
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(61, 92, 58, 0.35);
}

.ag-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
  padding: 0.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
  .ag-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #eaeaea;
  }

  .ag-nav.active {
    display: flex;
  }

  .ag-dropdown {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .ag-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0 1rem;
    background: transparent;
    display: none;
  }

  .ag-dropdown.active .ag-dropdown-menu {
    display: flex;
  }

  .ag-mobile-menu-btn {
    display: block;
  }

  .ag-btn-download {
    display: none;
  }
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(61, 92, 58, 0.08);
  color: var(--color-primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(232, 159, 91, 0.12),
      transparent 26%
    ),
    radial-gradient(
      circle at 90% 18%,
      rgba(122, 159, 118, 0.14),
      transparent 24%
    ),
    #fffdf9;
  color: var(--color-primary-dark);
}

.home-main::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -6%;
  width: 320px;
  height: 340px;
  background: radial-gradient(
    ellipse at 30% 40%,
    rgba(122, 159, 118, 0.15),
    transparent 70%
  );
  border-radius: 45% 55% 60% 40% / 50% 40% 60% 50%;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-25deg);
}

.home-main::after {
  content: "";
  position: absolute;
  bottom: 8%;
  right: -5%;
  width: 380px;
  height: 420px;
  background: radial-gradient(
    ellipse at 60% 50%,
    rgba(232, 159, 91, 0.12),
    transparent 68%
  );
  border-radius: 60% 40% 45% 55% / 55% 60% 40% 45%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  transform: rotate(18deg);
}

.home-main h1,
.home-main h2,
.home-main h3,
.home-main strong {
  color: var(--color-primary-dark) !important;
}

.home-main p,
.home-main li,
.home-main time,
.home-main span {
  color: var(--color-primary);
}

.home-main a {
  color: var(--color-primary-dark);
}

.home-main a:hover {
  color: var(--color-primary);
}

.home-main > section {
  position: relative;
  z-index: 1;
}

/* Patrón de curvas de ruta desde sección de servicios en adelante */
.home-main > section:nth-child(n + 4) {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q25,30 50,50 T100,50' stroke='rgba(122,159,118,0.08)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0,70 Q30,55 60,70 T100,70' stroke='rgba(232,159,91,0.06)' stroke-width='1.2' fill='none'/%3E%3Cpath d='M0,30 Q20,15 40,30 T100,30' stroke='rgba(122,159,118,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-position:
    0 0,
    50px 50px;
}

.home-main > section:nth-child(n + 4)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(122, 159, 118, 0.04),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(232, 159, 91, 0.03),
      transparent 35%
    );
  pointer-events: none;
  z-index: 0;
}

.home-main > section:nth-child(n + 4) > .container {
  position: relative;
  z-index: 1;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 4rem;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.home-hero::before {
  top: 7rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background: rgba(232, 159, 91, 0.14);
}

.home-hero::after {
  right: -7rem;
  bottom: 0;
  width: 22rem;
  height: 22rem;
  background: rgba(122, 159, 118, 0.12);
}

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

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: center;
}

.home-hero-copy {
  display: grid;
  gap: 1.4rem;
}

.home-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(61, 92, 58, 0.08);
  box-shadow: 0 12px 30px rgba(61, 92, 58, 0.08);
  width: fit-content;
}

.home-brand-chip img {
  width: 2rem;
  height: 2rem;
}

.home-brand-chip span {
  font-family: var(--font-family-heading);
  font-weight: 700;
  color: var(--color-gray-800);
}

.home-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(61, 92, 58, 0.09);
  color: var(--color-primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.home-title {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #1c201d;
  max-width: 12ch;
}

.home-lead {
  max-width: 60ch;
  margin-bottom: 0;
  color: var(--color-primary);
  font-size: 1.12rem;
}

.home-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.home-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.home-btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark),
    var(--color-primary)
  );
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(42, 63, 40, 0.25);
}

.home-btn-primary:hover {
  color: #ffffff;
}

.home-btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(61, 92, 58, 0.12);
  color: var(--color-primary-dark);
}

.home-btn-ghost {
  color: var(--color-primary-dark);
  border-color: rgba(61, 92, 58, 0.12);
  background: rgba(255, 255, 255, 0.4);
}

.home-inline-icon,
.home-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-inline-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.home-hero-panel {
  display: grid;
  gap: 1rem;
}

.home-hero-panel-card {
  position: relative;
  padding: 1.8rem;
  border-radius: 28px;
  border: 1px solid rgba(61, 92, 58, 0.08);
  box-shadow: 0 22px 50px rgba(24, 33, 23, 0.08);
  overflow: hidden;
}

.home-hero-panel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.72)
    ),
    linear-gradient(140deg, rgba(232, 159, 91, 0.2), rgba(122, 159, 118, 0.16));
}

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

.home-panel-label,
.home-news-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(61, 92, 58, 0.09);
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-hero-panel-card h2 {
  margin: 0.85rem 0 0.75rem;
  font-size: 2rem;
  line-height: 1;
}

.home-hero-panel-card p {
  margin-bottom: 0;
}

.home-hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-panel-mini-card {
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(61, 92, 58, 0.08);
  box-shadow: 0 16px 34px rgba(24, 33, 23, 0.05);
}

.home-panel-mini-card strong,
.home-panel-mini-card p,
.home-panel-mini-card a {
  display: block;
}

.home-panel-mini-card strong {
  margin: 0.95rem 0 0.4rem;
  font-size: 1.05rem;
  color: var(--color-primary-dark);
}

.home-panel-mini-card p {
  margin-bottom: 0.75rem;
}

.home-panel-mini-card a {
  font-weight: 700;
}

.home-icon-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  color: var(--color-primary-dark);
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.16),
    rgba(122, 159, 118, 0.12)
  );
  border: 1px solid rgba(61, 92, 58, 0.08);
}

.home-icon-badge svg {
  width: 1.45rem;
  height: 1.45rem;
}

.home-trust-strip {
  padding: 0 0 1rem;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-trust-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(61, 92, 58, 0.08);
  box-shadow: 0 14px 30px rgba(24, 33, 23, 0.04);
}

.home-trust-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-primary-dark);
}

.home-trust-card p {
  margin-bottom: 0;
  color: var(--color-primary);
}

.home-section-soft {
  /* background:
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q25,30 50,50 T100,50' stroke='rgba(122,159,118,0.08)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0,70 Q30,55 60,70 T100,70' stroke='rgba(232,159,91,0.06)' stroke-width='1.2' fill='none'/%3E%3Cpath d='M0,30 Q20,15 40,30 T100,30' stroke='rgba(122,159,118,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, #f8f7f2 100%) !important; */
  background-size:
    200px 200px,
    100% 100%;
  background-position:
    0 0,
    0 0;
}

.home-section-header h2 {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

.home-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.7rem;
  border-radius: 24px;
  border: 1px solid rgba(61, 92, 58, 0.08);
  box-shadow: 0 18px 36px rgba(24, 33, 23, 0.05);
}

.home-card h3 {
  margin-bottom: 0;
  color: var(--color-primary-dark) !important;
}

.home-card p {
  margin-bottom: 0;
}

.home-card a {
  margin-top: auto;
  font-weight: 700;
}

.home-card-service {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.98)
    ),
    #ffffff;
}

.home-card-service-cta {
  background: linear-gradient(
    155deg,
    rgba(61, 92, 58, 0.98),
    rgba(122, 159, 118, 0.95)
  ) !important;
}

.home-card-service-cta h3,
.home-card-service-cta p,
.home-card-service-cta a,
.home-card-service-cta .home-icon-badge {
  color: #ffffff !important;
}

.home-card-service-cta .home-icon-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.home-mini-grid-featured {
  gap: 1.25rem;
}

.home-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.home-stat-card {
  padding: 1.25rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(61, 92, 58, 0.08);
  box-shadow: 0 10px 24px rgba(27, 94, 32, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.home-stat-card strong {
  display: block;
  color: var(--color-primary-dark);
  font-size: 1.15rem;
}

.home-stat-card p {
  margin-bottom: 0;
  color: var(--color-primary);
}

.home-stat-card a {
  margin-top: auto;
  font-weight: 700;
}

.home-stat-card-accent {
  background: linear-gradient(
    145deg,
    rgba(232, 159, 91, 0.16),
    rgba(255, 255, 255, 0.95)
  );
}

.home-news-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #ece7de;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.04);
}

.home-news-card-light {
  background: #ffffff;
}

.home-news-card time {
  color: var(--color-primary-light);
  font-size: 0.9rem;
  font-weight: 700;
}

.home-news-card h3 {
  margin-bottom: 0;
}

.home-news-card p {
  margin-bottom: 0;
}

.home-news-card a {
  margin-top: auto;
  font-weight: 700;
}

.home-news-card-featured {
  background:
    linear-gradient(165deg, rgba(61, 92, 58, 0.94), rgba(122, 159, 118, 0.92)),
    #ffffff;
  color: #ffffff;
}

.home-news-card-featured h3,
.home-news-card-featured p,
.home-news-card-featured time,
.home-news-card-featured a,
.home-news-card-featured .home-news-label {
  color: #ffffff !important;
}

.home-news-card-featured .home-news-label {
  background: rgba(255, 255, 255, 0.14);
}

.home-news-card-light .home-news-label {
  background: rgba(61, 92, 58, 0.09);
  color: var(--color-primary-dark) !important;
}

.home-gallery-section {
  position: relative;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-gallery-card {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(61, 92, 58, 0.08);
  box-shadow: 0 18px 34px rgba(24, 33, 23, 0.05);
}

.home-gallery-card h3 {
  margin: 1rem 0 0.5rem;
}

.home-gallery-card p {
  margin-bottom: 0;
  color: var(--color-primary);
}

.home-gallery-placeholder {
  min-height: 220px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      145deg,
      rgba(232, 159, 91, 0.14),
      rgba(122, 159, 118, 0.14)
    ),
    #f6f4ed;
  border: 1px dashed rgba(61, 92, 58, 0.22);
}

.home-gallery-placeholder img {
  width: 72px;
  opacity: 0.72;
}

.home-contact-cta-section {
  padding-top: 1rem !important;
}

.home-contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.98),
    rgba(122, 159, 118, 0.94)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(24, 33, 23, 0.12);
}

.home-contact-cta-copy .home-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.home-contact-cta-copy h2,
.home-contact-cta-copy p {
  color: #ffffff !important;
}

.home-contact-cta-copy h2 {
  margin: 1rem 0 0.8rem;
}

.home-contact-cta-copy p {
  margin-bottom: 0;
  max-width: 60ch;
}

.home-contact-cta-link {
  white-space: nowrap;
  background: #ffffff;
  color: var(--color-primary-dark) !important;
}

.home-contact-cta-link:hover {
  color: var(--color-primary-dark) !important;
  background: #f3f3ee;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-form-panel h2 {
  margin: 0.5rem 0 0.75rem;
}

.contact-form-panel p {
  margin-bottom: 1.5rem;
}

.contact-form-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form-field {
  display: grid;
  gap: 0.45rem;
}

.contact-form-field label {
  font-weight: 700;
  color: var(--color-primary-dark);
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: 1px solid rgba(46, 125, 50, 0.18);
  border-radius: 14px;
  background: #fbfcf8;
  padding: 0.9rem 1rem;
  font: inherit;
  color: #243024;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: #73816f;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: rgba(46, 125, 50, 0.5);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
}

.contact-form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.96rem;
  color: var(--color-primary);
}

.contact-form-check input {
  margin-top: 0.2rem;
  accent-color: var(--color-primary);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.contact-form-actions p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-help-panel h3 {
  margin-bottom: 1rem;
}

.contact-help-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-primary);
}

.contact-help-list li + li {
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .home-hero {
    padding: 7.5rem 0 3rem;
  }

  .home-hero-grid,
  .home-trust-grid,
  .home-hero-panel-grid,
  .home-gallery-grid,
  .home-contact-cta,
  .contact-form-layout,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .home-title {
    max-width: none;
    font-size: clamp(2.3rem, 8vw, 3.4rem);
  }

  .home-hero-actions {
    flex-direction: column;
  }

  .home-btn {
    width: 100%;
  }

  .home-gallery-placeholder {
    min-height: 180px;
  }

  .contact-form-actions {
    align-items: stretch;
  }

  .contact-form-actions .btn {
    width: 100%;
  }

  .hero {
    height: auto;
    min-height: 400px;
  }

  .hero.split-content {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

.section-title-spaced {
  margin-top: var(--spacing-3xl);
}

.form-banner-arreglo-bottom {
  margin-bottom: 2rem;
}

.page-title-light {
  color: #fff !important;
}

.page-subtitle-light {
  color: rgba(255, 255, 255, 0.95) !important;
}

.page-subtitle-narrow {
  max-width: 700px;
}

.brand-hero-compact {
  padding: 3rem 0 2.5rem !important;
}

.field-note-normal {
  font-weight: normal;
}

.test-main {
  padding: 100px 20px;
}

.test-panel {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.test-success {
  background: #e8f5e9;
  padding: 20px;
  border-radius: 8px;
}

.test-success h3 {
  color: #2e7d32;
}

.footer-clean {
  background: linear-gradient(135deg, #3d5c3a 0%, #4a6b47 100%);
  color: #fff;
}

.footer-main {
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 2.5rem;
}

.footer-about .footer-logo {
  width: 70px;
  background: #fff;
  padding: 0.4rem;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-about h4 {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.footer-about p {
  font-size: 0.88rem;
  opacity: 0.92;
  line-height: 1.5;
}

.footer-super {
  margin-top: 0.7rem;
}

.footer-super-img {
  margin-top: 0.2rem;
  max-width: 100px;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 20px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-nav-col h5,
.footer-contact h5 {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  opacity: 0.95;
}

.footer-nav-col ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-col li {
  margin-bottom: 0.45rem;
}

.footer-nav-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  transition: all 0.2s;
}

.footer-nav-col a:hover {
  color: #fff;
  text-decoration: none;
  padding-left: 3px;
}

.footer-contact .contact-item {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
  align-items: flex-start;
}

.footer-contact .contact-item span {
  font-size: 1.2rem;
  opacity: 0.9;
  flex-shrink: 0;
}

.footer-contact strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
  opacity: 0.8;
}

.footer-contact p {
  font-size: 0.88rem;
  margin: 0;
  opacity: 0.92;
}

.footer-bottom {
  background: #2a3f28;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-wrap > p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-legal {
  display: flex;
  gap: 1.2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-social {
  margin-top: 1.5rem;
}

.footer-social h5 {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-color: transparent;
}

.social-btn.facebook:hover {
  background: #1877f2;
  border-color: transparent;
}

.social-btn.whatsapp:hover {
  background: #25d366;
  border-color: transparent;
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom-wrap {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (max-width: 600px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CORPORATIVO - CCU
   ============================================ */
/* Hero Section */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 50%,
    var(--color-secondary-dark) 100%
  );
  color: white;
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 18% 52%,
      rgba(232, 159, 91, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 82% 78%,
      rgba(122, 159, 118, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Hero Decorative Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #e89f5b, #ffc107);
  top: 13%;
  right: 9%;
  box-shadow: 0 8px 32px rgba(232, 159, 91, 0.3);
}

.shape-2 {
  width: 68px;
  height: 68px;
  background: radial-gradient(circle, #ffc107, #ffd54f);
  bottom: 27%;
  left: 11%;
  opacity: 0.45;
  filter: blur(3px);
}

.shape-3 {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #7a9f76, #a8d5a3);
  top: 49%;
  left: 7%;
  box-shadow: 0 6px 20px rgba(122, 159, 118, 0.3);
}

.shape-4 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #e89f5b, transparent);
  top: 23%;
  left: 29%;
  opacity: 0.35;
  filter: blur(10px);
}

.shape-5 {
  width: 52px;
  height: 52px;
  background: radial-gradient(circle, #ffd54f, #ffc107);
  bottom: 19%;
  right: 17%;
  opacity: 0.5;
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-lg);
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.25),
    rgba(255, 193, 7, 0.2)
  );
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(232, 159, 91, 0.4);
  box-shadow: 0 4px 12px rgba(232, 159, 91, 0.15);
}

.page-hero h1 {
  color: white;
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}

.page-subtitle {
  font-size: var(--font-size-xl);
  opacity: 0.95;
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-normal);
}

/* === Section with Background === */
.section-with-bg {
  position: relative;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fefdfb 20%,
    #faf8f4 50%,
    #f8f5f0 100%
  );
  padding: 4rem 0;
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 22% 32%,
      rgba(122, 159, 118, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 78% 62%,
      rgba(232, 159, 91, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 44% 82%,
      rgba(122, 159, 118, 0.03) 0%,
      transparent 50%
    );
}

.section-with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(122, 159, 118, 0.2) 20%,
    rgba(232, 159, 91, 0.2) 50%,
    rgba(122, 159, 118, 0.2) 80%,
    transparent
  );
}

/* Intro Decoration */
.intro-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.intro-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.intro-1 {
  width: 135px;
  height: 135px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.2),
    rgba(168, 213, 163, 0.08),
    transparent
  );
  top: -28px;
  right: -38px;
  filter: blur(12px);
}

.intro-2 {
  width: 105px;
  height: 105px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.18),
    rgba(255, 193, 7, 0.06),
    transparent
  );
  bottom: -22px;
  left: -32px;
  filter: blur(10px);
}

/* CCU Decoration */
.ccu-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ccu-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}
.ccu-1 {
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.15),
    rgba(168, 213, 163, 0.05),
    transparent
  );
  top: 18%;
  right: -48px;
  filter: blur(15px);
}
.ccu-2 {
  width: 130px;
  height: 130px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.12),
    rgba(255, 193, 7, 0.04),
    transparent
  );
  bottom: 22%;
  left: -38px;
  filter: blur(13px);
}

/* Coverage Decoration */
.coverage-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.coverage-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}
.cov-1 {
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.15),
    rgba(255, 193, 7, 0.08),
    transparent
  );
  top: 65%;
  right: -52px;
  filter: blur(14px);
}
.cov-2 {
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.12),
    rgba(168, 213, 163, 0.06),
    transparent
  );
  bottom: 10%;
  left: -38px;
  filter: blur(12px);
}

/* Download Decoration */
.download-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.download-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}
.down-1 {
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.13),
    rgba(255, 193, 7, 0.06),
    transparent
  );
  top: 60%;
  right: -40px;
  filter: blur(13px);
}
.down-2 {
  width: 110px;
  height: 110px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.11),
    rgba(168, 213, 163, 0.05),
    transparent
  );
  bottom: 12%;
  left: -32px;
  filter: blur(11px);
}

/* Sidebar Decoration */
.sidebar-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.side-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}
.side-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.2),
    rgba(255, 193, 7, 0.15),
    transparent
  );
  top: 10%;
  right: -40px;
  filter: blur(12px);
}
.side-2 {
  width: 92px;
  height: 92px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.2),
    rgba(168, 213, 163, 0.1),
    transparent
  );
  bottom: 42%;
  left: -30px;
  filter: blur(10px);
}
.side-3 {
  width: 110px;
  height: 110px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.18),
    rgba(255, 193, 7, 0.12),
    transparent
  );
  bottom: 10%;
  right: -35px;
  filter: blur(13px);
}

/* Títulos estilizados */
.intro-section h2,
.section-title h2 {
  position: relative;
  z-index: 1;
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-bold);
  padding-left: 1.5rem;
}
.intro-section h2::before,
.section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: linear-gradient(180deg, #e89f5b, #ffc107);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(232, 159, 91, 0.3);
}
.intro-section h2::after,
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 1.5rem;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a9f76, transparent);
  border-radius: 2px;
}
.section-title {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-bottom: var(--spacing-2xl);
}
.section-title p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0;
  padding-left: 1.5rem;
}
.intro-section p {
  position: relative;
  z-index: 1;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  text-align: justify;
}
.intro-section p:last-child {
  margin-bottom: 0;
}
.ccu-card h3 {
  position: relative;
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  padding-left: 1.2rem;
}
.ccu-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 0.7rem;
  height: 0.7rem;
  background: linear-gradient(135deg, #e89f5b, #ffc107);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(232, 159, 91, 0.25);
}
.info-box h3 {
  position: relative;
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-semibold);
  padding-left: 1.3rem;
}
.info-box h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, #e89f5b, #ffc107);
  border-radius: 2px;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  margin-top: var(--spacing-2xl);
  align-items: start;
}

.content-main {
  min-width: 0;
}

/* Intro Section */
.intro-section {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-2xl);
}

.intro-section h2 {
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-bold);
}

.intro-section p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  text-align: justify;
}

.intro-section p:last-child {
  margin-bottom: 0;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}

.section-title p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* CCU Cards */
.ccu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.ccu-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
}

.ccu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.ccu-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.1) 0%,
    rgba(232, 159, 91, 0.1) 100%
  );
  margin-bottom: var(--spacing-md);
}

.ccu-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
}

.ccu-card h3 {
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}

.ccu-card p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
}

.ccu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ccu-card ul li {
  padding: var(--spacing-sm) 0 var(--spacing-sm) var(--spacing-xl);
  position: relative;
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.ccu-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}

/* Coverage Map */
.coverage-map {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-3xl);
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.03) 0%,
    rgba(232, 180, 133, 0.05) 100%
  );
  border-radius: var(--border-radius-md);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.legend-marker {
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.tolima-marker {
  background: linear-gradient(135deg, #e89f5b 0%, #e8b485 100%);
}

.cundinamarca-marker {
  background: linear-gradient(135deg, #3d5c3a 0%, #7a9f76 100%);
}

#coverage-leaflet-map {
  width: 100%;
  height: 500px;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-lg);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-municipalities {
  margin-top: var(--spacing-lg);
}

.municipalities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.mini-region {
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  border-left: 4px solid;
}

.mini-region.tolima {
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.05) 0%,
    rgba(232, 180, 133, 0.08) 100%
  );
  border-color: #e89f5b;
}

.mini-region.cundinamarca {
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.05) 0%,
    rgba(122, 159, 118, 0.08) 100%
  );
  border-color: #3d5c3a;
}

.mini-region strong {
  display: block;
  font-size: var(--font-size-base);
  margin-bottom: 0.25rem;
}

.mini-region p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0;
}

/* Download Section */
.download-section {
  margin-bottom: var(--spacing-3xl);
}

.download-intro {
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.04) 0%,
    rgba(232, 180, 133, 0.06) 100%
  );
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-xl);
  border-left: 4px solid var(--color-primary);
}

.download-intro p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin: 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.download-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-gray-200);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  transition: width var(--transition-base);
}

.download-card.tolima::before {
  background: linear-gradient(180deg, #e89f5b, #e8b485);
}

.download-card.cundinamarca::before {
  background: linear-gradient(180deg, #3d5c3a, #7a9f76);
}

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

.download-card:hover::before {
  width: 10px;
}

.download-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.download-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.1) 0%,
    rgba(232, 159, 91, 0.1) 100%
  );
  border-radius: var(--border-radius-md);
  flex-shrink: 0;
}

.download-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
}

.download-info h4 {
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin: 0 0 0.25rem;
}

.location-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  background: rgba(61, 92, 58, 0.1);
  color: var(--color-primary);
}

.download-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: white;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-base);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61, 92, 58, 0.3);
}

/* Info Box */
.info-box {
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  border-left: 6px solid var(--color-secondary);
  margin-top: var(--spacing-2xl);
}

.info-box h3 {
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-semibold);
}

.info-box p {
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-lg);
  margin: 0;
}

.info-box strong {
  color: var(--color-primary);
}

/* === Sidebar === */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-self: start;
  min-width: 320px;
  max-width: 380px;
}

.sidebar-card {
  background: white;
  padding: 2.25rem 1.75rem 2rem 1.75rem;
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(61, 92, 58, 0.1);
  border: 1.5px solid rgba(61, 92, 58, 0.1);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card-featured {
  background: linear-gradient(
    145deg,
    rgba(61, 92, 58, 0.04),
    rgba(122, 159, 118, 0.04)
  );
  border: 2px solid #7a9f76;
  box-shadow: 0 8px 32px rgba(122, 159, 118, 0.1);
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(61, 92, 58, 0.1);
}

.sidebar-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.15),
    rgba(122, 159, 118, 0.15)
  );
  border-radius: 12px;
  color: #3d5c3a;
  flex-shrink: 0;
}

.sidebar-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sidebar-card h4 {
  color: #3d5c3a;
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
}

.sidebar-desc {
  color: #5a6f58;
  font-size: 0.97rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-links li {
  margin-bottom: 0;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: #3d5c3a;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  background: transparent;
}

.sidebar-links a:hover {
  background: rgba(122, 159, 118, 0.1);
  padding-left: 1.2rem;
  color: #2a3f28;
}

.sidebar-links .link-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a9f76;
  flex-shrink: 0;
}

.sidebar-links .link-icon svg {
  width: 100%;
  height: 100%;
}

/* === Contact Sidebar === */
.sidebar-card-contact {
  background: linear-gradient(145deg, #f8f7f2, #ffffff);
  box-shadow: 0 4px 18px rgba(61, 92, 58, 0.07);
  border: 1.5px solid #e8b485;
}

.contact-item {
  padding: 1.1rem 0 0.7rem 0;
  border-bottom: 1px solid rgba(61, 92, 58, 0.08);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item strong {
  display: block;
  color: #3d5c3a;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.contact-item p {
  color: #5a6f58;
  margin: 0;
  font-size: 1rem;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.btn-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.1rem 1rem;
  background: linear-gradient(135deg, #3d5c3a, #7a9f76);
  color: white !important;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(61, 92, 58, 0.18);
  font-size: 1.08rem;
}

.btn-sidebar:hover {
  background: linear-gradient(135deg, #2a3f28, #5a7f56);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 92, 58, 0.22);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .sidebar {
    min-width: 100%;
    max-width: 100%;
    position: static;
  }
}

@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .sidebar {
    flex-direction: row;
    gap: 1.5rem;
    min-width: 0;
    max-width: 100%;
    position: static;
  }
  .ccu-cards,
  .download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .intro-section,
  .ccu-card,
  .download-card,
  .coverage-map {
    padding: var(--spacing-lg);
  }
  .sidebar {
    flex-direction: column;
    gap: 1.2rem;
  }
  #coverage-leaflet-map {
    height: 400px;
  }
  .map-legend {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
  margin: 1rem;
  font-family: inherit;
}

.custom-popup h4 {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin: 0 0 0.5rem;
}

.custom-popup p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  margin: 0.25rem 0;
}

.custom-popup .popup-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  margin-top: 0.5rem;
}

.custom-popup .tolima-badge {
  background: linear-gradient(135deg, #e89f5b 0%, #e8b485 100%);
  color: white;
}

.custom-popup .cundinamarca-badge {
  background: linear-gradient(135deg, #3d5c3a 0%, #7a9f76 100%);
  color: white;
}

.map-pin {
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  border: 3px solid white;
}

.map-pin-tolima {
  background: linear-gradient(135deg, #e89f5b, #e8b485);
}

.map-pin-cundinamarca {
  background: linear-gradient(135deg, #3d5c3a, #7a9f76);
}

.custom-popup-action {
  margin-top: 0.75rem;
}

.custom-popup-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #0b5d45;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}
/* ============================================
   CORPORATIVO - ESTRUCTURA ORGANIZACIONAL
   ============================================ */
/* Hero Section */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 50%,
    var(--color-secondary-dark) 100%
  );
  color: white;
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(232, 159, 91, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(122, 159, 118, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Hero Decorative Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.shape-1 {
  width: 105px;
  height: 105px;
  background: linear-gradient(135deg, #e89f5b, #ffc107);
  top: 15%;
  right: 10%;
  box-shadow: 0 8px 32px rgba(232, 159, 91, 0.3);
}

.shape-2 {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, #ffc107, #ffd54f);
  bottom: 30%;
  left: 12%;
  opacity: 0.45;
  filter: blur(3px);
}

.shape-3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7a9f76, #a8d5a3);
  top: 50%;
  left: 8%;
  box-shadow: 0 6px 20px rgba(122, 159, 118, 0.3);
}

.shape-4 {
  width: 85px;
  height: 85px;
  background: radial-gradient(circle, #e89f5b, transparent);
  top: 25%;
  left: 28%;
  opacity: 0.35;
  filter: blur(10px);
}

.shape-5 {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #ffd54f, #ffc107);
  bottom: 20%;
  right: 18%;
  opacity: 0.5;
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-lg);
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.25),
    rgba(255, 193, 7, 0.2)
  );
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(232, 159, 91, 0.4);
  box-shadow: 0 4px 12px rgba(232, 159, 91, 0.15);
}

.page-hero h1 {
  color: white;
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}

.page-subtitle {
  font-size: var(--font-size-xl);
  opacity: 0.95;
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-normal);
}

/* === Section with Background === */
.section-with-bg {
  position: relative;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fefdfb 20%,
    #faf8f4 50%,
    #f8f5f0 100%
  );
  padding: 4rem 0;
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(122, 159, 118, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(232, 159, 91, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(122, 159, 118, 0.03) 0%,
      transparent 50%
    );
}

.section-with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(122, 159, 118, 0.2) 20%,
    rgba(232, 159, 91, 0.2) 50%,
    rgba(122, 159, 118, 0.2) 80%,
    transparent
  );
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  margin-top: var(--spacing-2xl);
}

.content-main {
  position: relative;
  min-width: 0;
}

/* Intro Section */
.intro-section {
  position: relative;
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-2xl);
}

/* Intro Decoration */
.intro-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.intro-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.intro-1 {
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.2),
    rgba(168, 213, 163, 0.08),
    transparent
  );
  top: -30px;
  right: -40px;
  filter: blur(12px);
}

.intro-2 {
  width: 110px;
  height: 110px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.18),
    rgba(255, 193, 7, 0.06),
    transparent
  );
  bottom: -25px;
  left: -35px;
  filter: blur(10px);
}

.intro-section h2 {
  position: relative;
  z-index: 1;
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-bold);
  padding-left: 1.5rem;
}

.intro-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: linear-gradient(180deg, #e89f5b, #ffc107);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(232, 159, 91, 0.3);
}

.intro-section h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 1.5rem;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a9f76, transparent);
  border-radius: 2px;
}

.intro-section p {
  position: relative;
  z-index: 1;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  text-align: justify;
}

.intro-section p:last-child {
  margin-bottom: 0;
}

/* Section Title */
.section-title {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
  position: relative;
  display: block;
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
  padding-left: 1.5rem;
}

.section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: linear-gradient(180deg, #e89f5b, #ffc107);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(232, 159, 91, 0.3);
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 1.5rem;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a9f76, transparent);
  border-radius: 2px;
}

.section-title p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0;
  padding-left: 1.5rem;
}

/* Areas Decoration */
.areas-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.areas-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.areas-1 {
  width: 170px;
  height: 170px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.15),
    rgba(168, 213, 163, 0.05),
    transparent
  );
  top: 20%;
  right: -50px;
  filter: blur(16px);
}

.areas-2 {
  width: 145px;
  height: 145px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.12),
    rgba(255, 193, 7, 0.04),
    transparent
  );
  bottom: 30%;
  left: -45px;
  filter: blur(14px);
}

/* Areas Grid */
.areas-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.area-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--color-primary),
    var(--color-secondary)
  );
  transition: width var(--transition-base);
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.area-card:hover::before {
  width: 8px;
}

.area-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.08) 0%,
    rgba(232, 159, 91, 0.08) 100%
  );
  margin-bottom: var(--spacing-md);
  transition: all var(--transition-base);
}

.area-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
}

.area-card:hover .area-icon {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.15) 0%,
    rgba(232, 159, 91, 0.15) 100%
  );
}

.area-card h3 {
  position: relative;
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
  padding-left: 1.2rem;
}

.area-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 0.7rem;
  height: 0.7rem;
  background: linear-gradient(135deg, #e89f5b, #ffc107);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(232, 159, 91, 0.25);
}

.area-card p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.area-card strong {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

/* Hierarchy Decoration */
.hierarchy-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hier-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.hier-1 {
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.15),
    rgba(255, 193, 7, 0.08),
    transparent
  );
  top: 25%;
  right: -55px;
  filter: blur(15px);
}

.hier-2 {
  width: 135px;
  height: 135px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.12),
    rgba(168, 213, 163, 0.06),
    transparent
  );
  bottom: 20%;
  left: -40px;
  filter: blur(13px);
}

/* Hierarchy Section */
.hierarchy-section {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.hierarchy-placeholder {
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.03) 0%,
    rgba(232, 180, 133, 0.05) 100%
  );
  border: 2px dashed var(--color-gray-300);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-3xl);
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hierarchy-placeholder svg {
  width: 80px;
  height: 80px;
  stroke: var(--color-primary);
  opacity: 0.3;
  margin-bottom: var(--spacing-lg);
}

.hierarchy-placeholder p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 500px;
  margin: 0 auto var(--spacing-md);
}

.hierarchy-placeholder strong {
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  display: block;
  margin-bottom: var(--spacing-sm);
}

.hierarchy-placeholder small {
  color: var(--color-text-tertiary);
  font-style: italic;
}

.hierarchy-legend {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-secondary);
}

.hierarchy-legend h4 {
  position: relative;
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-semibold);
  padding-left: 1.2rem;
}

.hierarchy-legend h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 0.65rem;
  height: 0.65rem;
  background: linear-gradient(135deg, #7a9f76, #a8d5a3);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(122, 159, 118, 0.25);
}

.hierarchy-legend ul {
  list-style: none;
  padding: 0;
}

.hierarchy-legend li {
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.hierarchy-legend li:last-child {
  border-bottom: none;
}

.hierarchy-legend strong {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

/* Info Box */
.info-box {
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.05) 0%,
    rgba(232, 180, 133, 0.08) 100%
  );
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  border-left: 6px solid var(--color-secondary);
  margin-top: var(--spacing-2xl);
}

.info-box h3 {
  position: relative;
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-semibold);
  padding-left: 1.3rem;
}

.info-box h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, #e89f5b, #ffc107);
  border-radius: 2px;
}

.info-box p {
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-lg);
}

.info-box strong {
  color: var(--color-primary);
}

/* Sidebar Decoration */
.sidebar-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.side-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.side-1 {
  width: 115px;
  height: 115px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.2),
    rgba(255, 193, 7, 0.15),
    transparent
  );
  top: 12%;
  right: -38px;
  filter: blur(12px);
}

.side-2 {
  width: 88px;
  height: 88px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.2),
    rgba(168, 213, 163, 0.1),
    transparent
  );
  bottom: 40%;
  left: -28px;
  filter: blur(10px);
}

.side-3 {
  width: 105px;
  height: 105px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.18),
    rgba(255, 193, 7, 0.12),
    transparent
  );
  bottom: 12%;
  right: -33px;
  filter: blur(13px);
}

/* === Sidebar === */
.sidebar {
  position: relative;
  z-index: 1;
}

.sidebar-card {
  background: white;
  padding: 1.75rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(61, 92, 58, 0.08);
  border: 1px solid rgba(61, 92, 58, 0.08);
  margin-bottom: 1.5rem;
}

.sidebar-card-featured {
  background: linear-gradient(
    145deg,
    rgba(61, 92, 58, 0.04),
    rgba(122, 159, 118, 0.04)
  );
  border: 2px solid #7a9f76;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(61, 92, 58, 0.12);
}

.sidebar-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.15),
    rgba(122, 159, 118, 0.15)
  );
  border-radius: 12px;
  color: #3d5c3a;
  flex-shrink: 0;
}

.sidebar-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sidebar-card h4 {
  color: #3d5c3a;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.sidebar-desc {
  color: #5a6f58;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 0.5rem;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 12px;
  color: #3d5c3a;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.sidebar-links a:hover {
  background: rgba(122, 159, 118, 0.08);
  padding-left: 1.2rem;
  color: #2a3f28;
}

.link-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a9f76;
  flex-shrink: 0;
}

.link-icon svg {
  width: 100%;
  height: 100%;
}

/* === Contact Sidebar === */
.sidebar-card-contact {
  background: linear-gradient(145deg, #f8f7f2, #ffffff);
}

.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61, 92, 58, 0.08);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item strong {
  display: block;
  color: #3d5c3a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.contact-item p {
  color: #5a6f58;
  margin: 0;
}

.btn-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #3d5c3a, #7a9f76);
  color: white !important;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(61, 92, 58, 0.2);
}

.btn-sidebar:hover {
  background: linear-gradient(135deg, #2a3f28, #5a7f56);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61, 92, 58, 0.3);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .intro-section,
  .area-card {
    padding: var(--spacing-lg);
  }

  .hierarchy-placeholder {
    padding: var(--spacing-xl);
    min-height: 300px;
  }
}
/* ============================================
   CORPORATIVO - MISI�N Y VISI�N
   ============================================ */
/* Hero Section */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 50%,
    var(--color-secondary-dark) 100%
  );
  color: white;
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(232, 159, 91, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(122, 159, 118, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Hero Decorative Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.shape-1 {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #e89f5b, #ffc107);
  top: 10%;
  right: 12%;
  box-shadow: 0 8px 32px rgba(232, 159, 91, 0.3);
}

.shape-2 {
  width: 75px;
  height: 75px;
  background: radial-gradient(circle, #ffc107, #ffd54f);
  bottom: 25%;
  left: 8%;
  opacity: 0.45;
  filter: blur(3px);
}

.shape-3 {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #7a9f76, #a8d5a3);
  top: 45%;
  left: 10%;
  box-shadow: 0 6px 20px rgba(122, 159, 118, 0.3);
}

.shape-4 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #e89f5b, transparent);
  top: 20%;
  left: 25%;
  opacity: 0.35;
  filter: blur(10px);
}

.shape-5 {
  width: 55px;
  height: 55px;
  background: radial-gradient(circle, #ffd54f, #ffc107);
  bottom: 18%;
  right: 20%;
  opacity: 0.5;
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-lg);
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.25),
    rgba(255, 193, 7, 0.2)
  );
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(232, 159, 91, 0.4);
  box-shadow: 0 4px 12px rgba(232, 159, 91, 0.15);
}

.page-hero h1 {
  color: white;
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}

.page-subtitle {
  font-size: var(--font-size-xl);
  opacity: 0.95;
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-normal);
}

/* === Section with Background === */
.section-with-bg {
  position: relative;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fefdfb 20%,
    #faf8f4 50%,
    #f8f5f0 100%
  );
  padding: 4rem 0;
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(122, 159, 118, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(232, 159, 91, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 193, 7, 0.02) 0%,
      transparent 50%
    );
}

.section-with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(122, 159, 118, 0.2) 20%,
    rgba(232, 159, 91, 0.2) 50%,
    rgba(122, 159, 118, 0.2) 80%,
    transparent
  );
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  margin-top: var(--spacing-2xl);
}

.content-main {
  position: relative;
  min-width: 0;
}

/* MV Decoration Circles */
.mv-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.mv-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.mv-1 {
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.2),
    rgba(168, 213, 163, 0.08),
    transparent
  );
  top: 5%;
  right: -50px;
  filter: blur(14px);
}

.mv-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.18),
    rgba(255, 193, 7, 0.06),
    transparent
  );
  top: 40%;
  left: -40px;
  filter: blur(12px);
}

.mv-3 {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15), transparent);
  bottom: 20%;
  right: 10%;
  filter: blur(16px);
}

/* Mission & Vision Cards */
.mission-vision-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.mv-card {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all var(--transition-base);
  border: 1px solid var(--color-gray-200);
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.mission-card::before {
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-light)
  );
}

.vision-card::before {
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    var(--color-accent)
  );
}

.mv-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

.mission-card .mv-icon {
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.1) 0%,
    rgba(122, 159, 118, 0.15) 100%
  );
}

.vision-card .mv-icon {
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.1) 0%,
    rgba(232, 180, 133, 0.15) 100%
  );
}

.mv-icon svg {
  width: 40px;
  height: 40px;
}

.mission-card .mv-icon svg {
  stroke: var(--color-primary);
}

.vision-card .mv-icon svg {
  stroke: var(--color-secondary);
}

.mv-card:hover .mv-icon {
  transform: scale(1.1) rotate(5deg);
}

.mv-card h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-bold);
}

.mission-card h2 {
  color: var(--color-primary);
}

.vision-card h2 {
  color: var(--color-secondary);
}

.mv-text {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-lg);
  text-align: justify;
  color: var(--color-text-primary);
}

.mv-text:last-child {
  margin-bottom: 0;
}

/* Section Title */
.section-title {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
  position: relative;
  display: block;
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
  padding-left: 1.5rem;
}

.section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: linear-gradient(180deg, #e89f5b, #ffc107);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(232, 159, 91, 0.3);
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 1.5rem;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a9f76, transparent);
  border-radius: 2px;
}

.section-title p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0;
  padding-left: 1.5rem;
}

/* Objectives Decoration */
.objectives-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.obj-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.obj-bg-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.15),
    rgba(168, 213, 163, 0.05),
    transparent
  );
  top: 30%;
  right: -60px;
  filter: blur(18px);
}

.obj-bg-2 {
  width: 170px;
  height: 170px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.12),
    rgba(255, 193, 7, 0.04),
    transparent
  );
  bottom: 15%;
  left: -50px;
  filter: blur(16px);
}

/* Objectives Grid */
.objectives-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.objective-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--color-gray-200);
  position: relative;
  overflow: hidden;
}

.objective-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--color-primary),
    var(--color-secondary)
  );
  transition: width var(--transition-base);
}

.objective-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--color-primary-light);
}

.objective-card:hover::before {
  width: 8px;
}

.obj-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.08) 0%,
    rgba(232, 159, 91, 0.08) 100%
  );
  margin-bottom: var(--spacing-md);
  transition: all var(--transition-base);
}

.obj-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
}

.objective-card:hover .obj-icon {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.15) 0%,
    rgba(232, 159, 91, 0.15) 100%
  );
}

.objective-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

.objective-card p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Policy Section */
.policy-section {
  position: relative;
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-2xl);
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.03) 0%,
    rgba(232, 180, 133, 0.05) 100%
  );
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--color-gray-200);
  border-left: 6px solid var(--color-primary);
}

.policy-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.policy-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.policy-1 {
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.15),
    rgba(168, 213, 163, 0.08),
    transparent
  );
  top: -30px;
  right: 5%;
  filter: blur(10px);
}

.policy-2 {
  width: 85px;
  height: 85px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.15),
    rgba(255, 193, 7, 0.1),
    transparent
  );
  bottom: -25px;
  left: 8%;
  filter: blur(8px);
}

.policy-content p {
  position: relative;
  z-index: 1;
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
}

.policy-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
}

.policy-list li {
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  background: white;
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.policy-list li:hover {
  transform: translateX(12px);
  box-shadow: var(--shadow-md);
  border-left-width: 6px;
}

.policy-list strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
}

/* Sidebar Decoration */
.sidebar-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.side-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.side-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.2),
    rgba(255, 193, 7, 0.15),
    transparent
  );
  top: 10%;
  right: -40px;
  filter: blur(12px);
}

.side-2 {
  width: 90px;
  height: 90px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.2),
    rgba(168, 213, 163, 0.1),
    transparent
  );
  bottom: 35%;
  left: -30px;
  filter: blur(10px);
}

.side-3 {
  width: 110px;
  height: 110px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.18),
    rgba(255, 193, 7, 0.12),
    transparent
  );
  bottom: 10%;
  right: -35px;
  filter: blur(14px);
}

/* === Sidebar === */
.sidebar {
  position: relative;
  z-index: 1;
}

.sidebar-card {
  background: white;
  padding: 1.75rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(61, 92, 58, 0.08);
  border: 1px solid rgba(61, 92, 58, 0.08);
  margin-bottom: 1.5rem;
}

.sidebar-card-featured {
  background: linear-gradient(
    145deg,
    rgba(61, 92, 58, 0.04),
    rgba(122, 159, 118, 0.04)
  );
  border: 2px solid #7a9f76;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(61, 92, 58, 0.12);
}

.sidebar-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.15),
    rgba(122, 159, 118, 0.15)
  );
  border-radius: 12px;
  color: #3d5c3a;
  flex-shrink: 0;
}

.sidebar-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sidebar-card h4 {
  color: #3d5c3a;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.sidebar-desc {
  color: #5a6f58;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 0.5rem;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 12px;
  color: #3d5c3a;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.sidebar-links a:hover {
  background: rgba(122, 159, 118, 0.08);
  padding-left: 1.2rem;
  color: #2a3f28;
}

.link-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a9f76;
  flex-shrink: 0;
}

.link-icon svg {
  width: 100%;
  height: 100%;
}

/* === Contact Sidebar === */
.sidebar-card-contact {
  background: linear-gradient(145deg, #f8f7f2, #ffffff);
}

.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61, 92, 58, 0.08);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item strong {
  display: block;
  color: #3d5c3a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.contact-item p {
  color: #5a6f58;
  margin: 0;
}

.btn-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #3d5c3a, #7a9f76);
  color: white !important;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(61, 92, 58, 0.2);
}

.btn-sidebar:hover {
  background: linear-gradient(135deg, #2a3f28, #5a7f56);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61, 92, 58, 0.3);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero h1 {
    font-size: var(--font-size-3xl);
  }

  .page-subtitle {
    font-size: var(--font-size-lg);
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
  }

  .mv-card,
  .objective-card {
    padding: var(--spacing-lg);
  }

  .page-hero h1 {
    font-size: var(--font-size-2xl);
  }
}
/* ============================================
   CORPORATIVO - POL�TICAS
   ============================================ */
/* Hero Section */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 50%,
    var(--color-secondary-dark) 100%
  );
  color: white;
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(232, 159, 91, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(122, 159, 118, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Hero Decorative Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.shape-1 {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #e89f5b, #ffc107);
  top: 12%;
  right: 8%;
  box-shadow: 0 8px 32px rgba(232, 159, 91, 0.3);
}

.shape-2 {
  width: 75px;
  height: 75px;
  background: radial-gradient(circle, #ffc107, #ffd54f);
  bottom: 28%;
  left: 10%;
  opacity: 0.45;
  filter: blur(3px);
}

.shape-3 {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #7a9f76, #a8d5a3);
  top: 48%;
  left: 6%;
  box-shadow: 0 6px 20px rgba(122, 159, 118, 0.3);
}

.shape-4 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #e89f5b, transparent);
  top: 22%;
  left: 30%;
  opacity: 0.35;
  filter: blur(10px);
}

.shape-5 {
  width: 55px;
  height: 55px;
  background: radial-gradient(circle, #ffd54f, #ffc107);
  bottom: 18%;
  right: 16%;
  opacity: 0.5;
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-lg);
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.25),
    rgba(255, 193, 7, 0.2)
  );
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(232, 159, 91, 0.4);
  box-shadow: 0 4px 12px rgba(232, 159, 91, 0.15);
}

.page-hero h1 {
  color: white;
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}

.page-subtitle {
  font-size: var(--font-size-xl);
  opacity: 0.95;
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-normal);
}

/* === Section with Background === */
.section-with-bg {
  position: relative;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fefdfb 20%,
    #faf8f4 50%,
    #f8f5f0 100%
  );
  padding: 4rem 0;
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(122, 159, 118, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(232, 159, 91, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(122, 159, 118, 0.03) 0%,
      transparent 50%
    );
}

.section-with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(122, 159, 118, 0.2) 20%,
    rgba(232, 159, 91, 0.2) 50%,
    rgba(122, 159, 118, 0.2) 80%,
    transparent
  );
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  margin-top: var(--spacing-2xl);
}

.content-main {
  position: relative;
  min-width: 0;
}

/* Intro Section */
.intro-section {
  position: relative;
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-2xl);
}

/* Intro Decoration */
.intro-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.intro-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.intro-1 {
  width: 145px;
  height: 145px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.2),
    rgba(168, 213, 163, 0.08),
    transparent
  );
  top: -32px;
  right: -42px;
  filter: blur(12px);
}

.intro-2 {
  width: 115px;
  height: 115px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.18),
    rgba(255, 193, 7, 0.06),
    transparent
  );
  bottom: -28px;
  left: -38px;
  filter: blur(10px);
}

.intro-section h2 {
  position: relative;
  z-index: 1;
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-bold);
  padding-left: 1.5rem;
}

.intro-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: linear-gradient(180deg, #e89f5b, #ffc107);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(232, 159, 91, 0.3);
}

.intro-section h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 1.5rem;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a9f76, transparent);
  border-radius: 2px;
}

.intro-section p {
  position: relative;
  z-index: 1;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  text-align: justify;
}

.intro-section p:last-child {
  margin-bottom: 0;
}

/* Section Title */
.section-title {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
  position: relative;
  display: block;
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
  padding-left: 1.5rem;
}

.section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: linear-gradient(180deg, #e89f5b, #ffc107);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(232, 159, 91, 0.3);
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 1.5rem;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a9f76, transparent);
  border-radius: 2px;
}

.section-title p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0;
  padding-left: 1.5rem;
}

/* Policies Decoration */
.policies-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.policies-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.pol-1 {
  width: 175px;
  height: 175px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.15),
    rgba(168, 213, 163, 0.05),
    transparent
  );
  top: 22%;
  right: -55px;
  filter: blur(16px);
}

.pol-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.12),
    rgba(255, 193, 7, 0.04),
    transparent
  );
  bottom: 25%;
  left: -48px;
  filter: blur(14px);
}

/* Policies Grid */
.policies-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-3xl);
}

.policy-card {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--color-primary),
    var(--color-secondary)
  );
  transition: width var(--transition-base);
}

.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.policy-card:hover::before {
  width: 10px;
}

.policy-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.1) 0%,
    rgba(232, 159, 91, 0.1) 100%
  );
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

.policy-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-primary);
}

.policy-card:hover .policy-icon {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.15) 0%,
    rgba(232, 159, 91, 0.15) 100%
  );
}

.policy-card h3 {
  position: relative;
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  padding-left: 1.2rem;
}

.policy-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  background: linear-gradient(135deg, #e89f5b, #ffc107);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(232, 159, 91, 0.25);
}

.policy-card > p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  text-align: justify;
}

.policy-card ul {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0 0;
}

.policy-card ul li {
  padding: var(--spacing-sm) 0 var(--spacing-sm) var(--spacing-xl);
  position: relative;
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.policy-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xl);
}

/* Normative Decoration */
.normative-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.norm-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.norm-1 {
  width: 165px;
  height: 165px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.15),
    rgba(255, 193, 7, 0.08),
    transparent
  );
  top: 68%;
  right: -58px;
  filter: blur(15px);
}

.norm-2 {
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.12),
    rgba(168, 213, 163, 0.06),
    transparent
  );
  bottom: 8%;
  left: -45px;
  filter: blur(13px);
}

/* Normative Section */
.normative-section {
  position: relative;
  z-index: 1;
  margin-bottom: var(--spacing-3xl);
}

.normative-intro {
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.04) 0%,
    rgba(232, 180, 133, 0.06) 100%
  );
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-xl);
  border-left: 4px solid var(--color-primary);
}

.normative-intro p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin: 0;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.external-link-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--color-gray-200);
  text-decoration: none;
  transition: all var(--transition-base);
}

.external-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.external-link-card .link-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.1) 0%,
    rgba(232, 159, 91, 0.1) 100%
  );
  border-radius: var(--border-radius-md);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.external-link-card .link-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
}

.external-link-card:hover .link-icon {
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.2) 0%,
    rgba(232, 159, 91, 0.2) 100%
  );
  transform: scale(1.1);
}

.link-content h4 {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin: 0 0 var(--spacing-xs);
}

.link-content p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

/* Info Box */
.info-box {
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.05) 0%,
    rgba(232, 180, 133, 0.08) 100%
  );
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  border-left: 6px solid var(--color-secondary);
  margin-top: var(--spacing-2xl);
}

.info-box h3 {
  position: relative;
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-semibold);
  padding-left: 1.3rem;
}

.info-box h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, #e89f5b, #ffc107);
  border-radius: 2px;
}

.info-box p {
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-lg);
  margin: 0;
}

.info-box strong {
  color: var(--color-primary);
}

/* Sidebar Decoration */
.sidebar-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.side-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.side-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.2),
    rgba(255, 193, 7, 0.15),
    transparent
  );
  top: 10%;
  right: -40px;
  filter: blur(12px);
}

.side-2 {
  width: 92px;
  height: 92px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.2),
    rgba(168, 213, 163, 0.1),
    transparent
  );
  bottom: 42%;
  left: -30px;
  filter: blur(10px);
}

.side-3 {
  width: 110px;
  height: 110px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.18),
    rgba(255, 193, 7, 0.12),
    transparent
  );
  bottom: 10%;
  right: -35px;
  filter: blur(13px);
}

/* === Sidebar === */
.sidebar {
  position: relative;
  z-index: 1;
}

.sidebar-card {
  background: white;
  padding: 1.75rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(61, 92, 58, 0.08);
  border: 1px solid rgba(61, 92, 58, 0.08);
  margin-bottom: 1.5rem;
}

.sidebar-card-featured {
  background: linear-gradient(
    145deg,
    rgba(61, 92, 58, 0.04),
    rgba(122, 159, 118, 0.04)
  );
  border: 2px solid #7a9f76;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(61, 92, 58, 0.12);
}

.sidebar-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.15),
    rgba(122, 159, 118, 0.15)
  );
  border-radius: 12px;
  color: #3d5c3a;
  flex-shrink: 0;
}

.sidebar-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sidebar-card h4 {
  color: #3d5c3a;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.sidebar-desc {
  color: #5a6f58;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 0.5rem;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 12px;
  color: #3d5c3a;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.sidebar-links a:hover {
  background: rgba(122, 159, 118, 0.08);
  padding-left: 1.2rem;
  color: #2a3f28;
}

.sidebar-links .link-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a9f76;
  flex-shrink: 0;
}

.sidebar-links .link-icon svg {
  width: 100%;
  height: 100%;
}

/* === Contact Sidebar === */
.sidebar-card-contact {
  background: linear-gradient(145deg, #f8f7f2, #ffffff);
}

.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61, 92, 58, 0.08);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item strong {
  display: block;
  color: #3d5c3a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.contact-item p {
  color: #5a6f58;
  margin: 0;
}

.btn-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #3d5c3a, #7a9f76);
  color: white !important;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(61, 92, 58, 0.2);
}

.btn-sidebar:hover {
  background: linear-gradient(135deg, #2a3f28, #5a7f56);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61, 92, 58, 0.3);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .intro-section,
  .policy-card,
  .external-link-card {
    padding: var(--spacing-lg);
  }
}
/* ============================================
   CORPORATIVO - QUI�NES SOMOS
   ============================================ */
/* === Main Container === */
.page-main {
  background: #fffdf9;
  color: #3d5c3a;
}

/* === Hero Section === */
.page-hero {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(61, 92, 58, 0.96),
    rgba(122, 159, 118, 0.94)
  );
  color: white;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1),
    transparent 70%
  );
  border-radius: 50%;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.15),
    rgba(255, 193, 7, 0.08),
    transparent 65%
  );
  border-radius: 50%;
}

/* Hero Decorative Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #e89f5b, #ffc107);
  top: 15%;
  right: 8%;
  box-shadow: 0 8px 32px rgba(232, 159, 91, 0.3);
}

.shape-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffc107, #ffd54f);
  bottom: 20%;
  left: 12%;
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.25);
}

.shape-3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7a9f76, #a8d5a3);
  top: 50%;
  left: 5%;
  box-shadow: 0 6px 20px rgba(122, 159, 118, 0.3);
}

.shape-4 {
  width: 45px;
  height: 45px;
  background: radial-gradient(circle, #ffd54f, #ffc107);
  top: 25%;
  left: 18%;
  opacity: 0.4;
  filter: blur(2px);
}

.shape-5 {
  width: 95px;
  height: 95px;
  background: radial-gradient(circle, #e89f5b, transparent);
  bottom: 15%;
  right: 15%;
  opacity: 0.3;
  filter: blur(8px);
}

.shape-6 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #a8d5a3, #7a9f76);
  top: 12%;
  left: 35%;
  opacity: 0.35;
  filter: blur(4px);
}

.shape-7 {
  width: 55px;
  height: 55px;
  background: radial-gradient(circle, #ffc107, #ffb300);
  bottom: 30%;
  right: 25%;
  opacity: 0.5;
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.page-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.25),
    rgba(255, 193, 7, 0.2)
  );
  border: 1px solid rgba(232, 159, 91, 0.4);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(232, 159, 91, 0.15);
}

.page-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* === Section with Background === */
.section-with-bg {
  position: relative;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fefdfb 20%,
    #faf8f4 50%,
    #f8f5f0 100%
  );
  padding: 4rem 0;
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(122, 159, 118, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(232, 159, 91, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 193, 7, 0.02) 0%,
      transparent 50%
    );
}

.section-with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(122, 159, 118, 0.2) 20%,
    rgba(232, 159, 91, 0.2) 50%,
    rgba(122, 159, 118, 0.2) 80%,
    transparent
  );
}

/* === Content Grid === */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  margin-top: 3rem;
}

.content-main {
  position: relative;
}

/* Content Background Circles */
.content-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.bg-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.12),
    rgba(168, 213, 163, 0.05),
    transparent
  );
  top: 15%;
  right: -60px;
  filter: blur(16px);
}

.bg-2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.1),
    rgba(255, 193, 7, 0.04),
    transparent
  );
  top: 50%;
  left: -50px;
  filter: blur(14px);
}

.bg-3 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.12), transparent);
  bottom: 20%;
  right: 10%;
  filter: blur(18px);
}

.content-main h2 {
  position: relative;
  z-index: 1;
  color: #3d5c3a;
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  font-weight: 700;
}

.content-main h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 60%;
  background: linear-gradient(180deg, #e89f5b, #ffc107);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(232, 159, 91, 0.3);
}

.content-main h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 1.5rem;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7a9f76, transparent);
  border-radius: 2px;
}

.content-main h3 {
  position: relative;
  z-index: 1;
  color: #3d5c3a;
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  padding-left: 3rem;
  font-weight: 700;
  border-bottom: none;
}

.content-main h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.15),
    rgba(122, 159, 118, 0.15)
  );
  border: 2px solid #e89f5b;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(232, 159, 91, 0.15);
}

.content-main h3::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 0.65rem;
  width: 0.9rem;
  height: 0.9rem;
  background: linear-gradient(135deg, #e89f5b, #ffc107);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(232, 159, 91, 0.4);
}

.content-main p {
  position: relative;
  z-index: 1;
  color: #4a5f48;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* === Info Box === */
.info-box {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(232, 159, 91, 0.08),
    rgba(122, 159, 118, 0.08)
  );
  border-left: 4px solid #7a9f76;
  padding: 1.75rem;
  border-radius: 16px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(61, 92, 58, 0.12);
  gap: 1rem;
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-item strong {
  color: #3d5c3a;
  font-weight: 600;
  flex-shrink: 0;
  min-width: 140px;
}

.info-item span {
  color: #4a5f48;
  text-align: right;
}

/* === Values Grid === */
.values-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

/* Section Shapes - Valores */
.section-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.float-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.float-1 {
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.15),
    rgba(122, 159, 118, 0.05)
  );
  top: -40px;
  right: 10%;
}

.float-2 {
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.18),
    rgba(232, 159, 91, 0.06)
  );
  bottom: -30px;
  left: 8%;
}

.float-3 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.2), transparent);
  top: 50%;
  right: 5%;
  filter: blur(10px);
}

.value-card {
  position: relative;
  z-index: 1;
  background: white;
  padding: 1.75rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(61, 92, 58, 0.08);
  border: 1px solid rgba(61, 92, 58, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 12px 28px rgba(61, 92, 58, 0.15);
  transform: translateY(-4px);
  border-color: #7a9f76;
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(232, 159, 91, 0.12),
    rgba(122, 159, 118, 0.12)
  );
  border-radius: 16px;
  color: #3d5c3a;
}

.value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.value-card h4 {
  color: #3d5c3a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: #5a6f58;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* === Service List === */
.service-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

/* List Shapes - Servicios */
.list-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}

.blur-1 {
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.25),
    rgba(168, 213, 163, 0.1),
    transparent
  );
  top: 10%;
  right: -40px;
  filter: blur(12px);
}

.blur-2 {
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.2),
    rgba(255, 193, 7, 0.08),
    transparent
  );
  bottom: 15%;
  left: -30px;
  filter: blur(8px);
}

.service-list li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(61, 92, 58, 0.08);
  transition: all 0.2s ease;
}

.service-list li:hover {
  border-color: #7a9f76;
  box-shadow: 0 4px 12px rgba(61, 92, 58, 0.08);
}

.service-check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7a9f76, #3d5c3a);
  border-radius: 50%;
  color: white;
}

.service-check svg {
  width: 1rem;
  height: 1rem;
}

/* === CCU  Box === */
.ccu-box {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  padding: 2rem;
  margin: 2rem 0;
  background: linear-gradient(
    145deg,
    rgba(61, 92, 58, 0.96),
    rgba(122, 159, 118, 0.94)
  );
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(61, 92, 58, 0.2);
  color: white !important;
  overflow: hidden;
}

/* CCU Decoration Circles */
.ccu-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
}

.deco-1 {
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.25),
    rgba(255, 193, 7, 0.1),
    transparent
  );
  top: -50px;
  right: -30px;
  filter: blur(15px);
}

.deco-2 {
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  bottom: -30px;
  left: 20%;
  filter: blur(10px);
}

.deco-3 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(168, 213, 163, 0.2), transparent);
  top: 50%;
  left: -20px;
  filter: blur(8px);
}

.ccu-icon-wrapper {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ccu-icon {
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ccu-icon svg {
  width: 100%;
  height: 100%;
}

.ccu-content {
  position: relative;
  z-index: 1;
}

.ccu-content h4,
.ccu-content span {
  color: white !important;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.ccu-content p {
  color: rgba(255, 255, 255, 0.92) !important;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ccu-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.ccu-stat {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  text-align: center;
}

.ccu-stat strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.ccu-stat span {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
}

.ccu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: #3d5c3a !important;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ccu-link:hover {
  background: #f8f7f2;
  transform: translateX(4px);
}

/* === Sidebar === */
.sidebar {
  position: relative;
}

/* Sidebar Decoration Circles */
.sidebar-decoration {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.side-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.side-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(122, 159, 118, 0.2),
    rgba(168, 213, 163, 0.08),
    transparent
  );
  top: 10%;
  right: -30px;
  filter: blur(12px);
}

.side-2 {
  width: 90px;
  height: 90px;
  background: radial-gradient(
    circle,
    rgba(232, 159, 91, 0.15),
    rgba(255, 193, 7, 0.06),
    transparent
  );
  top: 45%;
  left: -25px;
  filter: blur(10px);
}

.side-3 {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.18), transparent);
  bottom: 15%;
  right: -35px;
  filter: blur(14px);
}

.sidebar-card {
  position: relative;
  z-index: 1;
  background: white;
  padding: 1.75rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(61, 92, 58, 0.08);
  border: 1px solid rgba(61, 92, 58, 0.08);
  margin-bottom: 1.5rem;
}

.sidebar-card-featured {
  background: linear-gradient(
    145deg,
    rgba(61, 92, 58, 0.04),
    rgba(122, 159, 118, 0.04)
  );
  border: 2px solid #7a9f76;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(61, 92, 58, 0.12);
}

.sidebar-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.15),
    rgba(122, 159, 118, 0.15)
  );
  border-radius: 12px;
  color: #3d5c3a;
  flex-shrink: 0;
}

.sidebar-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sidebar-card h4 {
  color: #3d5c3a;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.sidebar-desc {
  color: #5a6f58;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 0.5rem;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 12px;
  color: #3d5c3a;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.sidebar-links a:hover {
  background: rgba(122, 159, 118, 0.08);
  padding-left: 1.2rem;
  color: #2a3f28;
}

.link-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a9f76;
  flex-shrink: 0;
}

.link-icon svg {
  width: 100%;
  height: 100%;
}

/* === Contact Sidebar === */
.sidebar-card-contact {
  background: linear-gradient(145deg, #f8f7f2, #ffffff);
}

.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61, 92, 58, 0.08);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item strong {
  display: block;
  color: #3d5c3a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.contact-item p {
  color: #5a6f58;
  margin: 0;
}

.btn-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #3d5c3a, #7a9f76);
  color: white !important;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(61, 92, 58, 0.2);
}

.btn-sidebar:hover {
  background: linear-gradient(135deg, #2a3f28, #5a7f56);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61, 92, 58, 0.3);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

/* === Responsive === */
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .ccu-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ccu-icon-wrapper {
    margin: 0 auto;
  }

  .ccu-stats {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
/* ============================================
   NOTICIAS
   ============================================ */
body[data-page-slug="noticias-noticias"] .brand-hero {
  padding: 8.5rem 1rem 3.5rem !important;
}

body[data-page-slug="noticias-noticias"] .section {
  padding: 3.5rem 1rem !important;
}

body[data-page-slug="noticias-noticias"] .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

body[data-page-slug="noticias-noticias"] .section-title h2 {
  padding-left: 0;
  margin-bottom: 0.75rem;
}

body[data-page-slug="noticias-noticias"] .section-title h2::before,
body[data-page-slug="noticias-noticias"] .section-title h2::after {
  display: none;
}

body[data-page-slug="noticias-noticias"] .section-title p {
  margin: 0 auto;
  padding-left: 0;
  max-width: 760px;
}

body[data-page-slug="noticias-noticias"] .membrete {
  max-width: 820px;
  margin: 0 auto;
}

body[data-page-slug="noticias-noticias"] .btn-facebook {
  background: #1877f2 !important;
  color: #ffffff !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3) !important;
}

body[data-page-slug="noticias-noticias"] .btn-facebook:hover {
  background: #166fe5 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4) !important;
  text-decoration: none !important;
}

body[data-page-slug="noticias-noticias"] .btn-facebook svg,
body[data-page-slug="noticias-noticias"] .btn-facebook path {
  fill: currentColor;
}

body[data-page-slug="noticias-noticias"] .news-link-spaced {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 1rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  ) !important;
  color: #ffffff !important;
  border: none !important;
  text-decoration: none !important;
}

body[data-page-slug="noticias-noticias"] .news-link-spaced:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  filter: brightness(0.95);
}

.facebook-section {
  max-width: 600px;
  margin: 0 auto;
  min-width: 0;
}

.facebook-embed {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  min-width: 0;
  overflow: hidden;
}

.facebook-cta {
  text-align: center;
}

.btn-facebook {
  background: #1877f2;
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.btn-facebook:hover {
  background: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2rem;
}

.news-article {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  min-width: 0;
}

.news-article:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(230, 81, 0, 0.15);
}

.news-header {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}

.badge-featured {
  background: white;
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.news-body {
  padding: 1.5rem;
  min-width: 0;
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  flex-wrap: wrap;
  min-width: 0;
}

.news-meta span,
.news-body h3,
.news-body p,
.news-list li,
.news-impact,
.news-impact strong,
.highlight-item span,
.highlight-item strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.news-body h3 {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: 1.25rem;
  line-height: 1.3;
  max-width: 100%;
}

.news-body p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 100%;
}

.news-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  min-width: 0;
}

.highlight-item {
  text-align: center;
  min-width: 0;
}

.highlight-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.highlight-item span {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  min-width: 0;
}

.news-list li {
  padding: 0.5rem 0;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.news-impact {
  background: linear-gradient(
    135deg,
    rgba(122, 159, 118, 0.15),
    rgba(232, 180, 133, 0.15)
  );
  border-left: 4px solid var(--color-primary);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  min-width: 0;
}

.news-impact strong {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-highlights {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .facebook-embed iframe {
    height: 500px;
  }
}

.news-header-operations {
  background:
    linear-gradient(135deg, rgba(61, 92, 58, 0.9), rgba(122, 159, 118, 0.7)),
    url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 800 400%22%3E%3Crect fill=%22%233D5C3A%22 width=%22800%22 height=%22400%22/%3E%3Ctext x=%2250%25%22 y=%2250%25%22 font-size=%22120%22 text-anchor=%22middle%22 dy=%22.3em%22 fill=%22white%22 opacity=%220.2%22%3E%E2%99%BB%EF%B8%8F%3C/text%3E%3C/svg%3E");
}

.news-header-services {
  background:
    linear-gradient(135deg, rgba(232, 159, 91, 0.9), rgba(232, 180, 133, 0.7)),
    url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 800 400%22%3E%3Crect fill=%22%23E89F5B%22 width=%22800%22 height=%22400%22/%3E%3Ctext x=%2250%25%22 y=%2250%25%22 font-size=%22120%22 text-anchor=%22middle%22 dy=%22.3em%22 fill=%22white%22 opacity=%220.2%22%3E%F0%9F%9A%9B%3C/text%3E%3C/svg%3E");
}

.news-header-education {
  background:
    linear-gradient(135deg, rgba(122, 159, 118, 0.9), rgba(61, 92, 58, 0.7)),
    url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 800 400%22%3E%3Crect fill=%22%237A9F76%22 width=%22800%22 height=%22400%22/%3E%3Ctext x=%2250%25%22 y=%2250%25%22 font-size=%22120%22 text-anchor=%22middle%22 dy=%22.3em%22 fill=%22white%22 opacity=%220.2%22%3E%F0%9F%8C%B1%3C/text%3E%3C/svg%3E");
}

.news-header-transparency {
  background:
    linear-gradient(135deg, rgba(61, 92, 58, 0.9), rgba(122, 159, 118, 0.7)),
    url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 800 400%22%3E%3Crect fill=%22%233D5C3A%22 width=%22800%22 height=%22400%22/%3E%3Ctext x=%2250%25%22 y=%2250%25%22 font-size=%22120%22 text-anchor=%22middle%22 dy=%22.3em%22 fill=%22white%22 opacity=%220.2%22%3E%F0%9F%93%8A%3C/text%3E%3C/svg%3E");
}

.news-header-infrastructure {
  background:
    linear-gradient(135deg, rgba(232, 180, 133, 0.9), rgba(232, 159, 91, 0.7)),
    url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 800 400%22%3E%3Crect fill=%22%23E8B485%22 width=%22800%22 height=%22400%22/%3E%3Ctext x=%2250%25%22 y=%2250%25%22 font-size=%22120%22 text-anchor=%22middle%22 dy=%22.3em%22 fill=%22white%22 opacity=%220.2%22%3E%F0%9F%91%B7%3C/text%3E%3C/svg%3E");
}

.news-header-awards {
  background:
    linear-gradient(135deg, rgba(42, 63, 40, 0.9), rgba(122, 159, 118, 0.7)),
    url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 800 400%22%3E%3Crect fill=%22%232A3F28%22 width=%22800%22 height=%22400%22/%3E%3Ctext x=%2250%25%22 y=%2250%25%22 font-size=%22120%22 text-anchor=%22middle%22 dy=%22.3em%22 fill=%22white%22 opacity=%220.2%22%3E%F0%9F%8F%86%3C/text%3E%3C/svg%3E");
}

.facebook-embed-frame {
  border: none;
  overflow: hidden;
  border-radius: 12px;
  display: block;
  width: 100%;
  max-width: 100%;
}

.news-link-spaced {
  margin-top: 1rem;
}
/* ============================================
   SERVICIOS - APROVECHAMIENTO
   ============================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  margin-top: var(--spacing-2xl);
}
.content-main {
  min-width: 0;
}
.service-gallery {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 2rem 0;
  margin-bottom: var(--spacing-2xl);
}
.service-gallery-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  justify-items: center;
  align-items: center;
}
.service-gallery-img-xlarge {
  width: 100%;
  max-width: 240px;
  height: 200px;
  object-fit: contain;
  border-radius: var(--border-radius-xl);
  background: white;
  box-shadow: 0 4px 24px rgba(61, 92, 58, 0.1);
  border: none;
  display: block;
}
.intro-section {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-2xl);
}
.intro-section h2 {
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-bold);
}
.intro-section p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  text-align: justify;
}
.intro-section p:last-child {
  margin-bottom: 0;
}
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}
.section-title h2 {
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}
.section-title p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
}
.separation-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}
.separation-card {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  border-top: 5px solid;
  transition: all var(--transition-base);
}
.card-green {
  border-color: #4caf50;
}
.card-black {
  border-color: #424242;
}
.card-white {
  border-color: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.separation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.bag-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto var(--spacing-md);
}
.card-green .bag-icon {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}
.card-black .bag-icon {
  background: rgba(66, 66, 66, 0.15);
  color: #424242;
}
.card-white .bag-icon {
  background: rgba(158, 158, 158, 0.15);
  color: #757575;
}
.bag-icon svg {
  width: 40px;
  height: 40px;
}
.bag-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-md);
  text-align: center;
  width: 100%;
}
.badge-green {
  background: #4caf50;
  color: white;
}
.badge-black {
  background: #424242;
  color: white;
}
.badge-white {
  background: #f5f5f5;
  color: #424242;
  border: 2px solid #757575;
}
.separation-card h3 {
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}
.bag-desc {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-base);
}
.material-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.material-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--color-text-primary);
  font-size: var(--font-size-base);
}
.material-list li:last-child {
  border-bottom: none;
}
.material-list strong {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}
.recommendations-grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
}
.recommendation-item {
  display: flex;
  gap: var(--spacing-md);
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-secondary);
}
.rec-number {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: white;
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}
.recommendation-item h4 {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin: 0 0 0.25rem;
}
.recommendation-item p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}
.impact-section {
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.06),
    rgba(122, 159, 118, 0.06)
  );
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  margin-bottom: var(--spacing-2xl);
}
.impact-section h3 {
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
}
.impact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
}
.impact-card {
  text-align: center;
  padding: var(--spacing-lg);
}
.impact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
}
.impact-icon svg {
  width: 32px;
  height: 32px;
}
.impact-card h4 {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
}
.impact-card p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.info-box {
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.05),
    rgba(232, 180, 133, 0.08)
  );
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  border-left: 6px solid var(--color-secondary);
}
.info-box h3 {
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-semibold);
}
.info-box p {
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.sidebar-card {
  background: white;
  padding: 1.75rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(61, 92, 58, 0.08);
  border: 1px solid rgba(61, 92, 58, 0.08);
  margin-bottom: 1.5rem;
}
.sidebar-card-featured {
  background: linear-gradient(
    145deg,
    rgba(61, 92, 58, 0.04),
    rgba(122, 159, 118, 0.04)
  );
  border: 2px solid #7a9f76;
}
.sidebar-card-highlight {
  background: linear-gradient(
    145deg,
    rgba(232, 159, 91, 0.05),
    rgba(232, 180, 133, 0.05)
  );
  border: 2px solid #e8b485;
}
.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(61, 92, 58, 0.12);
}
.sidebar-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.15),
    rgba(122, 159, 118, 0.15)
  );
  border-radius: 12px;
  color: #3d5c3a;
  flex-shrink: 0;
}
.sidebar-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.sidebar-card h4 {
  color: #3d5c3a;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
.sidebar-desc {
  color: #5a6f58;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-links li {
  margin-bottom: 0.5rem;
}
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 12px;
  color: #3d5c3a;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
.sidebar-links a:hover {
  background: rgba(122, 159, 118, 0.08);
  padding-left: 1.2rem;
}
.sidebar-links .link-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a9f76;
  flex-shrink: 0;
}
.sidebar-links .link-icon svg {
  width: 100%;
  height: 100%;
}
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(232, 159, 91, 0.15);
}
.benefit-list li:last-child {
  border-bottom: none;
}
.benefit-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #7a9f76;
}
.benefit-list span {
  color: #3d5c3a;
  font-size: 0.9rem;
  line-height: 1.4;
}
.sidebar-card-contact {
  background: linear-gradient(145deg, #f8f7f2, #ffffff);
}
.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61, 92, 58, 0.08);
}
.contact-item:last-of-type {
  border-bottom: none;
}
.contact-item strong {
  display: block;
  color: #3d5c3a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.contact-item p {
  color: #5a6f58;
  margin: 0;
}
.btn-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #3d5c3a, #7a9f76);
  color: white !important;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(61, 92, 58, 0.2);
}
.btn-sidebar:hover {
  background: linear-gradient(135deg, #2a3f28, #5a7f56);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61, 92, 58, 0.3);
}
.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .separation-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .intro-section,
  .separation-card,
  .impact-section {
    padding: var(--spacing-lg);
  }
}
/* ============================================
   SERVICIOS - BARRIDO
   ============================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  margin-top: var(--spacing-2xl);
}
.content-main {
  min-width: 0;
}
.service-gallery {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 2rem 0;
  margin-bottom: var(--spacing-2xl);
}
.service-gallery-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  justify-items: center;
  align-items: center;
}
.service-gallery-img-xlarge {
  width: 100%;
  max-width: 240px;
  height: 200px;
  object-fit: contain;
  border-radius: var(--border-radius-xl);
  background: white;
  box-shadow: 0 4px 24px rgba(61, 92, 58, 0.1);
  border: none;
  display: block;
}
.intro-section {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-2xl);
}
.intro-section h2 {
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-bold);
}
.intro-section p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  text-align: justify;
}
.intro-section p:last-child {
  margin-bottom: 0;
}
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}
.section-title h2 {
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}
.section-title p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}
.coverage-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
}
.coverage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.coverage-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.1),
    rgba(232, 159, 91, 0.1)
  );
  margin-bottom: var(--spacing-md);
}
.coverage-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
}
.coverage-card h3 {
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
}
.coverage-card p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.frequency-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}
.frequency-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--color-secondary);
}
.frequency-card h4 {
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}
.frequency-info {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-gray-200);
}
.freq-label {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}
.freq-value {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
}
.freq-note {
  margin-top: var(--spacing-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: 0;
}
.report-section {
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.08),
    rgba(122, 159, 118, 0.08)
  );
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  margin-bottom: var(--spacing-2xl);
  border: 2px solid rgba(61, 92, 58, 0.15);
}
.report-section h3 {
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}
.report-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-relaxed);
}
.report-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}
.btn-report {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, #3d5c3a, #7a9f76);
  color: white !important;
  border-radius: var(--border-radius-lg);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(61, 92, 58, 0.2);
}
.btn-report:hover {
  background: linear-gradient(135deg, #2a3f28, #5a7f56);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61, 92, 58, 0.3);
}
.btn-report svg {
  width: 20px;
  height: 20px;
}
.btn-report-alt {
  background: linear-gradient(135deg, #e89f5b, #e8b485);
  box-shadow: 0 4px 12px rgba(232, 159, 91, 0.2);
}
.btn-report-alt:hover {
  background: linear-gradient(135deg, #d88a46, #d9a370);
  box-shadow: 0 6px 16px rgba(232, 159, 91, 0.3);
}
.info-box {
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.05),
    rgba(232, 180, 133, 0.08)
  );
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  border-left: 6px solid var(--color-secondary);
}
.info-box h3 {
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-semibold);
}
.info-box p {
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.sidebar-card {
  background: white;
  padding: 1.75rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(61, 92, 58, 0.08);
  border: 1px solid rgba(61, 92, 58, 0.08);
  margin-bottom: 1.5rem;
}
.sidebar-card-featured {
  background: linear-gradient(
    145deg,
    rgba(61, 92, 58, 0.04),
    rgba(122, 159, 118, 0.04)
  );
  border: 2px solid #7a9f76;
}
.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(61, 92, 58, 0.12);
}
.sidebar-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.15),
    rgba(122, 159, 118, 0.15)
  );
  border-radius: 12px;
  color: #3d5c3a;
  flex-shrink: 0;
}
.sidebar-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.sidebar-card h4 {
  color: #3d5c3a;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
.sidebar-desc {
  color: #5a6f58;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-links li {
  margin-bottom: 0.5rem;
}
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 12px;
  color: #3d5c3a;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
.sidebar-links a:hover {
  background: rgba(122, 159, 118, 0.08);
  padding-left: 1.2rem;
}
.sidebar-links .link-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a9f76;
  flex-shrink: 0;
}
.sidebar-links .link-icon svg {
  width: 100%;
  height: 100%;
}
.sidebar-card-contact {
  background: linear-gradient(145deg, #f8f7f2, #ffffff);
}
.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61, 92, 58, 0.08);
}
.contact-item:last-of-type {
  border-bottom: none;
}
.contact-item strong {
  display: block;
  color: #3d5c3a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.contact-item p {
  color: #5a6f58;
  margin: 0;
}
.btn-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #3d5c3a, #7a9f76);
  color: white !important;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(61, 92, 58, 0.2);
}
.btn-sidebar:hover {
  background: linear-gradient(135deg, #2a3f28, #5a7f56);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61, 92, 58, 0.3);
}
.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .coverage-grid,
  .frequency-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .intro-section,
  .coverage-card,
  .frequency-card,
  .report-section {
    padding: var(--spacing-lg);
  }
}
/* ============================================
   SERVICIOS - DISPOSICI�N FINAL
   ============================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  margin-top: var(--spacing-2xl);
}
.content-main {
  min-width: 0;
}
.service-gallery {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 2rem 0;
  margin-bottom: var(--spacing-2xl);
}
.service-gallery-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  justify-items: center;
  align-items: center;
}
.service-gallery-img-xlarge {
  width: 100%;
  max-width: 240px;
  height: 200px;
  object-fit: contain;
  border-radius: var(--border-radius-xl);
  background: white;
  box-shadow: 0 4px 24px rgba(61, 92, 58, 0.1);
  border: none;
  display: block;
}
.intro-section {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-2xl);
}
.intro-section h2 {
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-bold);
}
.intro-section p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  text-align: justify;
}
.intro-section p:last-child {
  margin-bottom: 0;
}
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}
.section-title h2 {
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}
.section-title p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}
.process-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  position: relative;
  transition: all var(--transition-base);
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.process-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: white;
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  box-shadow: 0 4px 12px rgba(61, 92, 58, 0.3);
}
.process-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.1),
    rgba(232, 159, 91, 0.1)
  );
  margin: var(--spacing-md) 0;
}
.process-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
}
.process-card h3 {
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
}
.process-card p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}
.compliance-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--color-secondary);
}
.compliance-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 159, 91, 0.15);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-md);
  color: #e89f5b;
}
.compliance-icon svg {
  width: 28px;
  height: 28px;
}
.compliance-card h4 {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
}
.compliance-card p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.traceability-section {
  background: linear-gradient(
    135deg,
    rgba(122, 159, 118, 0.08),
    rgba(232, 180, 133, 0.08)
  );
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  margin-bottom: var(--spacing-2xl);
  border: 2px solid rgba(122, 159, 118, 0.2);
}
.traceability-section h3 {
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}
.traceability-section p {
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-xl);
}
.traceability-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.stat-item span {
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}
.info-box {
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.05),
    rgba(232, 180, 133, 0.08)
  );
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  border-left: 6px solid var(--color-secondary);
}
.info-box h3 {
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-semibold);
}
.info-box p {
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.sidebar-card {
  background: white;
  padding: 1.75rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(61, 92, 58, 0.08);
  border: 1px solid rgba(61, 92, 58, 0.08);
  margin-bottom: 1.5rem;
}
.sidebar-card-featured {
  background: linear-gradient(
    145deg,
    rgba(61, 92, 58, 0.04),
    rgba(122, 159, 118, 0.04)
  );
  border: 2px solid #7a9f76;
}
.sidebar-card-highlight {
  background: linear-gradient(
    145deg,
    rgba(232, 159, 91, 0.05),
    rgba(232, 180, 133, 0.05)
  );
  border: 2px solid #e8b485;
}
.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(61, 92, 58, 0.12);
}
.sidebar-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.15),
    rgba(122, 159, 118, 0.15)
  );
  border-radius: 12px;
  color: #3d5c3a;
  flex-shrink: 0;
}
.sidebar-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.sidebar-card h4 {
  color: #3d5c3a;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
.sidebar-desc {
  color: #5a6f58;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-links li {
  margin-bottom: 0.5rem;
}
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 12px;
  color: #3d5c3a;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
.sidebar-links a:hover {
  background: rgba(122, 159, 118, 0.08);
  padding-left: 1.2rem;
}
.sidebar-links .link-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a9f76;
  flex-shrink: 0;
}
.sidebar-links .link-icon svg {
  width: 100%;
  height: 100%;
}
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(232, 159, 91, 0.15);
}
.benefit-list li:last-child {
  border-bottom: none;
}
.benefit-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #7a9f76;
}
.benefit-list span {
  color: #3d5c3a;
  font-size: 0.9rem;
  line-height: 1.4;
}
.sidebar-card-contact {
  background: linear-gradient(145deg, #f8f7f2, #ffffff);
}
.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61, 92, 58, 0.08);
}
.contact-item:last-of-type {
  border-bottom: none;
}
.contact-item strong {
  display: block;
  color: #3d5c3a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.contact-item p {
  color: #5a6f58;
  margin: 0;
}
.btn-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #3d5c3a, #7a9f76);
  color: white !important;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(61, 92, 58, 0.2);
}
.btn-sidebar:hover {
  background: linear-gradient(135deg, #2a3f28, #5a7f56);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61, 92, 58, 0.3);
}
.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .process-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .intro-section,
  .process-card,
  .compliance-card,
  .traceability-section {
    padding: var(--spacing-lg);
  }
}
/* ============================================
   SERVICIOS - RECOLECCI�N
   ============================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  margin-top: var(--spacing-2xl);
}
.content-main {
  min-width: 0;
}
.service-gallery {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 2rem 0;
  margin-bottom: var(--spacing-2xl);
}
.service-gallery-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
}
.service-gallery-flex > img {
  flex: 0 0 auto;
  width: 240px;
  max-width: 240px;
  margin-bottom: 1rem;
}
.service-gallery-img-xlarge {
  width: 100%;
  max-width: 240px;
  height: 200px;
  object-fit: contain;
  border-radius: var(--border-radius-xl);
  background: white;
  box-shadow: 0 4px 24px rgba(61, 92, 58, 0.1);
  border: none;
  display: block;
}
.intro-section {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-2xl);
}
.intro-section h2 {
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-weight-bold);
}
.intro-section p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  text-align: justify;
}
.intro-section p:last-child {
  margin-bottom: 0;
}
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}
.section-title h2 {
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
}
.section-title p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
}
.alert-box {
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.1),
    rgba(232, 180, 133, 0.15)
  );
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid #e89f5b;
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  margin-bottom: var(--spacing-2xl);
}
.alert-box svg {
  flex-shrink: 0;
  color: #e89f5b;
}
.alert-box p {
  margin: 0;
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}
.service-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.1),
    rgba(232, 159, 91, 0.1)
  );
  margin-bottom: var(--spacing-md);
}
.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
}
.service-card h3 {
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
}
.zone-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}
.schedule-info {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-gray-200);
}
.schedule-info:last-child {
  border-bottom: none;
}
.schedule-label {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}
.schedule-value {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
}
.recommendations-grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
}
.recommendation-item {
  display: flex;
  gap: var(--spacing-md);
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-secondary);
}
.rec-number {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: white;
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
}
.recommendation-item h4 {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin: 0 0 0.25rem;
}
.recommendation-item p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}
.info-box {
  background: linear-gradient(
    135deg,
    rgba(61, 92, 58, 0.05),
    rgba(232, 180, 133, 0.08)
  );
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  border-left: 6px solid var(--color-secondary);
}
.info-box h3 {
  color: var(--color-primary);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-semibold);
}
.info-box p {
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.sidebar-card {
  background: white;
  padding: 1.75rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(61, 92, 58, 0.08);
  border: 1px solid rgba(61, 92, 58, 0.08);
  margin-bottom: 1.5rem;
}
.sidebar-card-featured {
  background: linear-gradient(
    145deg,
    rgba(61, 92, 58, 0.04),
    rgba(122, 159, 118, 0.04)
  );
  border: 2px solid #7a9f76;
}
.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(61, 92, 58, 0.12);
}
.sidebar-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(232, 159, 91, 0.15),
    rgba(122, 159, 118, 0.15)
  );
  border-radius: 12px;
  color: #3d5c3a;
  flex-shrink: 0;
}
.sidebar-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.sidebar-card h4 {
  color: #3d5c3a;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
.sidebar-desc {
  color: #5a6f58;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-links li {
  margin-bottom: 0.5rem;
}
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 12px;
  color: #3d5c3a;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
.sidebar-links a:hover {
  background: rgba(122, 159, 118, 0.08);
  padding-left: 1.2rem;
}
.sidebar-links .link-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a9f76;
  flex-shrink: 0;
}
.sidebar-links .link-icon svg {
  width: 100%;
  height: 100%;
}
.sidebar-card-contact {
  background: linear-gradient(145deg, #f8f7f2, #ffffff);
}
.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61, 92, 58, 0.08);
}
.contact-item:last-of-type {
  border-bottom: none;
}
.contact-item strong {
  display: block;
  color: #3d5c3a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.contact-item p {
  color: #5a6f58;
  margin: 0;
}
.btn-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #3d5c3a, #7a9f76);
  color: white !important;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(61, 92, 58, 0.2);
}
.btn-sidebar:hover {
  background: linear-gradient(135deg, #2a3f28, #5a7f56);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61, 92, 58, 0.3);
}
.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .intro-section,
  .service-card {
    padding: var(--spacing-lg);
  }
}
/* ============================================
   TRANSPARENCIA - NORMATIVA
   ============================================ */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  color: white;
  padding: var(--spacing-3xl) 0;
  text-align: center;
}

.page-hero h1 {
  color: white;
}
.page-subtitle {
  font-size: var(--font-size-lg);
  opacity: 0.95;
}

.intro-text {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: var(--spacing-2xl) auto;
  padding: var(--spacing-xl);
  background: var(--color-bg-light);
  border-radius: var(--border-radius-lg);
}

.law-section {
  margin: var(--spacing-3xl) 0;
  background: white;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.law-header {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark),
    var(--color-primary)
  );
  color: white;
  padding: var(--spacing-xl);
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.law-icon {
  font-size: 3rem;
}

.law-header h2 {
  color: white;
  margin: 0;
}

.law-subtitle {
  margin: var(--spacing-xs) 0 0 0;
  opacity: 0.9;
  font-size: var(--font-size-base);
}

.law-content {
  padding: var(--spacing-2xl);
}

.law-content h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
}

.law-points {
  margin-top: var(--spacing-xl);
}

.law-point {
  background: var(--color-bg-light);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-primary);
}

.law-point h4 {
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-md);
}

.law-point ul {
  margin-left: var(--spacing-lg);
  margin-top: var(--spacing-sm);
}

.law-point li {
  margin-bottom: var(--spacing-xs);
}

.color-codes {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}

.color-code {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.color-box {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}

.color-box-green {
  background: #7a9f76;
}

.color-box-gray {
  background: #757575;
}

.color-box-white-bordered {
  background: #ffffff;
  border: 2px solid #333;
}

.norms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.norm-card {
  background: var(--color-bg-light);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  border-top: 3px solid var(--color-secondary);
  transition: all var(--transition-base);
}

.norm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.norm-card h4 {
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.download-section {
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-2xl);
  background: var(--color-bg-light);
  border-radius: var(--border-radius-xl);
}

.download-section h3 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.download-section .download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.download-section .download-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.download-section .download-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
  text-decoration: none;
}

.download-section .download-icon {
  font-size: 2.5rem;
}

.download-section .download-info h4 {
  margin: 0 0 var(--spacing-xs) 0;
  color: var(--color-primary);
}

.download-section .download-info p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.download-section .download-arrow {
  margin-left: auto;
  font-size: var(--font-size-2xl);
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .law-header {
    flex-direction: column;
    text-align: center;
  }

  .color-codes {
    flex-direction: column;
  }
}
/* ============================================
   TRANSPARENCIA - TRANSPARENCIA
   ============================================ */
.transparency-page {
  background: #fffdf9;
  color: #3d5c3a;
}

.transparency-page .page-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 254, 253, 0.94)
  );
  color: #fff;
}

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

.transparency-page .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.28;
}

.transparency-page .shape-1 {
  width: 180px;
  height: 180px;
  top: -30px;
  right: 6%;
  background: radial-gradient(circle, #ffc107, transparent 70%);
}

.transparency-page .shape-2 {
  width: 130px;
  height: 130px;
  bottom: -20px;
  left: 8%;
  background: radial-gradient(circle, #e89f5b, transparent 70%);
}

.transparency-page .shape-3 {
  width: 90px;
  height: 90px;
  top: 24%;
  left: 18%;
  background: radial-gradient(circle, #ffffff, transparent 72%);
}

.transparency-page .page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.transparency-page .page-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transparency-page .page-hero h1 {
  color: #051a09 !important;
}

.transparency-page .page-lead {
  color: #0f2e15 !important;
}

.transparency-page .section-with-bg {
  background: linear-gradient(180deg, #fff 0%, #faf7f1 100%);
}

.transparency-page .content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
}

.transparency-intro {
  margin-bottom: 1.5rem;
}

.transparency-intro p,
.transparency-intro h3 {
  position: relative;
  z-index: 1;
}

.transparency-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.transparency-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(255, 247, 243, 0.06);
  padding: 1.5rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.transparency-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(255, 247, 243, 0.1);
}

.transparency-card h3 {
  margin-bottom: 0.75rem;
}

.transparency-card p {
  margin-bottom: 1rem;
}

.transparency-card a {
  font-weight: 700;
}

.transparency-page .sidebar {
  display: grid;
  gap: 1.25rem;
}

.transparency-page .sidebar-card {
  border-radius: 26px;
  padding: 1.6rem;
  margin-bottom: 0;
}

.transparency-page .sidebar-dark {
  background: linear-gradient(
    160deg,
    rgba(255, 249, 242, 0.98),
    rgba(255, 254, 253, 0.96)
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 22px 42px rgba(255, 247, 243, 0.16) !important;
}

.transparency-page .sidebar-dark h4,
.transparency-page .sidebar-dark p,
.transparency-page .sidebar-dark strong,
.transparency-page .sidebar-dark a,
.transparency-page .sidebar-dark .sidebar-desc {
  color: #000000 !important;
}

.transparency-page .sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.transparency-page .sidebar-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.transparency-page .sidebar-links {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.transparency-page .sidebar-links li + li {
  margin-top: 0.65rem;
}

.transparency-page .sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.transparency-page .link-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.transparency-page .link-icon svg,
.transparency-page .btn-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.transparency-page .contact-item + .contact-item {
  margin-top: 0.85rem;
}

.transparency-page .contact-item p {
  margin: 0.2rem 0 0;
}

.transparency-page .btn-sidebar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  color: #294126 !important;
  font-weight: 700;
  text-decoration: none;
}

.transparency-page .btn-sidebar:hover {
  background: #f2eee5;
}

@media (max-width: 992px) {
  .transparency-page .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .transparency-page .page-hero {
    padding: 4.25rem 0 3rem;
  }

  .transparency-cards {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   USUARIO - PQR
   ============================================ */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-secondary-dark) 100%
  );
  color: white;
  padding: var(--spacing-3xl) 0;
  text-align: center;
}

.page-hero h1 {
  color: white;
}
.page-subtitle {
  font-size: var(--font-size-lg);
  opacity: 0.95;
  margin-top: var(--spacing-sm);
}

.legal-info {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-xl);
  border-left: 6px solid var(--color-info);
  margin-bottom: var(--spacing-3xl);
}

.legal-info h2 {
  color: var(--color-info);
  margin-bottom: var(--spacing-md);
}

.response-times {
  margin-top: var(--spacing-xl);
}

.response-times h3 {
  color: var(--color-secondary);
  margin-bottom: var(--spacing-lg);
}

.times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.time-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.time-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.time-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-base);
}

.time {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  display: block;
  margin: var(--spacing-sm) 0;
}

.description {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.pqr-types-section {
  margin: var(--spacing-3xl) 0;
}

.pqr-types-section h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  max-width: 1100px;
  margin: 0 auto;
}

.type-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 0;
  max-width: 240px;
  margin: 0 auto;
  font-size: 0.97rem;
}

.type-header {
  padding: var(--spacing-lg);
  color: white;
  text-align: center;
}

.type-header.peticion {
  background: linear-gradient(135deg, #2196f3, #1976d2);
}
.type-header.queja {
  background: linear-gradient(135deg, #ff9800, #f57c00);
}
.type-header.reclamo {
  background: linear-gradient(135deg, #f44336, #d32f2f);
}
.type-header.recurso {
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.type-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.type-header h3 {
  color: white;
  margin: 0;
}

.type-card p,
.type-card ul {
  padding: 0 var(--spacing-lg);
}

.type-card p {
  margin: var(--spacing-md) var(--spacing-lg);
}

.type-card ul {
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.form-section {
  margin: var(--spacing-3xl) 0;
  padding: var(--spacing-2xl);
  background: var(--color-bg-light);
  border-radius: var(--border-radius-xl);
}

.form-section h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.form-intro {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-2xl);
}

.pqr-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.form-section-divider {
  margin: var(--spacing-2xl) 0 var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--color-primary);
}

.form-section-divider h3 {
  color: var(--color-primary);
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group small {
  display: block;
  margin-top: var(--spacing-xs);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
}

.form-actions {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  justify-content: center;
}

.btn {
  padding: var(--spacing-md) var(--spacing-2xl);
  border: none;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--color-gray-500);
  color: white;
}

.btn-secondary:hover {
  background: var(--color-gray-600);
}

.channels-section {
  margin: var(--spacing-3xl) 0;
}

.channels-section h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.channel-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
}

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

.channel-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.channel-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.tracking-section {
  margin: var(--spacing-3xl) 0;
  padding: var(--spacing-2xl);
  background: white;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.tracking-section h2 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.tracking-form {
  display: flex;
  gap: var(--spacing-md);
  max-width: 500px;
  margin: var(--spacing-xl) auto;
}

.tracking-input {
  flex: 1;
  padding: var(--spacing-md);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-base);
}

.tracking-result {
  margin-top: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.result-card {
  background: var(--color-bg-light);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  border-left: 6px solid var(--color-primary);
}

.result-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
}

.result-row {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-gray-300);
}

.result-row .label {
  font-weight: var(--font-weight-semibold);
}

.status {
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

.status.en-tramite {
  background: #fff3e0;
  color: #e65100;
}

.result-note {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  background: white;
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-sm);
}

.additional-info {
  margin: var(--spacing-3xl) 0;
  padding: var(--spacing-2xl);
  background: #fff9c4;
  border-radius: var(--border-radius-xl);
  border-left: 6px solid #f57f17;
}

.additional-info h3 {
  color: #f57f17;
  margin-bottom: var(--spacing-md);
}

.superservicios-box {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  margin-top: var(--spacing-lg);
}

.superservicios-box h4 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

@media (max-width: 1100px) {
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .times-grid {
    grid-template-columns: 1fr;
  }
  .types-grid {
    grid-template-columns: 1fr;
  }
  .channels-grid {
    grid-template-columns: 1fr;
  }
  .tracking-form {
    flex-direction: column;
  }
  .form-actions {
    flex-direction: column;
  }
  .form-actions .btn {
    width: 100%;
  }
}

.btn-disabled,
.btn:disabled {
  background: #e0e0e0 !important;
  color: #bdbdbd !important;
  border: none !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  opacity: 0.7;
}
.btn-disabled svg path,
.btn:disabled svg path,
.btn-disabled svg polyline,
.btn:disabled svg polyline {
  stroke: #bdbdbd !important;
  fill: #e0e0e0 !important;
}

/* Evita desbordamiento de correos electrónicos */
.break-email {
  word-break: break-all;
  overflow-wrap: anywhere;
}
.email-info {
  max-width: 100%;
  word-break: break-word;
}
