:root {
      --green-950: #0d281f;
      --green-900: #12392e;
      --green-800: #185345;
      --green-600: #348757;
      --paper: #ffffff;
      --ink: #10211d;
      --muted: #4f6259;
      --line: rgba(24, 83, 69, 0.18);
      --chip: #e8f1df;
      --shadow: 0 26px 80px rgba(8, 23, 19, 0.28);
    }

    * { box-sizing: border-box; }

    body {
      min-height: 100vh;
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background:
        linear-gradient(135deg, rgba(5, 22, 18, 0.9) 0%, rgba(22, 72, 61, 0.78) 44%, rgba(245, 188, 27, 0.18) 100%),
        linear-gradient(180deg, rgba(7, 23, 19, 0.3), rgba(255, 255, 255, 0.14)),
        url("imagens/Plantacao_macaxeira.jpeg") center / cover fixed no-repeat;
      line-height: 1.45;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; }

    .page { padding: 20px 14px 14px; }

    .shell {
      width: min(1040px, 100%);
      margin: 0 auto;
    }

    .topbar,
    .brand,
    .status,
    .actions,
    .info-row,
    .footer {
      display: flex;
      align-items: center;
    }

    .topbar {
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 16px;
      padding: 10px 14px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      background: linear-gradient(90deg, rgba(5, 22, 18, 0.86), rgba(18, 57, 46, 0.66));
      box-shadow: 0 14px 34px rgba(5, 22, 18, 0.26);
      backdrop-filter: blur(5px);
    }

    .brand {
      gap: 11px;
      min-width: 0;
      text-decoration: none;
    }

    .brand img {
      width: 58px;
      height: 58px;
      padding: 6px;
      border: 1px solid rgba(13, 40, 31, 0.14);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.96);
      object-fit: contain;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    }
    .brand strong {
      display: block;
      color: #f7fff8;
      font-size: 1.05rem;
      line-height: 1.05;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.48);
    }

    .brand span span {
      display: block;
      color: #e8f8ec;
      font-size: 0.86rem;
      font-weight: 800;
      line-height: 1.2;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.36);
    }

    .status {
      flex: 0 0 auto;
      min-height: 34px;
      padding: 7px 14px;
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.96);
      color: var(--green-900);
      font-size: 0.86rem;
      font-weight: 900;
      box-shadow: 0 12px 28px rgba(5, 22, 18, 0.28);
    }

    .panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(330px, 0.76fr);
      gap: 22px;
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.56);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: var(--shadow);
      backdrop-filter: blur(6px);
    }

    .hero {
      display: grid;
      grid-template-columns: 130px minmax(0, 1fr);
      align-items: center;
      gap: 22px;
    }

    .logo-box {
      display: grid;
      width: 130px;
      height: 130px;
      place-items: center;
      border: 1px solid rgba(24, 83, 69, 0.16);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 16px 34px rgba(8, 23, 19, 0.12);
    }

    .logo-box img { width: 104px; }

    .eyebrow {
      margin: 0 0 8px;
      color: var(--green-600);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    h1, h2, p { overflow-wrap: anywhere; }

    h1 {
      margin: 0;
      color: var(--green-950);
      font-size: clamp(1.95rem, 4vw, 3rem);
      line-height: 1.04;
      letter-spacing: 0;
    }

    .lead {
      max-width: 600px;
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 1rem;
    }

    .actions {
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 44px;
      padding: 10px 15px;
      border: 1px solid var(--green-800);
      border-radius: 8px;
      background: var(--green-800);
      color: #fff;
      font-size: 0.95rem;
      font-weight: 900;
      text-decoration: none;
      box-shadow: 0 12px 24px rgba(24, 83, 69, 0.18);
      transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
    }

    .button:hover {
      background: var(--green-950);
      box-shadow: 0 16px 30px rgba(13, 40, 31, 0.24);
      transform: translateY(-1px);
    }

    .button img {
      width: 24px;
      height: 24px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .button.secondary {
      border-color: rgba(24, 83, 69, 0.24);
      background: #fff;
      color: var(--green-900);
      box-shadow: none;
    }

    .button.secondary:hover {
      background: #f4faf1;
      color: var(--green-950);
    }

    .button.secondary img {
      width: 22px;
      height: 22px;
    }

    .details {
      display: grid;
      gap: 10px;
    }

    .info-row {
      align-items: flex-start;
      gap: 12px;
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 8px 22px rgba(8, 23, 19, 0.06);
    }

    .info-row strong {
      flex: 0 0 86px;
      color: var(--green-950);
      font-size: 0.82rem;
      line-height: 1.25;
      text-transform: uppercase;
    }

    .info-row p,
    .info-row ul {
      margin: 0;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .contact-link {
      color: var(--green-950);
      font-weight: 900;
      text-underline-offset: 3px;
    }

    .product-list {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      padding: 0;
      list-style: none;
    }

    .product-list li {
      padding: 6px 9px;
      border-radius: 999px;
      background: var(--chip);
      color: #0d281f;
      font-size: 0.84rem;
      font-weight: 800;
    }

    .footer {
      justify-content: space-between;
      gap: 12px;
      margin-top: 12px;
      padding: 11px 14px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 8px;
      background: linear-gradient(90deg, rgba(5, 22, 18, 0.84), rgba(18, 57, 46, 0.62));
      color: #f1fff4;
      font-size: 0.9rem;
      font-weight: 700;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
      box-shadow: 0 12px 30px rgba(5, 22, 18, 0.22);
      backdrop-filter: blur(5px);
    }

    .footer p { margin: 0; }

    @media (max-width: 820px) {
      .panel { grid-template-columns: 1fr; }
      .details { grid-template-columns: 1fr 1fr; }
      .info-row.address,
      .info-row.contact { grid-column: 1 / -1; }
    }

    @media (max-width: 560px) {
      .page { padding: 12px 10px 10px; }

      .topbar,
      .footer {
        align-items: flex-start;
        flex-direction: column;
      }

      .status { border-radius: 8px; }
      .topbar { padding: 10px; }
      .panel { padding: 16px; }

      .hero {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 12px;
      }

      .logo-box {
        width: 78px;
        height: 78px;
      }

      .logo-box img { width: 62px; }
      h1 { font-size: 1.78rem; }
      .lead { font-size: 0.92rem; }
      .button { width: 100%; }
      .details { grid-template-columns: 1fr; }
      .info-row { display: block; }

      .info-row strong {
        display: block;
        margin-bottom: 5px;
      }
    }