    /* ===== VARIABLES ===== */
    :root {
      --green:      #3aaa35;
      --green-dark: #27922a;
      --dark:       #1c2b27;
      --gray-700:   #374151;
      --gray-500:   #6b7280;
      --gray-300:   #d1d5db;
      --gray-100:   #f3f4f6;
      --gray-50:    #f5f5f7;
      --white:      #ffffff;
    }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--gray-700);
      background: #fff;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; cursor: pointer; }
    img { max-width: 100%; display: block; }
    svg { display: block; }
    section, #hero { scroll-margin-top: 52px; }

    /* ===== NAV ===== */
    nav {
      position: sticky; top: 0; left: 0; right: 0; z-index: 200;
      height: 52px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 6%;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
    .nav-logo { display: flex; align-items: center; gap: 9px; }
    .nav-logo img { height: 26px; width: auto; }
    .nav-logo-text { font-size: 0.9375rem; font-weight: 600; color: var(--dark); letter-spacing: -0.01em; }
    .nav-center { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
    .nav-center a { font-size: 0.75rem; font-weight: 400; color: var(--gray-500); transition: color 0.2s; }
    .nav-center a:hover { color: var(--dark); }
    .nav-right { display: flex; align-items: center; gap: 1.25rem; }
    .lang-switcher { display: flex; align-items: center; gap: 8px; }
    .lang-btn { padding: 0; border: none; background: none; font-size: 0.6875rem; font-weight: 500; color: var(--gray-300); font-family: inherit; letter-spacing: 0.02em; cursor: pointer; }
    .lang-btn.active { color: var(--dark); font-weight: 600; }
    .lang-divider { color: var(--gray-100); font-size: 0.6875rem; }
    .hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 18px; height: 1.5px; background: var(--dark); border-radius: 2px; }

    .mobile-menu { display: none; position: sticky; top: 52px; z-index: 199; background: #fff; padding: 1.25rem 6%; border-bottom: 1px solid rgba(0,0,0,0.06); flex-direction: column; gap: 0.9rem; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 0.9rem; color: var(--gray-700); padding: 0.35rem 0; }
    .mobile-lang-switcher { display: flex; gap: 1.5rem; padding-top: 1rem; margin-top: 0.4rem; border-top: 1px solid rgba(0,0,0,0.06); }
    .mobile-lang-btn { padding: 0.35rem 0; border: none; background: none; font-size: 0.85rem; font-weight: 500; color: var(--gray-300); font-family: inherit; letter-spacing: 0.02em; cursor: pointer; }

    /* ===== HERO ===== */
    #hero {
      min-height: 84vh;
      display: flex; align-items: center; justify-content: center;
      padding: 90px 6% 90px;
      background: #ffffff;
      position: relative; overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
      width: 900px; height: 900px;
      background: radial-gradient(circle, rgba(58,170,53,0.045) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner { max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
    .hero-title {
      font-size: clamp(2.75rem, 6.4vw, 5.6rem);
      font-weight: 650; line-height: 1.05; color: var(--dark);
      letter-spacing: -0.045em; margin-bottom: 1.75rem;
    }
    .hero-title .accent { color: var(--green); }
    .hero-subtitle {
      font-size: clamp(1.125rem, 1.6vw, 1.375rem);
      font-weight: 400; color: var(--gray-500); line-height: 1.6;
      margin: 0 auto 0.75rem; max-width: 640px; letter-spacing: -0.01em;
    }
    .hero-quote { font-size: 1.0625rem; color: var(--gray-500); font-style: italic; font-weight: 500; margin-top: -0.5rem; margin-bottom: 1.75rem; }
    .hero-ctas { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; align-items: center; }
    .btn-primary { display: inline-flex; align-items: center; background: var(--dark); color: #fff; padding: 14px 32px; border-radius: 999px; font-weight: 500; font-size: 0.9375rem; transition: transform 0.2s, background 0.2s; }
    .btn-primary:hover { background: #000; transform: translateY(-1px); }
    .link-secondary { display: inline-flex; align-items: center; gap: 4px; color: var(--green-dark); font-weight: 500; font-size: 0.9375rem; transition: gap 0.2s; }
    .link-secondary:hover { gap: 8px; }

    /* ===== SHARED SECTION ===== */
    section { padding: 140px 6%; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-title { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 600; color: var(--dark); letter-spacing: -0.03em; line-height: 1.1; }
    .section-desc { font-size: 1.0625rem; color: var(--gray-500); margin-top: 1rem; line-height: 1.75; font-weight: 400; }

    /* ===== ABOUT ===== */
    #about { background: var(--gray-50); }
    .about-header { margin: 0 auto 4.5rem; max-width: 640px; text-align: center; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
    .about-text { text-align: left; }
    .about-text p { color: var(--gray-500); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1.0625rem; }
    .pillars { display: flex; flex-direction: column; gap: 2.5rem; }
    .pillar { display: flex; gap: 1.25rem; align-items: flex-start; }
    .pillar-icon { width: 24px; height: 24px; flex-shrink: 0; margin-top: 0.2rem; }
    .pillar-icon svg { width: 24px; height: 24px; stroke: var(--green-dark); stroke-width: 1.6; }
    .pillar h3 { font-size: 1.0625rem; font-weight: 600; color: var(--dark); margin-bottom: 0.3rem; letter-spacing: -0.01em; }
    .pillar p { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.65; }

    /* ===== SERVICES ===== */
    #services { background: var(--white); }
    .services-header { max-width: 640px; margin: 0 auto 4.5rem; text-align: center; }
    .services-grid { display: grid; grid-template-columns: repeat(2,1fr); }
    .service-card { padding: 2.75rem 2.5rem; border-top: 1px solid rgba(0,0,0,0.08); text-align: center; display: block; }
    .service-card:nth-child(even) { border-left: 1px solid rgba(0,0,0,0.08); }
    .service-icon { width: 28px; height: 28px; margin: 0 auto 1.5rem; }
    .service-icon svg { width: 28px; height: 28px; stroke: var(--green-dark); stroke-width: 1.5; }
    .service-card h3 { font-size: 1.375rem; font-weight: 600; color: var(--dark); margin-bottom: 0.6rem; letter-spacing: -0.015em; }
    .service-card p { font-size: 1rem; color: var(--gray-500); line-height: 1.7; max-width: 400px; margin-left: auto; margin-right: auto; }

    /* ===== PROCESS ===== */
    #process { background: var(--dark); position: relative; overflow: hidden; }
    #process::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; background: radial-gradient(circle, rgba(58,170,53,0.05) 0%, transparent 70%); pointer-events: none; }
    .process-header { max-width: 760px; margin: 0 auto 5.5rem; text-align: center; position: relative; z-index: 1; }
    .process-header .section-desc { white-space: nowrap; }
    #process .section-title { color: #fff; }
    #process .section-desc { color: rgba(255,255,255,0.5); }
    .process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; position: relative; z-index: 1; }
    .process-connector { position: absolute; top: 31px; left: calc(16.67% + 16px); right: calc(16.67% + 16px); height: 2px; background: linear-gradient(90deg, rgba(58,170,53,0.6), rgba(39,146,42,0.3)); }
    .step { text-align: center; position: relative; }
    .step-num { width: 62px; height: 62px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; color: #fff; margin: 0 auto 1.5rem; position: relative; z-index: 1; box-shadow: 0 0 0 8px rgba(58,170,53,0.12); }
    .step h3 { font-size: 1.125rem; font-weight: 600; color: #fff; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
    .step p { font-size: 0.9375rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; margin-left: auto; margin-right: auto; }

    /* ===== CONTACT ===== */
    #contact { background: var(--white); text-align: center; }
    .contact-title { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 600; color: var(--dark); letter-spacing: -0.035em; line-height: 1.1; max-width: none; margin: 0 auto; white-space: nowrap; }
    .contact-desc { font-size: 1.125rem; color: var(--gray-500); margin-top: 1.25rem; max-width: none; margin-left: auto; margin-right: auto; line-height: 1.7; white-space: nowrap; }
    .contact-items { display: flex; flex-direction: row; gap: 3rem; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
    .contact-item { display: flex; align-items: center; gap: 10px; }
    .contact-item svg { width: 19px; height: 19px; stroke: var(--green-dark); stroke-width: 1.7; }
    .contact-item span { font-size: 0.9375rem; color: var(--gray-700); font-weight: 400; }
    .contact-cta { margin-top: 2.75rem; }

    /* ===== FOOTER ===== */
    footer { background: var(--dark); padding: 4rem 6% 2.25rem; }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-logo { display: flex; align-items: center; gap: 8px; }
    .footer-logo img { width: 24px; height: auto; }
    .footer-logo-text { font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: -0.01em; }
    .footer-nav { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
    .footer-nav a { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.45); transition: color 0.2s; }
    .footer-nav a:hover { color: #fff; }
    .footer-social { display: flex; align-items: center; gap: 1.1rem; }
    .social-btn { display: flex; align-items: center; justify-content: center; transition: opacity 0.2s; }
    .social-btn:hover { opacity: 0.6; }
    .social-btn svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.55); }
    .social-btn svg.icon-stroke { fill: none; stroke: rgba(255,255,255,0.55); stroke-width: 1.5; }
    .social-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.14); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; padding-top: 1.75rem; font-size: 0.75rem; color: rgba(255,255,255,0.3); }
    .footer-legal { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }
    .footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: color 0.2s; cursor: pointer; background: none; border: none; padding: 0; font-family: 'Inter', sans-serif; }
    .footer-legal a:hover { color: rgba(255,255,255,0.65); }

    /* ===== LEGAL MODAL ===== */
    .legal-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
      align-items: center; justify-content: center;
      padding: 5%;
    }
    .legal-overlay.open { display: flex; }
    .legal-panel {
      background: var(--white);
      border-radius: 20px;
      width: 100%; max-width: 780px;
      max-height: 85vh;
      display: flex; flex-direction: column;
      box-shadow: 0 24px 80px rgba(0,0,0,0.25);
      overflow: hidden;
    }
    .legal-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.25rem 1.75rem;
      border-bottom: 1px solid var(--gray-100);
      flex-shrink: 0;
    }
    .legal-header-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
    .legal-close {
      width: 32px; height: 32px;
      border: none; background: var(--gray-100);
      border-radius: 8px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .legal-close:hover { background: var(--gray-300); }
    .legal-close svg { width: 14px; height: 14px; stroke: var(--gray-700); stroke-width: 2.5; }
    .legal-body { overflow-y: auto; padding: 2rem 1.75rem; flex: 1; font-size: 0.875rem; color: var(--gray-700); line-height: 1.75; }
    .legal-body h2 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; margin-top: 0; }
    .legal-body h3 { font-size: 0.875rem; font-weight: 700; color: var(--dark); margin-top: 1.25rem; margin-bottom: 0.4rem; }
    .legal-body p { margin-bottom: 0.75rem; }
    .legal-body table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.8rem; }
    .legal-body th { background: var(--gray-100); font-weight: 700; padding: 0.5rem 0.75rem; text-align: left; border: 1px solid var(--gray-300); }
    .legal-body td { padding: 0.5rem 0.75rem; border: 1px solid var(--gray-300); vertical-align: top; }
    .legal-body a { color: var(--green); }
    .legal-body strong { font-weight: 700; color: var(--dark); }
    .legal-body ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
    .legal-body ul li { margin-bottom: 0.3rem; }
    .legal-meta { font-size: 0.775rem; color: var(--gray-500); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-100); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 960px) {
      .about-grid, .services-grid, .process-steps { grid-template-columns: 1fr; gap: 3rem; }
      .process-connector { display: none; }
      .process-header .section-desc { white-space: normal; }
      .contact-title, .contact-desc { white-space: normal; }
      .service-card:nth-child(even) { border-left: none; }
      .service-card { border-top: 1px solid rgba(0,0,0,0.08) !important; padding: 2.25rem 1rem !important; }
    }
    @media (max-width: 640px) {
      section { padding: 88px 6%; }
      .nav-center, .lang-switcher { display: none; }
      .hamburger { display: flex; }
      .hero-ctas { flex-direction: column; }
      .footer-top { flex-direction: column; align-items: flex-start; }
    }
/* ===== HUB + DETAIL PAGES (Tarea #6/7, 11-jul-2026) — mismas variables/convenciones que arriba ===== */
.breadcrumb { font-size: 0.8125rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb .sep { margin: 0 0.4rem; color: var(--gray-300); }

.detail-hero { padding: 90px 6% 0; }
.detail-hero .practice-icon { width: 48px; height: 48px; margin-bottom: 1.75rem; background: var(--gray-50); border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.detail-hero .practice-icon svg { width: 24px; height: 24px; stroke: var(--green-dark); stroke-width: 1.6; }
.detail-hero .lede { max-width: 680px; }

.detail-section { padding-top: 3.5rem; }
.detail-section h2 { font-size: 1.5rem; font-weight: 600; color: var(--dark); letter-spacing: -0.02em; margin-bottom: 1rem; }
.detail-section .body-copy { max-width: 680px; color: var(--gray-500); font-size: 1rem; line-height: 1.8; }
.detail-section .body-copy p { margin-bottom: 1rem; }

.mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 1.75rem; }
.mini-card { padding: 1.5rem 1.5rem; background: var(--gray-50); border-radius: 14px; }
.mini-card h4 { font-size: 0.9375rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; }
.mini-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

.cta-band { margin-top: 4rem; padding: 3rem 2.5rem; background: var(--dark); border-radius: 20px; text-align: center; }
.cta-band h3 { color: #fff; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 1.75rem; }

@media (max-width: 640px) {
  .detail-hero { padding: 76px 6% 0; }
  .cta-band { padding: 2.5rem 1.5rem; }
}
