
  :root {
    --dark:    #16202e;
    --darker:  #0e1620;
    --card-bg: #1c2a3a;
    --red:     #e8441a;
    --blue:    #3b82f6;
    --green:   #22c55e;
    --yellow:  #f59e0b;
    --orange:  #f97316;
    --purple:  #a855f7;
    --teal:    #14b8a6;
    --pink:    #ec4899;
    --cyan:    #60a5fa;
    --white:   #f1f5f9;
    --muted:   #7d94ae;
    --border:  rgba(255,255,255,0.07);
    --max:     1160px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: "Instrument Sans", sans-serif; background: var(--darker); color: var(--white); overflow-x: hidden; line-height: 1.6; }
  img { max-width: 100%; display: block; }
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 2.5rem; }

  /* ── NAV ── */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; backdrop-filter: blur(18px) saturate(1.5); background: rgba(14,22,32,0.92); border-bottom: 1px solid var(--border); }
  .nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 2.5rem; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
  .nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
  .nav-logo img { height: 38px; width: auto; }
  nav ul { display: flex; gap: 2rem; list-style: none; align-items: center; }
  nav ul a { font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; white-space: nowrap; }
  nav ul a:hover { color: var(--white); }
  .nav-cta { background: var(--red) !important; color: #fff !important; padding: .42rem 1.15rem; border-radius: 6px; }
  .nav-cta:hover { opacity: .88; }

  /* ── COLOR BAR ── */
  .color-bar { height: 4px; background: linear-gradient(90deg,var(--red),var(--blue),var(--green),var(--yellow),var(--orange),var(--purple),var(--teal),var(--pink)); }

  /* ══════════════════════════════
     HERO — clean, inspired by screenshot
  ══════════════════════════════ */
  .hero {
    padding-top: 64px;
    min-height: 90vh;
    background: var(--darker);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  /* subtle grid texture */
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 10%, transparent 75%);
    pointer-events: none;
  }

  /* radial glow top-right */
  .hero::after {
    content: "";
    position: absolute;
    top: -10%; right: -5%;
    width: 55vw; height: 55vw;
    background: radial-gradient(circle, rgba(59,130,246,0.09) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-inner {
    position: relative; z-index: 2;
    max-width: var(--max); margin: 0 auto; padding: 4rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    width: 100%;
  }

  /* LEFT */
  .hero-text { }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    padding: .32rem .9rem; border-radius: 100px;
    margin-bottom: 1.8rem;
    animation: fadeUp .5s ease both;
  }
  .hero-eyebrow .flag { font-size: .9rem; }

  .hero h1 {
    font-family: "Syne", sans-serif; font-weight: 800;
    font-size: clamp(2.8rem, 4.5vw, 5rem);
    line-height: 1.02; letter-spacing: -.03em;
    margin-bottom: 1.6rem;
    animation: fadeUp .5s .07s ease both;
  }
  .hero h1 em { font-style: normal; color: var(--orange); }

  .hero-desc {
    font-size: 1rem; color: var(--muted); line-height: 1.8; font-weight: 300;
    margin-bottom: 2.2rem;
    max-width: 460px;
    animation: fadeUp .5s .14s ease both;
  }

  .hero-actions {
    display: flex; gap: .85rem; flex-wrap: wrap;
    animation: fadeUp .5s .21s ease both;
    margin-bottom: 3.5rem;
  }
  .btn-primary { background: var(--red); color: #fff; padding: .82rem 1.8rem; border-radius: 7px; font-weight: 600; font-size: .92rem; text-decoration: none; transition: transform .18s, box-shadow .18s; box-shadow: 0 0 24px rgba(232,68,26,.28); white-space: nowrap; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 32px rgba(232,68,26,.48); }
  .btn-ghost { background: transparent; color: var(--white); padding: .82rem 1.8rem; border-radius: 7px; font-weight: 500; font-size: .92rem; text-decoration: none; border: 1px solid var(--border); transition: border-color .18s, background .18s; white-space: nowrap; }
  .btn-ghost:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); }

  .hero-stats {
    display: flex; gap: 0;
    border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
    animation: fadeUp .5s .28s ease both;
    max-width: 420px;
  }
  .stat {
    flex: 1; background: rgba(28,42,58,.6); padding: 1.1rem .9rem; text-align: center;
    border-right: 1px solid var(--border);
  }
  .stat:last-child { border-right: none; }
  .stat strong { display: block; font-family: "Syne", sans-serif; font-size: 1.65rem; font-weight: 800; line-height: 1; margin-bottom: .22rem; }
  .stat span { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; display: block; line-height: 1.3; }

  /* RIGHT — logo + floating cards */
  .hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    animation: fadeUp .6s .1s ease both;
  }

  .hero-logo-wrap {
    position: relative;
    width: 340px; height: 340px;
    display: flex; align-items: center; justify-content: center;
  }

  /* rotating ring */
  .hero-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(59,130,246,0.18);
    animation: spin 30s linear infinite;
  }
  .hero-ring-2 {
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px dashed rgba(232,68,26,0.13);
    animation: spin 22s linear infinite reverse;
  }

  .hero-logo-img {
    width: 220px; height: 220px; object-fit: contain;
    position: relative; z-index: 2;
    filter: drop-shadow(0 0 32px rgba(59,130,246,0.18));
    animation: float 5s ease-in-out infinite;
  }

  /* floating chips */
  .hero-chip {
    position: absolute; z-index: 3;
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 8px; padding: .5rem .8rem;
    display: flex; align-items: center; gap: .5rem;
    font-size: .75rem; white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    backdrop-filter: blur(8px);
  }
  .hero-chip .chip-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .chip-1 { top: 10px; right: -20px; animation: floatB 4s ease-in-out infinite; }
  .chip-2 { bottom: 30px; left: -30px; animation: floatB 5.5s ease-in-out infinite .8s; }
  .chip-3 { top: 50%; right: -40px; transform: translateY(-50%); animation: floatB 4.8s ease-in-out infinite .4s; }

  /* ── SECTIONS ── */
  section { padding: 5.5rem 0; }
  .section-label { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
  .section-title { font-family: "Syne", sans-serif; font-weight: 800; font-size: clamp(1.7rem,2.8vw,2.4rem); line-height: 1.12; letter-spacing: -.02em; margin-bottom: .9rem; }
  .section-sub { color: var(--muted); font-size: .95rem; line-height: 1.75; font-weight: 300; }

  /* ── SERVICES — uniform 3-col grid ── */
  #servicos { background: var(--dark); }
  .services-head { margin-bottom: 3rem; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; }
  .services-head .section-sub { max-width: 400px; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
  }

  .srv {
    border-radius: 12px; overflow: hidden;
    background: var(--card-bg); border: 1px solid var(--border);
    transition: transform .22s, border-color .22s, box-shadow .22s;
    display: flex; flex-direction: column;
  }
  .srv:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.13); box-shadow: 0 14px 44px rgba(0,0,0,.32); }
  .srv:hover .srv-img img { transform: scale(1.05); }

  /* UNIFORM image height for ALL cards */
  .srv-img { overflow: hidden; height: 160px; position: relative; flex-shrink: 0; }
  .srv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; filter: brightness(.72) saturate(.75); }
  .srv-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(28,42,58,.95) 100%); }
  .srv-num {
    position: absolute; top: .85rem; left: .85rem; z-index: 2;
    font-family: "Syne", sans-serif; font-weight: 800; font-size: .75rem;
    background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
    padding: .16rem .5rem; border-radius: 5px; color: var(--accent);
  }

  /* UNIFORM body height — use min-height so all cards stretch equally */
  .srv-body { padding: 1.2rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
  .srv-tag { font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: .35rem; }
  .srv h3 { font-family: "Syne", sans-serif; font-weight: 700; font-size: .98rem; margin-bottom: .65rem; line-height: 1.3; }
  .srv ul { list-style: none; display: flex; flex-direction: column; gap: .32rem; }
  .srv ul li { font-size: .79rem; color: #8aa0b8; padding-left: .9rem; position: relative; line-height: 1.5; }
  .srv ul li::before { content: ""; position: absolute; left: 0; top: .56em; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

  .srv[data-c="red"]    { --accent: var(--red); }
  .srv[data-c="blue"]   { --accent: var(--blue); }
  .srv[data-c="green"]  { --accent: var(--green); }
  .srv[data-c="yellow"] { --accent: var(--yellow); }
  .srv[data-c="orange"] { --accent: var(--orange); }
  .srv[data-c="purple"] { --accent: var(--purple); }
  .srv[data-c="teal"]   { --accent: var(--teal); }
  .srv[data-c="pink"]   { --accent: var(--pink); }
  .srv[data-c="cyan"]   { --accent: var(--cyan); }

  /* ── WHY ── */
  #porque { background: var(--darker); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
  .why-img-wrap { position: relative; border-radius: 14px; overflow: hidden; }
  .why-img-wrap img { width: 100%; height: 460px; object-fit: cover; display: block; filter: brightness(.72) saturate(.8); }
  .why-badge { position: absolute; bottom: 1.8rem; left: 1.8rem; z-index: 2; background: rgba(22,32,46,.92); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 9px; padding: 1.1rem 1.4rem; }
  .why-badge p { font-size: .7rem; color: var(--muted); margin-bottom: .12rem; text-transform: uppercase; letter-spacing: .06em; }
  .why-badge strong { font-family: "Syne", sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--orange); }
  .why-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
  .why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.3rem; border-radius: 9px; border: 1px solid var(--border); transition: border-color .2s, background .2s; }
  .why-item:hover { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.02); }
  .why-num { font-family: "Syne", sans-serif; font-size: 1.5rem; font-weight: 800; line-height: 1; min-width: 1.8rem; flex-shrink: 0; padding-top: .05rem; }
  .why-item:nth-child(1) .why-num { color: var(--red); }
  .why-item:nth-child(2) .why-num { color: var(--blue); }
  .why-item:nth-child(3) .why-num { color: var(--green); }
  .why-item:nth-child(4) .why-num { color: var(--yellow); }
  .why-item:nth-child(5) .why-num { color: var(--orange); }
  .why-text h4 { font-family: "Syne", sans-serif; font-weight: 700; font-size: .9rem; margin-bottom: .2rem; }
  .why-text p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

  /* ── QUOTE ── */
  .quote-banner { background: var(--dark); padding: 4.5rem 0; position: relative; overflow: hidden; }
  .quote-banner::before { content: ""; position: absolute; inset: 0; background: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=70") center/cover no-repeat; opacity: .06; }
  .quote-inner { position: relative; z-index: 1; text-align: center; max-width: 660px; margin: 0 auto; padding: 0 2rem; }
  .quote-inner blockquote { font-family: "Syne", sans-serif; font-weight: 700; font-size: clamp(1.4rem,2.8vw,2rem); line-height: 1.38; }
  .quote-inner blockquote em { color: var(--orange); font-style: normal; }
  .quote-inner cite { display: block; margin-top: 1.1rem; font-size: .78rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

  /* ── PROCESS ── */
  #processo { background: var(--dark); }
  .process-head { margin-bottom: 3.5rem; text-align: center; }
  .process-head .section-sub { max-width: 480px; margin: 0 auto; }
  .process-steps { display: flex; position: relative; align-items: flex-start; }
  .process-line { position: absolute; top: 2rem; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg,var(--red),var(--blue),var(--green),var(--yellow),var(--orange)); z-index: 0; }
  .process-step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 .8rem; }
  .step-dot { width: 4rem; height: 4rem; border-radius: 50%; background: var(--dark); border: 2.5px solid; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-family: "Syne", sans-serif; font-weight: 800; font-size: 1rem; transition: transform .2s; }
  .process-step:hover .step-dot { transform: scale(1.1); }
  .process-step:nth-child(1) .step-dot { border-color: var(--red); color: var(--red); }
  .process-step:nth-child(2) .step-dot { border-color: var(--blue); color: var(--blue); }
  .process-step:nth-child(3) .step-dot { border-color: var(--green); color: var(--green); }
  .process-step:nth-child(4) .step-dot { border-color: var(--yellow); color: var(--yellow); }
  .process-step:nth-child(5) .step-dot { border-color: var(--orange); color: var(--orange); }
  .process-step h4 { font-family: "Syne", sans-serif; font-weight: 700; font-size: .88rem; margin-bottom: .3rem; }
  .process-step p { font-size: .78rem; color: var(--muted); line-height: 1.5; }

  /* ── CONTACT ── */
  #contacto { background: var(--darker); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
  .contact-img { border-radius: 12px; overflow: hidden; margin-bottom: 1.8rem; }
  .contact-img img { width: 100%; height: 200px; object-fit: cover; object-position: center 20%; display: block; filter: brightness(.68) saturate(.7); }
  .contact-items { display: flex; flex-direction: column; gap: .85rem; }
  .contact-item { display: flex; align-items: center; gap: .9rem; padding: .9rem 1.2rem; border-radius: 8px; border: 1px solid var(--border); }
  .c-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
  .c-icon.r { background: rgba(232,68,26,.12); }
  .c-icon.b { background: rgba(59,130,246,.12); }
  .c-icon.g { background: rgba(34,197,94,.12); }
  .c-icon.o { background: rgba(249,115,22,.12); }
  .contact-info strong { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); display: block; margin-bottom: .1rem; }
  .contact-info span { font-size: .88rem; }
  .contact-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; padding: 2.3rem; }
  .contact-form h3 { font-family: "Syne", sans-serif; font-weight: 700; font-size: 1.3rem; margin-bottom: 1.6rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .9rem; }
  .form-group label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
  .form-group input, .form-group textarea, .form-group select {
    background: var(--darker); border: 1px solid var(--border);
    color: var(--white); border-radius: 7px; padding: .7rem .95rem;
    font-family: "Instrument Sans", sans-serif; font-size: .88rem;
    outline: none; transition: border-color .2s; width: 100%;
    -webkit-appearance: none; appearance: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(59,130,246,.5); }
  .form-group select option { background: var(--darker); }
  .form-group textarea { resize: vertical; min-height: 105px; line-height: 1.6; }
  .form-submit { width: 100%; background: var(--red); color: #fff; padding: .85rem; border-radius: 7px; border: none; cursor: pointer; font-family: "Syne", sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .04em; transition: transform .18s, box-shadow .18s; box-shadow: 0 0 22px rgba(232,68,26,.22); margin-top: .4rem; }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(232,68,26,.42); }

  /* ── FOOTER ── */
  footer { background: var(--darker); border-top: 1px solid var(--border); padding: 2.2rem 0; }
  .footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  .footer-logo img { height: 34px; width: auto; }
  footer p { font-size: .78rem; color: var(--muted); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
  @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.3; } }
  @keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
  @keyframes floatB { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
  @keyframes spin { to { transform:rotate(360deg); } }
  .chip-3 { top: 50% !important; transform: translateY(-50%) !important; }

  .reveal { opacity:0; transform:translateY(26px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity:1; transform:none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav ul { display: none; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-grid, .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .process-steps { flex-wrap: wrap; gap: 2rem; }
    .process-line { display: none; }
  }
  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; }
    .stat { border-right: none !important; border-bottom: 1px solid var(--border); }
    .stat:last-child { border-bottom: none; }
  }


.multithings-form-message{margin-bottom:1rem;padding:.85rem 1rem;border-radius:8px;border:1px solid var(--border);font-size:.88rem;}
.multithings-form-message.success{background:rgba(34,197,94,.12);border-color:rgba(34,197,94,.35);color:#d1fae5;}
.multithings-form-message.error{background:rgba(232,68,26,.12);border-color:rgba(232,68,26,.35);color:#fee2e2;}
.custom-logo-link img{height:38px;width:auto;display:block;}
