/**
 * EMPSACOL - Hoja de Estilos Unificada
 * Consolida: template.css · theme.css · custom-hero.css · pages.css
 */

/* ============================================
   FUENTES
   ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Roboto+Slab:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;600;700&display=swap");

/* ============================================
   VARIABLES GLOBALES
   ============================================ */
:root {
  /* Colores principales (EMPSACOL) */
  --color-primary: #34a304;
  --color-secondary: #0031e7;
  --color-accent: #51fe02;

  --color-primary-light: #3d962a;
  --color-primary-dark: #2d8b04;
  --color-primary-alpha: rgba(52, 163, 4, 0.1);

  --color-secondary-light: #032bbb;
  --color-secondary-dark: #002bb8;
  --color-secondary-alpha: rgba(0, 49, 231, 0.1);

  /* Grises */
  --color-gray-50: #f6f7f7;
  --color-gray-100: #eceff1;
  --color-gray-200: #cfd8dc;
  --color-gray-300: #b0bec5;
  --color-gray-400: #78909c;
  --color-gray-500: #607d8b;
  --color-gray-600: #546e7a;
  --color-gray-700: #455a64;
  --color-gray-800: #37474f;
  --color-gray-900: #263238;

  /* Estados */
  --color-success: #34a304;
  --color-warning: #ffd600;
  --color-error: #d32f2f;
  --color-info: #0031e7;

  /* Textos */
  --color-text-primary: #263238;
  --color-text-secondary: #546e7a;
  --color-text-on-primary: #ffffff;
  --color-text-on-secondary: #ffffff;

  /* Tipografías */
  --font-primary: "Roboto Slab", sans-serif;
  --font-secondary: "Roboto", sans-serif;
  --font-cyber: "Rajdhani", sans-serif;
  --font-apple: "Montserrat", sans-serif;

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

  /* Radio de borde */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  /* Variables Cyber */
  --cyber-cyan: #00f2ff;
  --cyber-green: #51fe02;
  --cyber-blue: #0031e7;
  --cyber-white: #ffffff;
  --cyber-glass: rgba(0, 0, 0, 0.4);
  --cyber-border: rgba(255, 255, 255, 0.08);

  --nav-height: 80px;
}

/* ============================================
   RESET GLOBAL
   ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ============================================
   BASE TIPOGRÁFICA
   ============================================ */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

/* ============================================
   UTILIDADES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}
.text-primary {
  color: var(--color-primary);
}
.bg-primary {
  background: var(--color-primary);
}
.bg-light {
  background: #f5f5f5;
}

.section {
  padding: 4rem 0;
}

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

.section-title h2 {
  color: var(--color-primary);
  position: relative;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--color-accent);
}

/* ============================================
   CARD BASE
   ============================================ */
.card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(52, 163, 4, 0.15);
}

/* ============================================
   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-alpha);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 3rem;
  color: var(--color-primary);
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(81, 254, 2, 0.3) !important;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.navbar-logo {
  max-height: 50px !important;
  filter: drop-shadow(0 0 8px rgba(81, 254, 2, 0.5));
}

.navbar-toggle {
  display: none;
}

.navbar-company {
  font-family: var(--font-cyber);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyber-white);
  letter-spacing: 2px;
}

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

.navbar-menu > a,
.navbar-item > a {
  font-family: var(--font-apple);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-menu > a:hover,
.navbar-item:hover > a {
  color: var(--cyber-green);
  text-shadow: 0 0 10px rgba(81, 254, 2, 0.5);
}

.navbar-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--cyber-border);
  min-width: 250px;
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-item:hover .dropdown {
  display: flex;
}

.dropdown a {
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-apple);
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.dropdown a:hover {
  background: rgba(81, 254, 2, 0.1);
  color: var(--cyber-green);
  padding-left: 2rem;
}

/* ============================================
   SECCIONES Y TÍTULOS (override)
   ============================================ */
.section {
  padding: 6rem 0;
  position: relative;
}

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

