/* ═══════════════════════════════════════════
   GRA DESIGN SYSTEM — Core Global
   Versión: 1.0
   Uso: Importar en TODAS las páginas del portal
   Con prueba de subida a producción (no debe romper nada)
═══════════════════════════════════════════ */

:root {
  /* ═══════════════════════════════════════
     COLORES PRIMARIOS
     ═══════════════════════════════════════ */
  --gra-green: #1D9E75;
  --gra-green-dark: #0F6E56;
  --gra-green-deeper: #085041;
  --gra-green-light: #E8F5F0;
  --gra-green-mid: #5DCAA5;
  
  /* ═══════════════════════════════════════
     COLORES NEUTROS
     ═══════════════════════════════════════ */
  --gra-black: #0a0a0a;
  --gra-gray-800: #222222;
  --gra-gray-600: #555555;
  --gra-gray-400: #888888;
  --gra-gray-200: #CCCCCC;
  --gra-gray-100: #F0EFEB;
  --gra-gray-50: #F7F8F6;
  --gra-white: #FFFFFF;
  
  /* ═══════════════════════════════════════
     COLORES SEMÁNTICOS
     ═══════════════════════════════════════ */
  --gra-danger: #DC3545;
  --gra-warning: #EF9F27;
  --gra-info: #185FA5;
  
  /* ═══════════════════════════════════════
     TIPOGRAFÍA
     ═══════════════════════════════════════ */
  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* ═══════════════════════════════════════
     ESCALA TIPOGRÁFICA
     ═══════════════════════════════════════ */
  --text-hero: clamp(36px, 5vw, 52px);
  --text-h1: clamp(28px, 3.5vw, 40px);
  --text-h2: clamp(22px, 2.5vw, 30px);
  --text-h3: 20px;
  --text-h4: 16px;
  --text-lg: 18px;
  --text-base: 15px;
  --text-sm: 13px;
  --text-xs: 11px;
  
  /* ═══════════════════════════════════════
     PESOS
     ═══════════════════════════════════════ */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;
  
  /* ═══════════════════════════════════════
     ESPACIADO — Escala 4px
     ═══════════════════════════════════════ */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  
  /* ═══════════════════════════════════════
     BORDES
     ═══════════════════════════════════════ */
  --border-thin: 1px solid var(--gra-gray-200);
  --border-light: 1px solid rgba(0,0,0,0.07);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  
  /* ═══════════════════════════════════════
     SOMBRAS
     ═══════════════════════════════════════ */
  --shadow-none: none;
  --shadow-focus: 0 0 0 3px rgba(29,158,117,0.25);
  
  /* ═══════════════════════════════════════
     LAYOUT
     ═══════════════════════════════════════ */
  --container-max: 1200px;
  --container-pad: clamp(20px, 5vw, 80px);
  --section-gap: clamp(64px, 10vw, 120px);
  --nav-height: 68px;
  
  /* ═══════════════════════════════════════
     TRANSICIONES
     ═══════════════════════════════════════ */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 120ms;
  --duration-base: 200ms;
}

/* ═══════════════════════════════════════════
   RESET & BASE — Obligatorio para todas las páginas
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gra-gray-600);
  background: var(--gra-gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ═══════════════════════════════════════════
   UTILITIES GLOBALES
   ═══════════════════════════════════════════ */
.gra-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}






/* ═══════════════════════════════════════════
   NAV — Componente completo y estable
═══════════════════════════════════════════ */

/* ── NAV BASE ── */
.gra-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-pad);
  height: var(--nav-height);
  background: var(--gra-white);
  border-bottom: var(--border-light);
}

/* Logo */
.gra-nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
  z-index: 1001;
}

.gra-nav-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--gra-green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gra-nav-logo-sq {
  width: 11px;
  height: 11px;
  background: var(--gra-green);
  border-radius: 3px;
}

.gra-nav-logo-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--weight-bold);
  color: var(--gra-black);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Hamburguesa (solo móvil) */
.gra-nav-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--gra-black);
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  z-index: 1001;
  transition: all var(--duration-fast) var(--ease);
}

.gra-nav-toggler:hover {
  background: var(--gra-gray-50);
  color: var(--gra-green);
}

.gra-nav-toggler:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

/* Contenedor del menú (Links + Botones) */
.gra-nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  transition: all var(--duration-base) var(--ease);
}

