  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green-deep:   #1B5E3B;
    --green-mid:    #2ECC7F;
    --green-light:  #A8F0CE;
    --yellow:       #F5C842;
    --yellow-dark:  #D4A71A;
    --dark:         #0A1F14;
    --surface:      #F2F7F4;
    --white:        #FFFFFF;
    --text-main:    #1C2B22;
    --text-muted:   #5A7A66;
    --header-h:     72px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--text-main);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ─── HEADER ─────────────────────────────────────────── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 900;
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s;
  }
  header.scrolled {
    background: rgba(10, 31, 20, 0.97);
    box-shadow: 0 2px 24px rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
  .logo-text { line-height: 1.1; }
  .logo-title {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: -0.02em;
  }
  .logo-sub {
    display: block;
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--green-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* Nav links */
  nav { display: flex; align-items: center; gap: 8px; }
  nav a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
  }
  nav a:hover { color: var(--yellow); background: rgba(255,255,255,0.07); }
  .nav-cta {
    background: var(--yellow) !important;
    color: var(--dark) !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    padding: 9px 18px !important;
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-cta:hover { background: var(--yellow-dark) !important; transform: translateY(-1px); }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile menu */
  .mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(10, 31, 20, 0.98);
    backdrop-filter: blur(16px);
    padding: 20px 28px 32px;
    z-index: 899;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
  }
  .mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
  .mobile-menu a {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 500;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--yellow); }
  .mobile-menu a.m-cta {
    margin-top: 12px;
    background: var(--yellow);
    color: var(--dark);
    text-align: center;
    border-radius: 10px;
    border-bottom: none;
    font-weight: 600;
  }

  /* ─── HERO ───────────────────────────────────────────── */
  #inicio {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image:
      url('https://diprocesos.com.co/assets/img/img_09.png');
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.05);
    animation: zoomOut 12s ease forwards;
  }
  @keyframes zoomOut { to { transform: scale(1); } }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(10, 31, 20, 0.90) 0%,
      rgba(27, 94, 59, 0.70) 55%,
      rgba(10, 31, 20, 0.80) 100%
    );
  }

  /* Decorative shape */
  .hero-shape {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 100px;
    overflow: hidden;
  }
  .hero-shape svg { display: block; }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 28px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  .hero-left { max-width: 600px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 200, 66, 0.15);
    border: 1px solid rgba(245, 200, 66, 0.4);
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeUp 0.7s 0.1s both;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--yellow);
    border-radius: 50%;
  }

  .hero-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeUp 0.7s 0.2s both;
  }
  .hero-title em {
    font-style: normal;
    color: var(--yellow);
  }

  .hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 300;
    animation: fadeUp 0.7s 0.3s both;
  }

  .hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 0.7s 0.4s both;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(245, 200, 66, 0.35);
  }
  .btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 200, 66, 0.45);
  }
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 12px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
  }
  .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
  }

  /* Stats en el hero */
  .hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
    animation: fadeUp 0.7s 0.5s both;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.9rem;
    color: var(--yellow);
    line-height: 1;
    display: block;
  }
  .stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
    display: block;
  }
  .stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.12);
    align-self: stretch;
  }

  /* Tarjeta derecha */
  .hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 32px;
    animation: fadeLeft 0.8s 0.4s both;
  }
  .card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 6px;
  }
  .card-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
  }
  .card-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .card-item:last-child { border-bottom: none; padding-bottom: 0; }
  .card-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
  }
  .card-icon.g { background: rgba(46, 204, 127, 0.18); }
  .card-icon.y { background: rgba(245, 200, 66, 0.18); }
  .card-icon.b { background: rgba(100, 180, 255, 0.18); }
  .card-info {}
  .card-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
  }
  .card-info span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
  }
  .card-footer {
    margin-top: 22px;
    display: flex;
    gap: 10px;
  }
  .card-footer a {
    flex: 1;
    text-align: center;
    padding: 11px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
  }
  .cf-main {
    background: var(--yellow);
    color: var(--dark);
  }
  .cf-main:hover { background: var(--yellow-dark); }
  .cf-sec {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
  }
  .cf-sec:hover { background: rgba(255,255,255,0.14); }

  /* ─── WHATSAPP FLOTANTE ──────────────────────────────── */
  .wa-float {
    position: fixed;
    left: 22px;
    bottom: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
    filter: drop-shadow(0 4px 14px rgba(37,211,102,0.5));
    animation: fadeUp 0.6s 1s both;
  }
  .wa-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px 20px 12px 14px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: padding 0.3s, gap 0.3s;
    overflow: hidden;
    white-space: nowrap;
    max-width: 56px;
    transition: max-width 0.4s ease, padding 0.3s;
  }
  .wa-float a:hover {
    max-width: 260px;
    padding: 12px 20px 12px 14px;
  }
  .wa-icon { width: 28px; height: 28px; flex-shrink: 0; }
  .wa-text { opacity: 0; transition: opacity 0.3s 0.1s; }
  .wa-float a:hover .wa-text { opacity: 1; }
  .wa-pulse {
    position: absolute;
    top: 0; left: 0;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 2.2s ease-out infinite;
    pointer-events: none;
  }
  @keyframes pulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
  }

  /* ─── ANIMATIONS ─────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  /* ─── SERVICIOS ──────────────────────────────────────── */
  .servicios-section { background: var(--surface); padding: 96px 0 80px; }
  .s-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
  .s-header { text-align: center; margin-bottom: 60px; }
  .s-badge { display: inline-block; background: var(--green-deep); color: var(--green-light); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 18px; border-radius: 100px; margin-bottom: 18px; }
  .s-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px; }
  .s-title em { font-style: normal; color: var(--green-deep); }
  .s-desc { font-size: 1rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }
  .s-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .s-card { background: var(--white); border-radius: 18px; padding: 26px 24px; border: 1px solid rgba(27,94,59,0.08); display: flex; flex-direction: column; gap: 10px; transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; }
  .s-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 18px 18px 0 0; background: var(--green-mid); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
  .s-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(27,94,59,0.10); }
  .s-card:hover::before { transform: scaleX(1); }
  .s-card[data-color="blue"]::before { background: #378ADD; }
  .s-card[data-color="yellow"]::before { background: var(--yellow); }
  .s-card[data-color="purple"]::before { background: #7F77DD; }
  .s-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 6px; }
  .s-icon { width: 46px; height: 46px; background: rgba(27,94,59,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .s-icon svg { width: 22px; height: 22px; stroke: var(--green-deep); }
  .s-card[data-color="blue"] .s-icon { background: rgba(55,138,221,0.10); }
  .s-card[data-color="blue"] .s-icon svg { stroke: #185FA5; }
  .s-card[data-color="yellow"] .s-icon { background: rgba(245,200,66,0.12); }
  .s-card[data-color="yellow"] .s-icon svg { stroke: var(--yellow-dark); }
  .s-card[data-color="purple"] .s-icon { background: rgba(127,119,221,0.10); }
  .s-card[data-color="purple"] .s-icon svg { stroke: #534AB7; }
  .s-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); background: var(--surface); padding: 4px 10px; border-radius: 100px; }
  .s-card-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--dark); line-height: 1.25; }
  .s-card-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
  .s-link { display: inline-block; font-size: 0.82rem; font-weight: 600; color: var(--green-deep); text-decoration: none; margin-top: 4px; transition: color 0.2s; }
  .s-link:hover { color: var(--green-mid); }
  .s-card--featured { background: var(--dark); border-color: var(--dark); }
  .s-card--featured::before { background: var(--yellow) !important; }
  .s-icon--featured { background: rgba(245,200,66,0.15) !important; }
  .s-icon--featured svg { stroke: var(--yellow) !important; }
  .s-tag--featured { background: rgba(245,200,66,0.15); color: var(--yellow); }
  .s-card-title--featured { color: var(--white); }
  .s-card-desc--featured { color: rgba(255,255,255,0.6); }
  .s-link--featured { color: var(--yellow); background: rgba(245,200,66,0.12); padding: 8px 14px; border-radius: 8px; text-align: center; }
  .s-link--featured:hover { background: var(--yellow); color: var(--dark); }
  .s-cta-wrap { margin-top: 52px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
  .s-cta-text { font-size: 1rem; color: var(--text-muted); }

  /* ─── RESPONSIVE ─────────────────────────────────────── */
  @media (max-width: 1100px) {
    .s-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .hero-content { grid-template-columns: 1fr; gap: 36px; padding-top: 110px; }
    .hero-card { display: none; }
    .hero-left { max-width: 100%; }
    .hero-stats { gap: 20px; }
  }
  @media (max-width: 600px) {
    .s-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 500px) {
    .hero-title { font-size: 2rem; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; justify-content: center; }
    .hero-stats { flex-wrap: wrap; }
  }

  /* ─── QUIÉNES SOMOS ─────────────────────────────────────── */
  .nosotros-section { padding: 96px 0 80px; background: var(--white); }
  .n-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
  .n-intro { text-align: center; margin-bottom: 56px; }
  .dign-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 52px; }
  .dign-card { background: var(--surface); border-radius: 18px; padding: 28px 20px 22px; text-align: center; border: 1px solid rgba(27,94,59,0.08); transition: transform .25s,box-shadow .25s; }
  .dign-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(27,94,59,.10); }
  .dign-avatar { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne',sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--white); margin: 0 auto 14px; }
  .dign-name { font-family: 'Syne',sans-serif; font-weight: 700; font-size: .95rem; color: var(--dark); margin-bottom: 6px; }
  .dign-role { font-size: .72rem; font-weight: 700; color: var(--green-deep); text-transform: uppercase; letter-spacing: .07em; background: rgba(27,94,59,.09); padding: 3px 10px; border-radius: 100px; display: inline-block; }
  .dign-card--pres { background: var(--dark); }
  .dign-card--pres .dign-name { color: var(--white); }
  .dign-card--pres .dign-role { background: rgba(245,200,66,.18); color: var(--yellow); }
  .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .mv-card { border-radius: 20px; padding: 36px 32px; }
  .mv-card--mision { background: var(--green-deep); }
  .mv-card--vision { background: var(--surface); border: 1px solid rgba(27,94,59,.1); }
  .mv-emoji { font-size: 2rem; margin-bottom: 16px; display: block; }
  .mv-title { font-family: 'Syne',sans-serif; font-weight: 800; font-size: 1.15rem; margin-bottom: 12px; }
  .mv-card--mision .mv-title { color: var(--white); }
  .mv-card--vision .mv-title { color: var(--dark); }
  .mv-text { font-size: .9rem; line-height: 1.75; }
  .mv-card--mision .mv-text { color: rgba(255,255,255,.72); }
  .mv-card--vision .mv-text { color: var(--text-muted); }
  @media(max-width:1100px){ .dign-grid { grid-template-columns: repeat(2,1fr); } }
  @media(max-width:700px){ .mv-grid { grid-template-columns: 1fr; } }
  @media(max-width:480px){ .dign-grid { grid-template-columns: repeat(2,1fr); } }

  /* ─── NOTICIAS ──────────────────────────────────────────── */
  .noticias-section { padding: 96px 0 80px; background: var(--surface); }
  .news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .news-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid rgba(27,94,59,.07); transition: transform .25s,box-shadow .25s; display: flex; flex-direction: column; }
  .news-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(27,94,59,.10); }
  .news-img { width: 100%; height: 200px; object-fit: cover; display: block; }
  .news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
  .news-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .news-cat { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; }
  .news-cat--infra { background: rgba(27,94,59,.1); color: var(--green-deep); }
  .news-cat--comunidad { background: rgba(245,200,66,.15); color: var(--yellow-dark); }
  .news-cat--tech { background: rgba(127,119,221,.12); color: #534AB7; }
  .news-date { font-size: .78rem; color: var(--text-muted); }
  .news-title { font-family: 'Syne',sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--dark); line-height: 1.3; }
  .news-excerpt { font-size: .85rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
  .news-link { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--green-deep); text-decoration: none; margin-top: 4px; transition: gap .2s,color .2s; }
  .news-link:hover { color: var(--green-mid); gap: 10px; }
  @media(max-width:900px){ .news-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width:600px){ .news-grid { grid-template-columns: 1fr; } }

  /* ─── TESTIMONIOS ───────────────────────────────────────── */
  .testi-section { padding: 96px 0 80px; background: var(--dark); position: relative; overflow: hidden; }
  .testi-section::before { content:''; position: absolute; top:-80px; right:-80px; width: 400px; height: 400px; background: radial-gradient(circle,rgba(46,204,127,.07) 0%,transparent 70%); pointer-events: none; }
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .testi-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 32px 28px; display: flex; flex-direction: column; gap: 20px; transition: background .25s,border-color .25s; }
  .testi-card:hover { background: rgba(255,255,255,.07); border-color: rgba(46,204,127,.25); }
  .testi-stars { display: flex; gap: 3px; font-size: 14px; }
  .testi-quote { font-size: .9rem; line-height: 1.78; color: rgba(255,255,255,.76); font-style: italic; flex: 1; position: relative; padding-left: 24px; }
  .testi-quote::before { content: '\201C'; font-family: 'Syne',sans-serif; font-size: 3rem; font-style: normal; color: var(--green-mid); position: absolute; left: 0; top: -10px; line-height: 1; }
  .testi-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
  .testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne',sans-serif; font-weight: 700; font-size: .88rem; color: var(--dark); flex-shrink: 0; }
  .testi-info strong { display: block; font-size: .9rem; font-weight: 600; color: var(--white); }
  .testi-info span { font-size: .77rem; color: rgba(255,255,255,.42); }
  @media(max-width:900px){ .testi-grid { grid-template-columns: 1fr; } }

  /* ─── FOOTER ────────────────────────────────────────────── */
  #contacto { background: #060F09; padding: 72px 0 0; }
  .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .footer-brand p { font-size: .87rem; color: rgba(255,255,255,.4); line-height: 1.72; max-width: 280px; margin-top: 18px; }
  .footer-social { display: flex; gap: 10px; margin-top: 22px; }
  .footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.45); transition: background .2s,color .2s; }
  .footer-social a:hover { background: var(--green-deep); color: var(--white); }
  .footer-col h4 { font-family: 'Syne',sans-serif; font-weight: 700; font-size: .88rem; color: var(--white); margin-bottom: 18px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--green-mid); }
  .fc-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
  .fc-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(46,204,127,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; }
  .fc-text { font-size: .83rem; color: rgba(255,255,255,.4); line-height: 1.55; }
  .fc-text strong { display: block; color: rgba(255,255,255,.72); font-size: .81rem; margin-bottom: 1px; }
  .footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
  .footer-copy { font-size: .81rem; color: rgba(255,255,255,.26); }
  .footer-copy a { color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
  .footer-copy a:hover { color: var(--green-mid); }
  .footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
  .footer-legal a { font-size: .79rem; color: rgba(255,255,255,.26); text-decoration: none; transition: color .2s; }
  .footer-legal a:hover { color: rgba(255,255,255,.55); }
  @media(max-width:1100px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
  @media(max-width:600px){ .footer-grid { grid-template-columns: 1fr; gap: 28px; } .footer-bottom { flex-direction: column; text-align: center; } }

  /* ─── MODAL PQRS ────────────────────────────────────────── */
  .pqrs-overlay { position: fixed; inset: 0; background: rgba(6,15,9,.88); backdrop-filter: blur(8px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s; }
  .pqrs-overlay.active { opacity: 1; pointer-events: all; }
  .pqrs-modal { background: var(--white); border-radius: 24px; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(20px) scale(.97); transition: transform .3s; }
  .pqrs-overlay.active .pqrs-modal { transform: translateY(0) scale(1); }
  .pqrs-mhead { background: var(--green-deep); padding: 26px 32px 22px; border-radius: 24px 24px 0 0; position: sticky; top: 0; z-index: 2; }
  .pqrs-mhead-title { font-family: 'Syne',sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--white); }
  .pqrs-mhead-sub { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 3px; }
  .pqrs-close { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.12); border: none; color: var(--white); font-size: 17px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; line-height: 1; }
  .pqrs-close:hover { background: rgba(255,255,255,.22); }
  .pqrs-stepper { display: flex; align-items: center; padding: 18px 32px 0; }
  .pqrs-stp { display: flex; align-items: center; gap: 7px; }
  .pqrs-stp-n { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; border: 2px solid rgba(27,94,59,.18); color: var(--text-muted); background: var(--surface); transition: all .3s; flex-shrink: 0; }
  .pqrs-stp.active .pqrs-stp-n { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
  .pqrs-stp.done .pqrs-stp-n { background: var(--green-mid); color: var(--dark); border-color: var(--green-mid); }
  .pqrs-stp-l { font-size: .74rem; font-weight: 500; color: var(--text-muted); transition: color .3s; }
  .pqrs-stp.active .pqrs-stp-l { color: var(--green-deep); font-weight: 600; }
  .pqrs-sline { flex: 1; height: 2px; background: rgba(27,94,59,.12); margin: 0 6px; transition: background .3s; }
  .pqrs-sline.done { background: var(--green-mid); }
  .pqrs-body { padding: 22px 32px 32px; }
  .pqrs-panel { display: none; }
  .pqrs-panel.active { display: block; animation: fadeUp .25s both; }
  .pqrs-field { margin-bottom: 16px; }
  .pqrs-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-main); margin-bottom: 6px; }
  .pqrs-field input,.pqrs-field textarea,.pqrs-field select { width: 100%; padding: 11px 14px; border: 1.5px solid rgba(27,94,59,.18); border-radius: 10px; font-family: 'DM Sans',sans-serif; font-size: .9rem; color: var(--text-main); background: var(--surface); outline: none; transition: border-color .2s,box-shadow .2s; }
  .pqrs-field input:focus,.pqrs-field textarea:focus { border-color: var(--green-deep); box-shadow: 0 0 0 3px rgba(27,94,59,.08); background: var(--white); }
  .pqrs-field textarea { resize: vertical; min-height: 112px; }
  .pqrs-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
  .pqrs-tbtn { padding: 14px 12px; border: 1.5px solid rgba(27,94,59,.15); border-radius: 12px; background: var(--surface); cursor: pointer; text-align: center; transition: all .2s; }
  .pqrs-tbtn:hover { border-color: var(--green-deep); background: rgba(27,94,59,.05); }
  .pqrs-tbtn.sel { border-color: var(--green-deep); background: rgba(27,94,59,.08); }
  .tbtn-emoji { font-size: 1.5rem; display: block; margin-bottom: 5px; }
  .tbtn-name { font-size: .84rem; font-weight: 700; color: var(--dark); display: block; }
  .tbtn-desc { font-size: .71rem; color: var(--text-muted); display: block; margin-top: 2px; line-height: 1.3; }
  .pqrs-actions { display: flex; gap: 10px; margin-top: 22px; }
  .pbtn-back { flex: 1; padding: 12px; border: 1.5px solid rgba(27,94,59,.18); border-radius: 10px; background: none; font-family: 'DM Sans',sans-serif; font-size: .9rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all .2s; }
  .pbtn-back:hover { border-color: var(--green-deep); color: var(--green-deep); }
  .pbtn-next { flex: 2; padding: 12px; border: none; border-radius: 10px; background: var(--green-deep); font-family: 'DM Sans',sans-serif; font-size: .9rem; font-weight: 700; color: var(--white); cursor: pointer; transition: background .2s,transform .15s; }
  .pbtn-next:hover { background: #164d30; transform: translateY(-1px); }
  .pqrs-confirm { text-align: center; padding: 12px 0 8px; }
  .pqrs-ok-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(46,204,127,.14); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 30px; }
  .pqrs-rad-box { background: var(--surface); border: 1.5px dashed rgba(27,94,59,.28); border-radius: 14px; padding: 16px 24px; margin: 18px 0; }
  .pqrs-rad-lbl { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
  .pqrs-rad-num { font-family: 'Syne',sans-serif; font-weight: 800; font-size: 1.45rem; color: var(--green-deep); margin-top: 4px; }
  .pqrs-confirm-txt { font-size: .88rem; color: var(--text-muted); line-height: 1.68; }
  @media(max-width:520px){ .pqrs-modal { border-radius: 20px 20px 0 0; position: fixed; bottom: 0; left: 0; right: 0; max-height: 92vh; } .pqrs-overlay { align-items: flex-end; padding: 0; } .pqrs-body { padding: 18px 20px 28px; } .pqrs-mhead { padding: 20px 20px 16px; } .pqrs-stepper { padding: 14px 20px 0; } }

  /* ─── PQRS: estados webhook ──────────────────────────── */
  .pbtn-next:disabled { opacity: .65; cursor: not-allowed; transform: none !important; }
  .pbtn-spinner { display: inline-block; width: 15px; height: 15px; border: 2.5px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; vertical-align: middle; margin-right: 8px; }
  @keyframes spin { to { transform: rotate(360deg); } }
  .pqrs-error-box { background: #FFF3F3; border: 1.5px solid #FFCDD2; border-radius: 12px; padding: 14px 16px; margin-top: 14px; display: none; }
  .pqrs-error-box.show { display: flex; align-items: flex-start; gap: 10px; }
  .pqrs-error-box span { font-size: .84rem; color: #B71C1C; line-height: 1.55; }
  .pqrs-warn-box { background: #FFFDE7; border: 1.5px solid #FFF176; border-radius: 12px; padding: 12px 16px; margin-top: 10px; font-size: .82rem; color: #795500; line-height: 1.55; display:none; }
  .pqrs-warn-box.show { display: block; }
