/* Estilos exclusivos da pagina services.html — extraidos do <style> inline.
   Carregado DEPOIS de global-mdecals.css, entao a cascata nao muda. */

    /* Specific adjustments for internal pages to match home layout */
    .page-hero {
      padding: 150px 40px 40px;
      background: #000;
      color: #fff;
      border-bottom: 1px solid #1a1a1a;
      text-align: center;
    }
    .page-hero .wrap {
      max-width: 1200px;
      margin: 0 auto;
    }
    .hero-eyebrow {
      font-family: var(--f-display);
      color: var(--c-lime);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .page-title {
      font-family: var(--f-display);
      font-size: clamp(3rem, 5.5vw, 5.5rem);
      font-weight: 800;
      line-height: 0.92;
      text-transform: uppercase;
      margin: 0 0 16px 0;
      letter-spacing: -0.02em;
    }
    .page-title .lime {
      color: var(--c-lime);
    }
    .page-desc {
      font-size: 1.1rem;
      line-height: 1.5;
      color: #888888;
      max-width: 600px;
      margin: 0 auto;
    }
    html {
      scroll-behavior: smooth;
    }
    .service-section {
      background: #f4f4f0;
      padding: 100px 40px;
      color: #111;
      border-bottom: 2px solid #111;
      scroll-margin-top: 80px;
    }
    .service-section.dark {
      background: #0d0d0d;
      color: #fff;
      border-bottom: none;
    }
    .service-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    @media(max-width: 900px) {
      .service-grid {
        grid-template-columns: 1fr;
      }
    }
    .svc-number {
      font-family: var(--f-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--c-lime);
      margin-bottom: 10px;
    }
    .service-section:not(.dark) .svc-number {
      color: #666;
    }
    .svc-name {
      font-family: var(--f-display);
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1;
      margin: 0 0 20px 0;
    }
    .svc-body {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #666;
      margin-bottom: 30px;
    }
    .service-section.dark .svc-body {
      color: #ccc;
    }
    .svc-img img {
      width: 100%;
      border-radius: 4px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }
    .svc-specs {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .svc-specs li {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid rgba(0,0,0,0.1);
      font-size: 0.95rem;
    }
    .service-section.dark .svc-specs li {
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .svc-specs li span:first-child {
      font-weight: 600;
      color: #111;
    }
    .service-section.dark .svc-specs li span:first-child {
      color: var(--c-lime);
    }