/* Links */
.gra-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gra-nav-links a {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--gra-gray-600);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease);
  white-space: nowrap;
}

.gra-nav-links a:hover {
  background: var(--gra-gray-50);
  color: var(--gra-black);
}

.gra-nav-links a:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

/* Idioma */
.gra-nav-lang {
  margin-left: var(--space-2);
}

.gra-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: var(--gra-gray-100);
  border-radius: var(--radius-pill);
  padding: 2px;
}

.gra-lang-link {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--gra-gray-400);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) var(--ease);
}

.gra-lang-link:hover {
  color: var(--gra-gray-600);
}

.gra-lang-link.active {
  background: var(--gra-white);
  color: var(--gra-black);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Botones */
.gra-nav-actions {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

/* Botones personalizados del navbar */
.gra-btn-sm {
  font-size: var(--text-sm);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: var(--weight-medium);
  transition: all var(--duration-fast) var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}

.gra-btn-wa {
  background: #25D366;
  color: var(--gra-white);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.gra-btn-wa:hover {
  background: #1ebe5d;
  color: var(--gra-white);
}

.gra-btn-secondary {
  background: var(--gra-green);
  color: var(--gra-white);
  border: 1px solid var(--gra-green);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.gra-btn-secondary:hover {
  background: var(--gra-green-dark);
  border-color: var(--gra-green-dark);
  color: var(--gra-white);
  text-decoration: none;
}

.gra-btn-secondary:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

/* ═══════════════════════════════════════════
   RESPONSIVE MÓVIL (≤768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .gra-nav {
    flex-wrap: wrap;
    padding: 0 var(--space-4);
    height: auto;
    min-height: var(--nav-height);
  }

  .gra-nav-toggler {
    display: block !important;
  }

  .gra-nav-menu {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    padding: var(--space-4) 0;
    border-top: var(--border-light);
    gap: var(--space-4);
    margin-top: var(--space-4);
    position: relative;
    z-index: 1000;
  }

  .gra-nav-menu.active {
    display: flex !important;
  }

  .gra-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .gra-nav-links a {
    padding: 12px var(--space-2);
    width: 100%;
    border-radius: 0;
    margin: 0;
  }

  .gra-nav-links li {
    width: 100%;
  }

  .gra-nav-lang {
    margin-left: 0;
    margin-top: var(--space-2);
    padding-top: var(--space-2);
    border-top: var(--border-light);
    width: 100%;
  }

  .gra-lang-toggle {
    width: 100%;
    padding: var(--space-2);
  }

  .gra-nav-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-2);
  }

  .gra-nav-actions a {
    width: 100%;
    justify-content: center;
    padding: 12px var(--space-2);
  }

  .gra-btn-sm {
    width: 100%;
    text-align: center;
    padding: 12px var(--space-2) !important;
  }

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

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

/* TABLET (769px - 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
  .gra-nav {
    flex-wrap: wrap;
  }

  .gra-nav-toggler {
    display: block !important;
  }

  .gra-nav-menu {
    display: none !important;
  }

  .gra-nav-menu.active {
    display: flex !important;
  }

  .gra-nav-links {
    flex-direction: column;
  }

  .gra-nav-actions {
    flex-direction: column;
  }
}

/* DESKTOP (≥1024px) */
@media (min-width: 1024px) {
  .gra-nav {
    padding: 0 var(--container-pad);
  }

  .gra-nav-toggler {
    display: none !important;
  }

  .gra-nav-menu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    width: auto;
    order: auto;
    padding: 0;
    border-top: none;
    gap: var(--space-6);
    margin-top: 0;
  }

  .gra-nav-links {
    flex-direction: row;
    align-items: center;
    gap: 2px;
  }

  .gra-nav-links a {
    padding: 7px 12px;
    width: auto;
    border-radius: var(--radius-sm);
  }

  .gra-nav-lang {
    margin-left: var(--space-2);
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .gra-nav-actions {
    flex-direction: row;
    width: auto;
    gap: var(--space-2);
  }

  .gra-nav-actions a {
    width: auto;
    padding: 8px 16px;
  }

  .gra-btn-sm {
    width: auto;
  }
}

/* ═══════════════════════════════════════════
   TRUST STRIP — Sección de especialidades
═══════════════════════════════════════════ */
.gra-trust-strip {
  background: var(--gra-gray-50);
  padding: var(--space-4) var(--container-pad);
  border-bottom: var(--border-light);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.gra-trust-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--gra-gray-600);
  white-space: nowrap;
}

.gra-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.gra-trust-pill {
  background: var(--gra-white);
  border: var(--border-light);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: var(--text-xs);
  color: var(--gra-gray-600);
  white-space: nowrap;
  transition: all var(--duration-fast) var(--ease);
}

.gra-trust-pill:hover {
  background: var(--gra-gray-100);
  border-color: var(--gra-gray-200);
  color: var(--gra-black);
}

/* Responsivo para Trust Strip */
@media (max-width: 768px) {
  .gra-trust-strip {
    flex-direction: column;
    padding: var(--space-3) var(--space-2);
    gap: var(--space-3);
  }

  .gra-trust-label {
    width: 100%;
    text-align: center;
  }

  .gra-trust-pills {
    width: 100%;
    justify-content: center;
  }

  .gra-trust-pill {
    font-size: var(--text-xs);
    padding: 6px 12px;
  }
}




/* ═══════════════════════════════════════════
   COTIZADOR — Estilos específicos
   Dependencias: servicio.css (design system + nav + footer)
   ═══════════════════════════════════════════ */

/* ── LAYOUT ── */
.cot-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ── PANEL IZQUIERDO — contexto ── */
.cot-left {
  background: var(--gra-green-deeper);
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 0;
  height: 100vh;
}

.cot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.cot-brand-sq {
  width: 8px;
  height: 28px;
  background: var(--gra-green-mid);
  border-radius: 2px;
}

.cot-brand-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--weight-bold);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: .02em;
}

.cot-left-eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gra-green-mid);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cot-left-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gra-green-mid);
}