.section-title h2 {
  font-family: var(--font-cyber);
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title p {
  font-family: var(--font-apple);
  font-size: 1rem;
  color: #666;
  letter-spacing: 0.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   TECHNICAL GLASSMORPHISM CARD
   ============================================ */
.technical-card {
  background: rgba(240, 238, 238, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.technical-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.technical-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  opacity: 0.8;
}

.border-green::before {
  background: #34a304;
  box-shadow: 2px 0 10px rgba(52, 163, 4, 0.2);
}

.border-blue::before {
  background: var(--cyber-blue);
  box-shadow: 2px 0 10px rgba(0, 49, 231, 0.2);
}

.technical-card h3 {
  font-family: var(--font-cyber);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
}

.technical-card p {
  font-family: var(--font-apple);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5rem;
}

.technical-card .service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.technical-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.technical-card ul li {
  font-family: var(--font-apple);
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.technical-card ul li::before {
  content: "✓";
  color: var(--cyber-green);
  font-weight: bold;
}

.services-cards-themed .service-card::before {
  background: var(--service-color);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.12);
}

.services-cards-themed {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.services-cards-themed .service-card {
  grid-column: span 2;
  width: 100%;
  max-width: none;
  min-width: 0;
  border-radius: 14px;
  border-color: rgba(0, 0, 0, 0.08);
  padding: 2rem;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(245, 245, 245, 0.9) 100%
    ),
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 60%
    );
}

.services-cards-themed .service-card:hover {
  border-color: rgba(0, 0, 0, 0.14);
}

.services-cards-themed .service-card .service-icon {
  color: var(--service-color);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.services-cards-themed .service-card ul li::before {
  color: var(--service-color);
}

.services-cards-themed .service-card .service-link {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-apple);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  border-color: var(--service-color) !important;
  color: var(--service-color);
  background: rgba(255, 255, 255, 0.75);
}

.services-cards-themed .service-card .service-link:hover {
  background: var(--service-color);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.services-cards-themed .service-card .service-link:focus-visible {
  outline: 2px solid var(--service-color);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .services-cards-themed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .services-cards-themed .service-card {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .services-cards-themed {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }

  .services-cards-themed .service-card {
    grid-column: auto;
    padding: 1.5rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050505 !important;
  border-top: 2px solid var(--cyber-green) !important;
  padding: 5rem 0 2rem !important;
  color: var(--cyber-white) !important;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 0% 0%,
      rgba(81, 254, 2, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(0, 49, 237, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.footer h4 {
  font-family: var(--font-cyber) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: var(--cyber-green) !important;
  margin-bottom: 2rem !important;
  text-shadow: 0 0 10px rgba(81, 254, 2, 0.3);
}

.footer-column a {
  font-family: var(--font-apple) !important;
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: all 0.3s ease !important;
  margin-bottom: 0.8rem !important;
  display: block !important;
  text-decoration: none !important;
}

.footer-column a:hover {
  color: var(--cyber-green) !important;
  padding-left: 8px !important;
  text-shadow: 0 0 8px rgba(81, 254, 2, 0.4);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--cyber-border);
  border-radius: 0 !important;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(81, 254, 2, 0.1);
  border-color: var(--cyber-green);
  box-shadow: 0 0 15px rgba(81, 254, 2, 0.3);
  transform: translateY(-3px);
  color: var(--cyber-green);
}

.footer-bottom {
  margin-top: 4rem !important;
  padding-top: 2.5rem !important;
  border-top: 1px solid var(--cyber-border) !important;
  font-family: var(--font-apple);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom strong {
  color: var(--cyber-green);
}

.footer-watchdog-inline {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}

.footer-watchdog-inline span {
  font-family: var(--font-cyber);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
}

.footer-watchdog-inline img {
  max-height: 56px;
  width: auto;
  max-width: 100%;
  background: #ffffff;
  padding: 0.25rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* ============================================
   BODY — COMPENSACIÓN NAVBAR FIJA
   ============================================ */
body {
  padding-top: var(--nav-height);
  overflow-x: hidden;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  padding: 0 !important;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--cyber-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--cyber-border) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
  opacity: 0.2;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--cyber-white);
  max-width: 900px;
  padding: 2rem;
  animation: fadeInScale 1.2s ease-out forwards;
}

.hero-content h1 {
  font-family: var(--font-cyber);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--cyber-white);
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(0, 242, 255, 0.2);
}

.hero-tagline {
  font-family: var(--font-apple);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-family: var(--font-apple);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  opacity: 0.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

/* ============================================
   BOTONES CYBER (hero)
   ============================================ */
.btn-cyber {
  position: relative;
  padding: 1rem 2.5rem;
  font-family: var(--font-cyber);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #1a1a1a;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
}

.hero .btn-cyber {
  color: var(--cyber-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-cyber::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.4s;
}

.btn-cyber:hover::before {
  left: 100%;
}

.btn-cyber-primary {
  border-color: var(--cyber-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.btn-cyber-primary:hover {
  background: var(--cyber-cyan);
  color: #000;
  box-shadow: 0 0 20px var(--cyber-cyan);
  transform: translateY(-2px);
}

.btn-cyber-outline {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.hero .btn-cyber-outline {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.btn-cyber-outline:hover {
  background: var(--cyber-white);
  color: #000;
  box-shadow: 0 0 20px var(--cyber-white);
  transform: translateY(-2px);
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--cyber-cyan);
  border-left: 2px solid var(--cyber-cyan);
  animation: cornerPulse 2s infinite alternate;
}

.hero-content::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid var(--cyber-cyan);
  border-right: 2px solid var(--cyber-cyan);
  animation: cornerPulse 2s infinite alternate-reverse;
}

@keyframes cornerPulse {
  0% {
    opacity: 0.3;
    transform: translate(5px, 5px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* ============================================
   RESPONSIVE — NAVBAR
   ============================================ */
@media (max-width: 992px) {
  body {
    padding-top: 70px !important;
  }

  .navbar {
    height: 70px;
  }

  .navbar-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    z-index: 1010;
  }

  .navbar-toggle span {
    width: 25px;
    height: 2px;
    background: var(--cyber-green);
    transition: 0.3s;
  }

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

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

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

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    display: flex;
    padding: 80px 0 2rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--cyber-border);
    align-items: flex-start;
    z-index: 1005;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu > a,
  .navbar-item {
    width: 100%;
  }

  .navbar-menu > a,
  .navbar-item > a {
    padding: 1.2rem 2rem;
    border-bottom: 1px solid var(--cyber-border);
    width: 100%;
  }

  .dropdown {
    position: static;
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: 100%;
    width: 100%;
  }

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

  .dropdown a {
    padding-left: 3.5rem;
  }
}

/* ============================================
   RESPONSIVE — GENERAL
   ============================================ */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
    letter-spacing: 0.2rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .btn-cyber {
    width: 100%;
    padding: 0.8rem 1.5rem;
  }

  .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;
  }
}

/* ============================================
   SUB-PÁGINAS — BODY
   ============================================ */
body {
  background: #ffffff;
  color: #263238;
  font-family: "Montserrat", sans-serif;
}

/* ============================================
   ENCABEZADO DE PÁGINA
   ============================================ */
.page-header {
  background: linear-gradient(135deg, #050505 0%, #0a0f0a 50%, #050505 100%);
  border-bottom: 3px solid #51fe02;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 0% 50%,
      rgba(81, 254, 2, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 100% 50%,
      rgba(0, 49, 231, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: "Rajdhani", sans-serif !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.4rem !important;
  color: #ffffff !important;
  text-shadow: 0 0 30px rgba(81, 254, 2, 0.3) !important;
  margin: 0 0 0.5rem 0 !important;
  padding-bottom: 0 !important;
  border: none !important;
}

.page-header h1 span {
  color: #51fe02 !important;
  text-shadow: 0 0 15px rgba(81, 254, 2, 0.6) !important;
}

.page-header h1::after {
  content: "" !important;
  display: block !important;
  width: 80px !important;
  height: 3px !important;
  background: linear-gradient(90deg, #51fe02, #0031e7) !important;
  margin-top: 1rem !important;
  box-shadow: 0 0 12px rgba(81, 254, 2, 0.5) !important;
  position: static !important;
}

.page-header p,
.page-header .container p {
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin: 0.5rem 0 0 !important;
  letter-spacing: 0.15rem !important;
  text-transform: uppercase !important;
  font-family: "Montserrat", sans-serif !important;
  text-shadow: none !important;
}

/* ============================================
   CONTENIDO PRINCIPAL
   ============================================ */
.page-content {
  background: #f8f9fa;
  padding: 3rem 0 5rem;
}

.content-section {
  background: #ffffff;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-top: 3px solid #34a304;
  position: relative;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.content-section:hover {
  box-shadow: 0 8px 30px rgba(52, 163, 4, 0.1);
  border-top-color: #51fe02;
}

.content-section h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.content-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #51fe02, #34a304);
}

.content-section h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: #263238;
  margin-bottom: 0.75rem;
}

.content-section p,
.content-section li {
  color: #546e7a;
  line-height: 1.8;
  font-size: 0.95rem;
}

.content-section ul {
  padding-left: 0;
  list-style: none;
  margin: 0.75rem 0 1rem;
}

.content-section ul li {
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  color: #546e7a;
}

.content-section ul li::before {
  content: "▸";
  color: #34a304;
  position: absolute;
  left: 0;
  top: 0.35rem;
  font-size: 0.7rem;
}

/* ============================================
   SECCIÓN CCU
   ============================================ */
.ccu-section {
  background: #ffffff;
  border: 1px solid #eceff1;
  border-left: 4px solid #34a304;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 0;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ccu-section:hover {
  border-left-color: #0031e7;
  box-shadow: 0 6px 20px rgba(0, 49, 231, 0.08);
}

.ccu-section h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #34a304;
  margin-bottom: 1rem;
}

.ccu-section p,
.ccu-section li {
  color: #546e7a;
  line-height: 1.8;
}

/* ============================================
   ALERTAS
   ============================================ */
.alert {
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  border-radius: 0;
  position: relative;
}

.alert-info {
  background: rgba(0, 49, 231, 0.06);
  border: 1px solid rgba(0, 49, 231, 0.15);
  border-left: 4px solid #0031e7;
}

.alert-info h4 {
  color: #0031e7;
  font-family: "Rajdhani", sans-serif;
}

.alert-warning {
  background: rgba(255, 140, 0, 0.06);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-left: 4px solid #ff8c00;
}

.alert-warning h4 {
  color: #e65100;
  font-family: "Rajdhani", sans-serif;
}

.alert p,
.alert li {
  color: #455a64;
  line-height: 1.7;
}

.alert a {
  color: #34a304;
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================
   GRIDS DE CARDS
   ============================================ */
.pqr-types-grid,
.channels-grid,
.supervision-cards,
.resources-info,
.indicator-grid,
.rights-grid,
.principles-grid,
.env-indicators,
.supervision-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pqr-type-card,
.channel-card,
.supervision-card,
.resource-detail,
.indicator-card,
.right-card,
.principle-card,
.env-card,
.supervision-item,
.resource-card,
.info-item,
.tariff-item {
  background: rgba(240, 238, 238, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  border-radius: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pqr-type-card,
.channel-card,
.indicator-card,
.principle-card,
.supervision-item,
.env-card,
.info-item,
.right-card {
  border-top: 3px solid #34a304;
}

.supervision-card,
.resource-detail {
  border-left: 4px solid #0031e7;
}

.resource-card {
  border-top: 3px solid #0031e7;
}

.tariff-item {
  border-left: 4px solid #0031e7;
  margin-bottom: 1rem;
}

.pqr-type-card:hover,
.channel-card:hover,
.supervision-card:hover,
.resource-detail:hover,
.indicator-card:hover,
.right-card:hover,
.principle-card:hover,
.env-card:hover,
.supervision-item:hover,
.info-item:hover,
.resource-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 40px rgba(52, 163, 4, 0.12);
  border-top-color: #51fe02;
}

.supervision-card:hover,
.resource-detail:hover,
.resource-card:hover {
  border-left-color: #0031e7;
}

.pqr-type-card h3,
.channel-card h3,
.right-card h3,
.principle-card h3,
.env-card h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: #34a304;
  margin-bottom: 0.75rem;
}

.supervision-card h3,
.resource-detail h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0031e7;
  margin-bottom: 0.75rem;
}

.supervision-item h4 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0031e7;
  margin-bottom: 0.75rem;
}

.resource-card h4 {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #34a304;
  margin-bottom: 0.5rem;
}

.tariff-item h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0031e7;
  margin-bottom: 0.5rem;
}

.pqr-type-card p,
.channel-card p,
.supervision-card p,
.right-card p,
.principle-card p,
.env-card p,
.indicator-card p,
.resource-detail p,
.resource-card p,
.info-item p,
.tariff-item p,
.supervision-item p,
.supervision-item li {
  color: #546e7a;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.info-item strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: #34a304;
  display: block;
  margin-bottom: 0.3rem;
}

/* ============================================
   INDICADORES
   ============================================ */
.indicator-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.indicator-header h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #34a304;
  margin: 0;
  flex: 1;
}

.indicator-value {
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0031e7;
  white-space: nowrap;
}

.indicator-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #90a4ae;
}

.status-good {
  color: #34a304;
  font-weight: 700;
}

.report-placeholder {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid #0031e7;
  background: rgba(0, 49, 231, 0.06);
  color: #455a64;
  line-height: 1.65;
}

.report-placeholder strong {
  color: #0031e7;
}

/* ============================================
   BARRAS DE PROGRESO
   ============================================ */
.progress-bar {
  background: #eceff1;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 0.75rem;
}

.progress-fill {
  background: linear-gradient(90deg, #34a304 0%, #51fe02 100%);
  height: 100%;
  border-radius: 5px;
  transition: width 1s ease;
  box-shadow: 0 0 8px rgba(52, 163, 4, 0.4);
}

/* ============================================
   TABLAS
   ============================================ */
.response-table,
.tariff-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.response-table th,
.tariff-table th {
  background: #34a304;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  padding: 1rem 1.2rem;
  text-align: left;
}

.response-table td,
.tariff-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid #eceff1;
  color: #546e7a;
  transition: background 0.2s;
}

.response-table tr:hover td,
.tariff-table tbody tr:hover td {
  background: rgba(52, 163, 4, 0.04);
  color: #263238;
}

.response-table tr:last-child td,
.tariff-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   FORMULARIO PQR
   ============================================ */
.pqr-form {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 4px solid #34a304;
  padding: 1.5rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.pqr-page .pqr-form-section {
  border-left: 4px solid rgba(52, 163, 4, 0.25);
}

.pqr-form .form-group:last-of-type {
  margin-bottom: 0.75rem;
}

.checkbox-group {
  background: rgba(52, 163, 4, 0.06);
  border: 1px solid rgba(52, 163, 4, 0.18);
  padding: 0.7rem 0.9rem;
}

.checkbox-group label {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  color: #455a64;
}

.checkbox-group label input[type="checkbox"] {
  margin-top: 0.15rem;
}

.pqr-form .btn-large {
  width: 100%;
  margin-top: 0.75rem;
}

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

.contact-page .contact-card {
  background: rgba(240, 238, 238, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 3px solid #0031e7;
  padding: 1.25rem;
  transition: all 0.25s ease;
}

.contact-page .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 49, 231, 0.12);
}

.contact-page .contact-card h3 {
  margin: 0 0 0.5rem;
  color: #0031e7;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.contact-page .contact-card p {
  margin: 0.2rem 0;
}

.contact-page .contact-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-panel,
.contact-form-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.35rem;
}

.contact-badge {
  display: inline-block;
  background: linear-gradient(90deg, #34a304, #2f9304);
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 0.8rem;
}

.contact-badge-alt {
  background: linear-gradient(90deg, #0031e7, #1c57ff);
}

.contact-page .contact-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: #1f2e4a;
}

.contact-subtitle {
  color: #546e7a;
  margin-bottom: 1.1rem;
}

.contact-channel-list {
  display: grid;
  gap: 0.75rem;
}

.contact-channel-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(248, 250, 252, 0.95);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
}

.contact-channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0031e7, #34a304);
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-channel-item h3 {
  margin: 0 0 0.2rem;
  color: #1f2e4a;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}

.contact-channel-item p {
  margin: 0;
  color: #607d8b;
}

.contact-form-panel h3 {
  margin: 0;
  color: #1f2e4a;
  font-size: 1.55rem;
  text-transform: none;
}

.contact-form-panel > p {
  margin: 0.45rem 0 1rem;
  color: #546e7a;
}

.contact-form .form-group label {
  text-transform: none;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-size: 0.86rem;
}

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

.contact-submit-btn {
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(90deg, #34a304, #2f9304);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(52, 163, 4, 0.32);
}

.contact-submit-btn:hover {
  background: linear-gradient(90deg, #2d8b04, #247604);
  transform: translateY(-2px);
}

.contact-pqr-link {
  margin-top: 0.85rem;
  color: #607d8b;
  font-size: 0.9rem;
}

.contact-extra-info {
  border-left: 4px solid rgba(0, 49, 231, 0.22);
}

.contact-extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.contact-extra-grid article {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid #0031e7;
  padding: 1rem;
}

.contact-extra-grid h3 {
  margin: 0 0 0.45rem;
  color: #1f2e4a;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
}

.contact-extra-grid p {
  margin: 0;
  color: #607d8b;
}

.contact-page .contact-spotlight {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1rem;
  background: linear-gradient(
    120deg,
    rgba(52, 163, 4, 0.08),
    rgba(0, 49, 231, 0.08)
  );
  border: 1px solid rgba(52, 163, 4, 0.25);
}

.contact-spotlight-main h2 {
  margin: 0.55rem 0 0.65rem;
  color: #1f2e4a;
  line-height: 1.15;
}

.contact-chip {
  display: inline-block;
  background: #34a304;
  color: #fff;
  border-radius: 999px;
  padding: 0.28rem 0.8rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.contact-spotlight-main p {
  color: #546e7a;
}

.contact-spotlight-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.contact-spotlight-side {
  border-left: 3px solid #0031e7;
  padding-left: 1rem;
}

.contact-spotlight-side h3 {
  margin: 0;
  color: #0031e7;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-size: 0.95rem;
}

.contact-spotlight-side ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
}

.contact-spotlight-side li {
  color: #546e7a;
  margin-bottom: 0.45rem;
}

.contact-page .contact-layout-alt {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

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

.contact-rail-card {
  border: 1px solid rgba(0, 49, 231, 0.14);
  border-left: 4px solid #0031e7;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.85rem 0.9rem;
}

.contact-rail-card h3 {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: #1f2e4a;
}

.contact-rail-card p {
  margin: 0.45rem 0 0.2rem;
  color: #263238;
  font-weight: 600;
}

.contact-rail-card span {
  color: #78909c;
  font-size: 0.82rem;
}

.contact-form-shell {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 4px solid #34a304;
  padding: 0;
  overflow: hidden;
}

.contact-form-head {
  padding: 1.1rem 1.1rem 0.95rem;
  background: linear-gradient(
    120deg,
    rgba(52, 163, 4, 0.1),
    rgba(0, 49, 231, 0.06)
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 49, 231, 0.1);
  color: #0031e7;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form-shell h3 {
  margin: 0;
  color: #1f2e4a;
  font-size: 1.3rem;
}

.contact-form-head > p {
  margin: 0.45rem 0 1rem;
  color: #607d8b;
}

.contact-form-modern {
  padding: 1rem 1.1rem 1.1rem;
}

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

.contact-form-grid .field-half {
  grid-column: span 1;
  margin-bottom: 0;
}

.contact-form-grid .field-full {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.contact-form-modern .form-group label {
  margin-bottom: 0.38rem;
  color: #1f2e4a;
  font-size: 0.78rem;
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
  border-radius: 12px;
  border: 1px solid #d7e1e5;
  background: #fafdff;
}

.contact-form-modern input:focus,
.contact-form-modern select:focus,
.contact-form-modern textarea:focus {
  border-color: #0031e7;
  box-shadow: 0 0 0 3px rgba(0, 49, 231, 0.12);
  background: #ffffff;
}

.contact-form-modern textarea {
  min-height: 140px;
}

.contact-form-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.contact-consent {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  color: #546e7a;
}

.contact-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: #34a304;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: #37474f;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid #cfd8dc;
  border-radius: 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #263238;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #90a4ae;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #34a304;
  box-shadow: 0 0 0 3px rgba(52, 163, 4, 0.12);
}

.form-group input[type="file"] {
  color: #607d8b;
  cursor: pointer;
}

.form-group label input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  accent-color: #34a304;
}

/* ============================================
   BOTONES (páginas interiores)
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.4s;
}

.btn:hover::after {
  left: 100%;
}

.btn-primary {
  background: #34a304;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(52, 163, 4, 0.3);
}

.btn-primary:hover {
  background: #2d8b04;
  box-shadow: 0 6px 20px rgba(52, 163, 4, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #0031e7;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(0, 49, 231, 0.25);
}

.btn-secondary:hover {
  background: #0025b8;
  box-shadow: 0 6px 20px rgba(0, 49, 231, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #34a304 !important;
  border: 2px solid #34a304;
}

.btn-outline:hover {
  background: #34a304;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(52, 163, 4, 0.3);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

.btn.is-pending {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.2);
}

.btn.is-pending:hover {
  transform: none;
  box-shadow: none;
}

/* ============================================
   CONTENEDORES INFO / CTA / DESCARGA
   ============================================ */
.download-buttons,
.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.interest-links {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.interest-links li {
  margin: 0;
}

.interest-links a {
  display: block;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0, 49, 231, 0.2);
  border-left: 4px solid #0031e7;
  background: rgba(0, 49, 231, 0.04);
  text-decoration: none;
  color: #1f3a53;
  transition: all 0.25s ease;
}

.interest-links a:hover {
  background: rgba(0, 49, 231, 0.1);
  transform: translateX(4px);
}

.tarifas-page .content-section {
  border-left: 4px solid rgba(0, 49, 231, 0.2);
}

.tarifas-page .resources-info {
  display: block;
  margin-top: 1.25rem;
}

.tarifas-page .resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.tarifas-page .resource-card {
  height: 100%;
}

.tariff-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

.tariff-process-item {
  background: rgba(0, 49, 231, 0.04);
  border: 1px solid rgba(0, 49, 231, 0.15);
  border-top: 3px solid #0031e7;
  padding: 1rem;
}

.tariff-process-item h4 {
  margin: 0 0 0.45rem;
  color: #0031e7;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
}

.tariff-process-item p {
  margin: 0;
  color: #546e7a;
}

.tariff-legal-box {
  margin-top: 1rem;
  padding: 1.1rem;
  border-left: 4px solid #ff9800;
  border: 1px solid rgba(255, 152, 0, 0.28);
  background: rgba(255, 152, 0, 0.08);
}

.tariff-legal-box h4 {
  margin: 0 0 0.8rem;
  color: #e65100;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

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

.tariff-legal-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.85rem;
}

.tariff-legal-item h5 {
  margin: 0 0 0.4rem;
  color: #263238;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
}

.tariff-legal-item ul {
  margin: 0;
  padding-left: 1rem;
}

.tariff-legal-item li {
  margin-bottom: 0.35rem;
  color: #546e7a;
}

/* ============================================
   CORPORATIVO - BLOQUES BASE
   ============================================ */
.corp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.corp-card {
  background: #f8fafb;
  border: 1px solid #eceff1;
  border-left: 4px solid #34a304;
  padding: 1.25rem;
  transition: all 0.25s ease;
}

.corp-card:hover {
  border-left-color: #0031e7;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.corp-card h3 {
  margin: 0 0 0.5rem;
  color: #263238;
  font-size: 1.05rem;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
}

.corp-card p {
  margin: 0;
  color: #546e7a;
  line-height: 1.7;
  font-size: 0.92rem;
}

.corp-highlight {
  background: linear-gradient(
    90deg,
    rgba(52, 163, 4, 0.08),
    rgba(0, 49, 231, 0.08)
  );
  border: 1px solid rgba(52, 163, 4, 0.25);
  border-left: 4px solid #34a304;
  padding: 1.2rem;
  margin-top: 1rem;
}

.corp-highlight p {
  margin: 0;
}

.corp-steps {
  margin: 0;
  padding-left: 1.25rem;
}

.corp-steps li {
  margin-bottom: 0.75rem;
  color: #546e7a;
}

.timeline-corp {
  margin-top: 1rem;
  position: relative;
  padding-left: 2rem;
}

.timeline-corp::before {
  content: "";
  position: absolute;
  left: 0.46rem;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 2px;
  background: linear-gradient(180deg, #34a304 0%, #0031e7 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.15rem;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #34a304;
  box-shadow: 0 0 0 3px rgba(52, 163, 4, 0.15);
}

.timeline-content {
  background: #f9fbfc;
  border: 1px solid #e5ecef;
  border-left: 3px solid #34a304;
  padding: 0.9rem 1rem;
}

.timeline-content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  color: #263238;
}

.timeline-content p {
  margin: 0;
  color: #546e7a;
}

.org-hierarchy {
  margin-top: 1rem;
  display: grid;
  gap: 1.1rem;
}

.org-level {
  display: grid;
  gap: 1rem;
}

.org-level-primary {
  grid-template-columns: minmax(260px, 420px);
  justify-content: center;
}

.org-level-secondary,
.org-level-tertiary {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.org-card {
  background: #f9fbfc;
  border: 1px solid #e3eaee;
  border-top: 4px solid #0031e7;
  padding: 1rem 1.1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.org-level-primary .org-card {
  border-top-color: #34a304;
}

.org-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  color: #263238;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.org-card p {
  margin: 0.2rem 0;
  font-size: 0.88rem;
  color: #546e7a;
}

/* ============================================
   SERVICIOS - PAGINAS NUEVAS
   ============================================ */
.service-hero {
  color: #ffffff;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}

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

.service-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.service-hero p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-block {
  background: #ffffff;
  border: 1px solid #e4eaee;
  border-left: 4px solid var(--service-color, #34a304);
  padding: 1.4rem;
}

.service-block h2 {
  margin-top: 0;
  color: #263238;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  font-size: 1.35rem;
}

.service-image-slot {
  border: 2px dashed rgba(55, 71, 79, 0.25);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #78909c;
  font-size: 0.9rem;
  background: #f7fafb;
}

.service-points {
  margin: 0;
  padding-left: 1.2rem;
}

.service-points li {
  margin-bottom: 0.55rem;
  color: #546e7a;
}

.service-banner {
  margin-top: 1.5rem;
  padding: 1.3rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--service-color, #34a304);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95),
    rgba(241, 245, 248, 0.9)
  );
}

.service-banner p {
  margin: 0;
  color: #37474f;
  font-weight: 600;
}

.service-theme-recoleccion {
  --service-color: #00897b;
  background: linear-gradient(135deg, #00695c 0%, #00897b 65%, #26a69a 100%);
}

.service-theme-transporte {
  --service-color: #1565c0;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 65%, #42a5f5 100%);
}

.service-theme-rellenos {
  --service-color: #6d4c41;
  background: linear-gradient(135deg, #4e342e 0%, #6d4c41 65%, #8d6e63 100%);
}

.service-theme-tratamiento {
  --service-color: #5e35b1;
  background: linear-gradient(135deg, #4527a0 0%, #5e35b1 65%, #7e57c2 100%);
}

.service-theme-aprovechamiento {
  --service-color: #2e7d32;
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 65%, #43a047 100%);
}

.service-theme-gestion-social {
  --service-color: #ef6c00;
  background: linear-gradient(135deg, #bf360c 0%, #ef6c00 65%, #ff9800 100%);
}

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

.service-gallery-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f8fbfd;
  border-radius: 10px;
  overflow: hidden;
}

.service-gallery-image {
  height: 130px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(239, 108, 0, 0.12),
    rgba(239, 108, 0, 0.28)
  );
  color: #7a3e11;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
}

.service-gallery-meta {
  padding: 0.65rem 0.75rem;
  border-top: 2px solid rgba(239, 108, 0, 0.35);
}

.service-gallery-title {
  display: block;
  color: #263238;
  font-size: 0.9rem;
}

.service-gallery-date {
  color: #607d8b;
  font-size: 0.78rem;
}

.ccu-download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.ccu-dept-card {
  --dept-color: #34a304;
  background: #ffffff;
  border: 1px solid #e4eaee;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.ccu-dept-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--dept-color);
}

.ccu-dept-card.dept-cordoba {
  --dept-color: #00897b;
}

.ccu-dept-card.dept-santander {
  --dept-color: #1e88e5;
}

.ccu-dept-card.dept-choco {
  --dept-color: #8e24aa;
}

.ccu-dept-card.dept-antioquia {
  --dept-color: #f4511e;
}

.ccu-dept-card h3 {
  margin: 0;
  color: var(--dept-color);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.ccu-dept-subtitle {
  margin: 0.45rem 0 0.9rem;
  color: #78909c;
  font-size: 0.85rem;
}

.ccu-muni-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.ccu-muni-list li {
  margin: 0;
  padding: 0;
}

.ccu-download-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  border: 1px dashed rgba(38, 50, 56, 0.2);
  background: #f9fbfc;
  color: #37474f;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ccu-download-link::before {
  content: "Municipio";
  font-size: 0.7rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  color: #90a4ae;
}

.ccu-download-link::after {
  content: "Descargar";
  font-size: 0.74rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  color: var(--dept-color);
}

.content-section .ccu-download-link {
  border-bottom: none;
}

.ccu-download-link:hover {
  background: #ffffff;
  border-style: solid;
  border-color: var(--dept-color);
  color: #263238;
  transform: translateX(2px);
}

.ccu-v3-wrap {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.ccu-v3-item {
  --v3-color: #34a304;
  border: 1px solid #e3eaee;
  border-left: 6px solid var(--v3-color);
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.ccu-v3-cordoba {
  --v3-color: #00897b;
}

.ccu-v3-santander {
  --v3-color: #1e88e5;
}

.ccu-v3-choco {
  --v3-color: #8e24aa;
}

.ccu-v3-antioquia {
  --v3-color: #f4511e;
}

.ccu-v3-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95),
    rgba(247, 250, 252, 0.95)
  );
}

.ccu-v3-item summary::-webkit-details-marker {
  display: none;
}

.ccu-v3-title {
  color: #263238;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.ccu-v3-count {
  font-size: 0.78rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  color: var(--v3-color);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
}

.ccu-v3-list {
  padding: 0.35rem 1rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.55rem;
}

.ccu-v3-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  background: #f9fbfc;
  border: 1px solid #dde6eb;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  color: #37474f;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.ccu-v3-link::after {
  content: "Descargar";
  color: var(--v3-color);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
}

.content-section .ccu-v3-link {
  border-bottom: 1px solid #dde6eb;
}

.ccu-v3-link:hover {
  border-color: var(--v3-color);
  transform: translateY(-1px);
  background: #ffffff;
}

.ccu-v3-link.is-pending {
  opacity: 0.68;
  cursor: not-allowed;
  background: #f1f4f6;
  border-style: dashed;
}

.ccu-v3-link.is-pending::after {
  content: attr(data-pending);
  color: #90a4ae;
}

#ccu-map {
  width: 100%;
  height: 420px;
  margin-top: 0.85rem;
  border: 1px solid #d7e3e8;
  border-radius: 12px;
  overflow: hidden;
}

.leaflet-container {
  font-family: "Montserrat", sans-serif;
}

.ccu-map-shell {
  margin-top: 1rem;
}

.ccu-map-toolbar {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}

.ccu-map-filter {
  border: 1px solid #d4e1e8;
  background: #f6f9fb;
  color: #30414f;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
}

.ccu-map-filter.is-active {
  background: #0031e7;
  border-color: #0031e7;
  color: #ffffff;
}

.ccu-map-legend {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.ccu-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #455a64;
}

.ccu-map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #455a64;
  border: 1px solid #d4e1e8;
  background: #f6f9fb;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ccu-map-legend-item:hover {
  border-color: #9eb6c4;
  background: #eef4f8;
}

.ccu-map-legend-item.is-active {
  border-color: #0031e7;
  background: #e9efff;
  color: #1f2e4a;
  box-shadow: 0 0 0 1px rgba(0, 49, 231, 0.15);
}

.ccu-map-legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-cordoba {
  background: #00897b;
}

.dot-santander {
  background: #1e88e5;
}

.dot-choco {
  background: #8e24aa;
}

.dot-antioquia {
  background: #f4511e;
}

.ccu-map-next-box {
  margin-top: 0.9rem;
  border: 1px solid rgba(0, 49, 231, 0.2);
  border-left: 4px solid #0031e7;
  background: rgba(0, 49, 231, 0.06);
  color: #455a64;
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  line-height: 1.55;
}

.ccu-map-next-box strong {
  color: #1f2e4a;
}

.ccu-map-pin-wrap {
  background: transparent;
  border: 0;
}

.ccu-map-pin {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.25),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.ccu-map-zone-label-wrap {
  background: transparent;
  border: 0;
}

.ccu-map-zone-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--dept-color) 50%, #ffffff 50%);
  background: color-mix(in srgb, var(--dept-color) 18%, #ffffff 82%);
  color: #263238;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.02rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.formula-info,
.contact-info,
.billing-info,
.subsidy-info {
  background: rgba(52, 163, 4, 0.05);
  border: 1px solid rgba(52, 163, 4, 0.15);
  border-left: 4px solid #34a304;
  padding: 1.5rem;
  margin-top: 1rem;
}

.formula-info h3,
.contact-info h3,
.billing-info h3,
.subsidy-info h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #34a304;
  margin-bottom: 1rem;
}

.tariff-structure {
  margin-top: 1.5rem;
}

/* ============================================
   TEXTO MISCELÁNEO
   ============================================ */
.small {
  font-size: 0.82rem;
  color: #78909c;
}

.content-section a:not(.btn) {
  color: #34a304;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(52, 163, 4, 0.3);
  transition: all 0.2s;
}

.content-section a:not(.btn):hover {
  color: #2d8b04;
  border-bottom-color: #2d8b04;
}

.alert a {
  color: #34a304;
  font-weight: 600;
}

.container > h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.container > h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #51fe02, #34a304);
  margin-top: 0.75rem;
}

/* ============================================
   RESPONSIVE — SUB-PÁGINAS
   ============================================ */
@media (max-width: 768px) {
  .content-section {
    padding: 1.5rem;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .timeline-corp {
    padding-left: 1.6rem;
  }

  .timeline-dot {
    left: -1.6rem;
  }

  .page-header {
    padding: 3rem 0 2.5rem;
  }

  .pqr-types-grid,
  .channels-grid,
  .supervision-cards,
  .resources-info,
  .indicator-grid,
  .rights-grid,
  .principles-grid,
  .env-indicators,
  .supervision-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-spotlight,
  .contact-page .contact-layout-alt {
    grid-template-columns: 1fr;
  }

  .contact-spotlight-side {
    border-left: none;
    border-top: 2px solid #0031e7;
    padding-left: 0;
    padding-top: 0.8rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-grid .field-half,
  .contact-form-grid .field-full {
    grid-column: auto;
  }

  .pqr-form {
    padding: 1rem;
  }

  .cta-buttons,
  .download-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn,
  .download-buttons .btn,
  .download-buttons a {
    width: 100%;
    text-align: center;
  }
}
