
  :root{
    --navy:#1F2A63;
    --navy-2:#2E3E8C;
    --navy-ink:#242C4D;
    --orange:#F5822F;
    --orange-2:#FDAB5E;
    --bg:#FFFFFF;
    --bg-soft:#F7F8FC;
    --muted:#5C6178;
    --white:#FFFFFF;
    --line:rgba(31,42,99,0.10);
    --shadow: 0 20px 45px rgba(31,42,99,0.14);
    --radius: 20px;
    --radius-sm: 12px;
  }

  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  }

  body{
    margin:0;
    background:var(--bg);
    color:var(--navy-ink);
    font-family:'Inter', sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  img{ max-width:100%; display:block; }
  a{ color:inherit; }
  ul{ margin:0; }

  .wrap{ max-width:1160px; margin:0 auto; padding:0 28px; }

  h1,h2,h3,h4{
    margin:0;
    font-family:'Fredoka', sans-serif;
    font-weight:600;
    color:var(--navy);
    line-height:1.08;
  }

  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'Inter', sans-serif;
    font-size:13px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--orange);
  }
  .eyebrow-dot{
    width:7px; height:7px; border-radius:50%;
    background:var(--orange);
    display:inline-block;
  }

  :focus-visible{ outline:3px solid var(--orange); outline-offset:3px; }

  /* ---------- nav ---------- */
  .nav{
    position:sticky; top:0; z-index:80;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .nav-inner{
    max-width:1160px; margin:0 auto; padding:0 28px;
    display:flex; align-items:center; justify-content:space-between;
    height:76px;
  }
  .brand img{ height:38px; width:auto; }
  .nav-links{
    display:flex; align-items:center; gap:8px;
    list-style:none; margin:0; padding:0;
  }
  .nav-links a{
    text-decoration:none;
    color:var(--navy-ink);
    font-size:15px;
    font-weight:600;
    padding:10px 16px;
    border-radius:999px;
    transition:background .2s ease, color .2s ease;
  }
  .nav-links a:hover{ background:var(--bg-soft); color:var(--navy); }
  .nav-cta{
    background:var(--orange) !important;
    color:var(--white) !important;
    margin-left:6px;
    box-shadow:0 8px 20px rgba(245,130,47,0.35);
  }
  .nav-cta:hover{ background:#E3721F !important; }
  .nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
    content:""; display:block; width:24px; height:2.5px; border-radius:2px; background:var(--navy); position:relative; transition:.25s;
  }
  .nav-toggle span::before{ position:absolute; top:-8px; }
  .nav-toggle span::after{ position:absolute; top:8px; }

  @media (max-width:860px){
    .nav-toggle{ display:block; }
    .nav-links{
      position:absolute; top:76px; left:0; right:0;
      background:var(--white);
      flex-direction:column; align-items:stretch;
      gap:4px; padding:10px 20px 0;
      max-height:0; overflow:hidden;
      transition:max-height .3s ease;
      border-bottom:1px solid var(--line);
    }
    .nav-links.open{ max-height:340px; padding-bottom:16px; }
    .nav-links a{ display:block; padding:14px 16px; }
    .nav-cta{ margin-left:0; text-align:center; }
  }

  /* ---------- hero ---------- */
  .hero{ position:relative; padding:84px 0 90px; overflow:hidden; }
  .hero-inner{
    max-width:1160px; margin:0 auto; padding:0 28px;
    display:grid; grid-template-columns:1fr .92fr; gap:50px; align-items:center;
    position:relative; z-index:2;
  }
  .ring{ position:absolute; }
  .ring svg{ width:100%; height:100%; display:block; }
  .ring-hero{ width:430px; height:430px; top:-90px; right:-140px; opacity:.9; z-index:0; }
  .blob{
    position:absolute; border-radius:50%;
    filter:blur(2px);
  }
  .blob-1{ width:120px; height:120px; background:var(--bg-soft); top:60px; left:38%; z-index:0; }

  .badge-pill{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--bg-soft);
    border:1px solid var(--line);
    color:var(--navy);
    font-size:13px; font-weight:700;
    padding:8px 16px 8px 8px;
    border-radius:999px;
    margin-bottom:22px;
  }
  .badge-pill .dot-badge{
    background:var(--orange); color:var(--white);
    width:24px; height:24px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:13px;
  }

  .hero h1{
    font-size:clamp(38px, 5vw, 58px);
    max-width:560px;
  }
  .hero h1 .accent{ color:var(--orange); }

  .hero-lede{
    max-width:480px;
    font-size:17px;
    line-height:1.7;
    color:var(--muted);
    margin:22px 0 34px;
  }

  .btn-row{ display:flex; gap:14px; flex-wrap:wrap; }
  .btn{
    font-family:'Inter', sans-serif;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    padding:15px 26px;
    border-radius:999px;
    display:inline-flex; align-items:center; gap:10px;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
    border:2px solid transparent;
  }
  .btn:hover{ transform:translateY(-3px); }
  .btn-primary{ background:var(--orange); color:var(--white); box-shadow:0 14px 30px rgba(245,130,47,0.35); }
  .btn-primary:hover{ background:#E3721F; }
  .btn-outline{ background:transparent; color:var(--navy); border-color:var(--navy); }
  .btn-outline:hover{ background:var(--navy); color:var(--white); }

  .hero-visual{ position:relative; z-index:1; }
  .hero-photo-frame{
    position:relative;
    border-radius:32px;
    overflow:hidden;
    aspect-ratio:1/1.05;
    box-shadow:var(--shadow);
  }
  .hero-photo-frame img{ width:100%; height:100%; object-fit:cover; }
  .float-card{
    position:absolute;
    background:var(--white);
    border-radius:16px;
    box-shadow:0 16px 34px rgba(31,42,99,0.18);
    padding:14px 18px;
    display:flex; align-items:center; gap:12px;
    font-size:13.5px;
    font-weight:700;
    color:var(--navy);
  }
  .float-card .ico{
    width:38px; height:38px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:17px;
    flex-shrink:0;
  }
  .float-1{ top:-22px; left:-30px; }
  .float-1 .ico{ background:#FFE7D2; }
  .float-2{ bottom:24px; right:-28px; }
  .float-2 .ico{ background:#E4E8FB; }

  @media (max-width:900px){
    .hero-inner{ grid-template-columns:1fr; }
    .ring-hero{ width:220px; height:220px; top:-40px; right:-110px; opacity:.55; }
    .hero-visual{ max-width:380px; margin:20px auto 0; }
    .float-1{ left:6px; top:-16px; }
    .float-2{ right:6px; bottom:16px; }
  }

  /* ---------- section shell ---------- */
  section{ position:relative; padding:100px 0; }
  .section-head{ margin-bottom:50px; /*max-width:620px;*/ }
  .section-head h2{ font-size:clamp(32px,4.4vw,46px); margin-top:12px; }
  .section-head p{ font-size:16px; color:var(--muted); margin-top:14px; line-height:1.7; }
  .center{ margin-left:auto; margin-right:auto; text-align:center; }

  /* ---------- about ---------- */
  .about{ background:var(--navy); color:var(--white); overflow:hidden; }
  .about .eyebrow{ color:var(--orange-2); }
  .about h2{ color:var(--white); }
  .about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
  .about-copy p{ font-size:16px; line-height:1.8; color:rgba(255,255,255,0.82); margin:0 0 16px; }
  .about-copy p:last-child{ margin-bottom:0; }

  .value-cards{ display:flex; flex-direction:column; gap:16px; }
  .value-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:var(--radius-sm);
    padding:22px 24px;
  }
  .value-card .vc-head{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
  .vc-ring{
    width:34px; height:34px; border-radius:50%;
    border:3px solid var(--orange);
    flex-shrink:0;
  }
  .value-card h3{ color:var(--white); font-size:18px; margin:0; }
  .value-card p, .value-card ul{ margin:0; font-size:14.5px; line-height:1.65; color:rgba(255,255,255,0.75); }
  .value-card ul{ padding-left:18px; }
  .value-card li{ margin-bottom:4px; }

  @media (max-width:860px){ .about-grid{ grid-template-columns:1fr; gap:36px; } }

  /* ---------- produtos ---------- */
  .produtos{ background:var(--bg); }
  .grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
  @media (max-width:980px){ .grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:560px){ .grid{ grid-template-columns:1fr; } }

  .card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius);
    overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
  .card-media{ aspect-ratio:4/3; overflow:hidden; background:var(--bg-soft); }
  .card-media img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
  .card:hover .card-media img{ transform:scale(1.06); }
  .card-body{ padding:20px 20px 24px; }
  .card-tag{
    display:inline-block;
    font-size:11.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
    padding:5px 12px; border-radius:999px;
    margin-bottom:12px;
  }
  .tag-orange{ background:#FFE7D2; color:#B85A18; }
  .tag-navy{ background:#E4E8FB; color:var(--navy); }
  .card-body h3{ font-size:20px; margin-bottom:8px; }
  .card-body p{ font-size:13.8px; line-height:1.55; color:var(--muted); margin:0; }

  /* ---------- contato ---------- */
  .contato{ background:var(--bg-soft); }
  .contato-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:32px; align-items:stretch; }
  @media (max-width:900px){ .contato-grid{ grid-template-columns:1fr; } }

  .address-card{
    background:linear-gradient(150deg, var(--orange) 0%, #F0691A 100%);
    border-radius:var(--radius);
    padding:42px 36px;
    color:var(--white);
    position:relative;
    overflow:hidden;
  }
  .address-card .ring{ width:180px; height:180px; top:-60px; right:-60px; }
  .addr-row{ position:relative; z-index:1; margin-bottom:26px; }
  .addr-row:last-of-type{ margin-bottom:0; }
  .addr-label{
    display:block; font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
    color:rgba(255,255,255,0.75); margin-bottom:8px;
  }
  .addr-row p{ margin:0; font-size:18px; font-weight:600; line-height:1.5; }
  .addr-row a{ text-decoration:none; }
  .addr-row a:hover{ text-decoration:underline; }
  .address-card .btn-row{ position:relative; z-index:1; margin-top:30px; }
  .address-card .btn-primary{ background:var(--navy); box-shadow:none; }
  .address-card .btn-primary:hover{ background:#161E4A; }
  .address-card .btn-outline{ border-color:rgba(255,255,255,0.7); color:var(--white); }
  .address-card .btn-outline:hover{ background:var(--white); color:var(--orange); }

  .map-frame{
    border-radius:var(--radius);
    overflow:hidden;
    border:1px solid var(--line);
    min-height:340px;
    box-shadow:var(--shadow);
  }
  .map-frame iframe{ width:100%; height:100%; min-height:340px; border:0; display:block; }

  /* ---------- footer ---------- */
  footer{ background:var(--navy); color:rgba(255,255,255,0.65); padding:36px 0; }
  .footer-inner{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
  .footer-brand{ display:flex; align-items:center; gap:10px; }
  /*.footer-brand img{ height:26px; filter:brightness(0) invert(1); opacity:.9; }*/
  .footer-brand img{ height:32px; }
  footer p{ margin:0; font-size:13px; }

  /* reveal on scroll (visible by default; JS opts elements into the hidden->in transition) */
  .reveal{ opacity:1; transform:none; transition:opacity .6s ease, transform .6s ease; }
  .reveal.pre{ opacity:0; transform:translateY(18px); }
  .reveal.pre.in{ opacity:1; transform:translateY(0); }