.cot-left-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: var(--weight-bold);
  color: var(--gra-white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: var(--space-5);
}

.cot-left-desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: var(--space-10);
}

/* Stats */
.cot-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: var(--space-10);
}

.cot-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.cot-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: var(--weight-bold);
  color: var(--gra-white);
  line-height: 1;
  margin-bottom: 4px;
}

.cot-stat-num sup {
  font-size: 14px;
  color: var(--gra-green-mid);
}

.cot-stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* Garantías */
.cot-guarantees {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.cot-guarantee {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.cot-guarantee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gra-green-mid);
  flex-shrink: 0;
}

/* ── PANEL DERECHO — formulario ── */
.cot-right {
  padding: clamp(40px, 6vw, 80px);
  overflow-y: auto;
  background: var(--gra-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cot-form-header {
  margin-bottom: var(--space-8);
}

.cot-form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: var(--weight-bold);
  color: var(--gra-black);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.cot-form-subtitle {
  font-size: 14px;
  color: var(--gra-gray-400);
}

/* ── FORM ── */
.cot-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cot-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

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

.cot-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cot-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--gra-gray-800);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.cot-label .req {
  color: var(--gra-green);
  margin-left: 2px;
}

.cot-input,
.cot-select,
.cot-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gra-black);
  background: var(--gra-gray-50);
  border: 1.5px solid var(--gra-gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.cot-input::placeholder,
.cot-textarea::placeholder {
  color: var(--gra-gray-400);
}

.cot-input:focus,
.cot-select:focus,
.cot-textarea:focus {
  border-color: var(--gra-green);
  box-shadow: var(--shadow-focus);
  background: var(--gra-white);
}

.cot-input.error,
.cot-select.error,
.cot-textarea.error {
  border-color: var(--gra-danger);
}

.cot-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  appearance: none;
}

.cot-textarea {
  resize: vertical;
  min-height: 90px;
}

.cot-error-msg {
  font-size: var(--text-xs);
  color: var(--gra-danger);
  display: none;
}

.cot-field.has-error .cot-error-msg {
  display: block;
}

/* Divider */
.cot-divider {
  height: 1px;
  background: var(--gra-gray-100);
  margin: var(--space-6) 0;
}

/* Servicios checkboxes */
.cot-services-title {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--gra-gray-800);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.cot-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: var(--space-4);
}

.cot-check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.cot-check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--gra-gray-200);
  border-radius: 4px;
  accent-color: var(--gra-green);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.cot-check-label {
  font-size: var(--text-sm);
  color: var(--gra-gray-600);
  line-height: 1.4;
  cursor: pointer;
}

/* Términos */
.cot-terms {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: 14px;
  background: var(--gra-gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gra-gray-100);
  margin-bottom: var(--space-5);
  cursor: pointer;
}

.cot-terms input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--gra-gray-200);
  border-radius: 4px;
  accent-color: var(--gra-green);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.cot-terms-text {
  font-size: var(--text-xs);
  color: var(--gra-gray-600);
  line-height: 1.5;
}

.cot-terms-text a {
  color: var(--gra-green);
  text-decoration: underline;
}

/* Submit button */
.cot-submit {
  width: 100%;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--gra-white);
  background: var(--gra-green);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease), transform 100ms;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-3);
}

.cot-submit:hover {
  background: var(--gra-green-dark);
}

.cot-submit:active {
  transform: scale(0.99);
}

.cot-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cot-submit-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--gra-white);
  border-radius: 50%;
  animation: cot-spin 0.7s linear infinite;
}

@keyframes cot-spin {
  to {
    transform: rotate(360deg);
  }
}

.cot-wa-btn {
  width: 100%;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gra-gray-600);
  background: var(--gra-white);
  border: 1.5px solid var(--gra-gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  cursor: pointer;
  transition: border-color var(--duration-fast), color var(--duration-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.cot-wa-btn:hover {
  border-color: #25D366;
  color: #128C7E;
}

.cot-wa-icon {
  width: 18px;
  height: 18px;
  fill: #25D366;
}

.cot-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--gra-gray-400);
  margin-top: var(--space-3);
}

/* ── SUCCESS STATE ── */
.cot-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.cot-success-icon {
  width: 56px;
  height: 56px;
  background: var(--gra-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.cot-success-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gra-green);
}

.cot-success-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--weight-bold);
  color: var(--gra-black);
  margin-bottom: var(--space-2);
}

.cot-success-desc {
  font-size: 14px;
  color: var(--gra-gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.cot-success-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--gra-green-dark);
  background: var(--gra-green-light);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: var(--space-6);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .cot-page {
    grid-template-columns: 1fr;
  }

  .cot-left {
    position: static;
    height: auto;
    padding: 36px 24px;
  }

  .cot-stats {
    grid-template-columns: 1fr 1fr;
    margin-bottom: var(--space-6);
  }

  .cot-right {
    padding: 36px 24px;
  }

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

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




/* ═══════════════════════════════════════════════════════════
     FOOTER — FONDO OSCURO #1a2520
     ═══════════════════════════════════════════════════════════ */

.gra-footer {
  background: #1a2520;
  padding: var(--space-12) 0 var(--space-8) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Grid de 3 columnas */
.gra-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

/* Cada columna */
.gra-footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Logo / nombre de marca */
.gra-footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--gra-white);
  letter-spacing: -0.01em;
}

/* Descripción de la marca */
.gra-footer-description {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* Título de columna */
.gra-footer-col-title {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-2);
}

/* Lista de contacto */
.gra-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.gra-footer-contact li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.gra-footer-contact a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

.gra-footer-contact a:hover {
  color: var(--gra-green-light);
  text-decoration: underline;
}

/* Lista de enlaces de servicios */
.gra-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.gra-footer-links li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

.gra-footer-links li a:hover {
  color: var(--gra-green-light);
  text-decoration: underline;
}

/* Copyright */
.gra-footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-6);
  text-align: center;
}

.gra-footer-copyright p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  margin: 0;
}

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

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .gra-footer {
    padding: var(--space-10) 0 var(--space-6) 0;
  }
  
  .gra-footer-grid {
    gap: var(--space-6);
  }
  
  .gra-footer-logo {
    font-size: 16px;
  }
  
  .gra-footer-description {
    font-size: 12px;
  }
}

/* Móvil (≤767px) */
@media (max-width: 767px) {
  .gra-footer {
    padding: var(--space-8) 0 var(--space-6) 0;
  }
  
  .gra-footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
  }
  
  .gra-footer-col {
    text-align: center;
    align-items: center;
  }
  
  .gra-footer-contact {
    align-items: center;
  }
  
  .gra-footer-links {
    align-items: center;
  }
  
  .gra-footer-col-title {
    text-align: center;
  }
}