

    :root {
      --c-bg:         #0E120D;
      --c-surface:    #141A12;
      --c-surface-2:  #1A2218;
      --c-surface-3:  #1F2A1B;
      --c-green-deep: #1B4332;
      --c-green:      #2D6A4F;
      --c-green-mid:  #40916C;
      --c-green-lite: #52B788;
      --c-amber:      #D4A017;
      --c-amber-lite: #F4C842;
      --c-stone:      #B5A98A;
      --c-stone-lite: #D9CFBA;
      --c-text:       #EDE8DC;
      --c-text-2:     #A8A090;
      --c-text-3:     #6B6459;
      --c-border:     rgba(82, 183, 136, 0.12);
      --c-border-2:   rgba(82, 183, 136, 0.22);
      --c-glow:       rgba(64, 145, 108, 0.08);
      --c-orange:     #E87722;
      --c-orange-lite: #F59642;

      --fs-hero:   clamp(3rem, 7vw, 5.5rem);
      --fs-h2:     clamp(2.3rem, 4.5vw, 3.6rem);
      --fs-h3:     clamp(1.35rem, 2.5vw, 1.85rem);
      --fs-body:   1.125rem;
      --fs-small:  1rem;
      --lh-tight:  1.08;
      --lh-base:   1.65;

      --r-card:    14px;
      --r-btn:     8px;
      --max-w:     1400px;
      --gap:       24px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--c-bg);
      color: var(--c-text);
      line-height: var(--lh-base);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }

    
    .skip-link {
      position: absolute;
      top: -100px;
      left: 16px;
      background: var(--c-green-lite);
      color: var(--c-bg);
      padding: 8px 16px;
      border-radius: var(--r-btn);
      font-weight: 600;
      z-index: 1000;
      text-decoration: none;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 16px; }

    
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(212, 160, 23, 0.12);
      border: 1px solid rgba(212, 160, 23, 0.3);
      color: var(--c-amber-lite);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    
    
    @keyframes habilis-rainbow {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--c-bg);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      padding: 15px 34px;
      border-radius: 12px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      position: relative;
      z-index: 0;
      transition: transform 0.2s ease, color 0.2s;
      overflow: visible;
      white-space: nowrap;
    }
    .btn-primary::before,
    .btn-primary::after {
      content: '';
      position: absolute;
      left: -2px; top: -2px;
      border-radius: 14px;
      background: linear-gradient(45deg,
        #fe9400, #e09738, #037134, #74af8f,
        #c69e6d, #fe9400, #e09738, #037134,
        #74af8f, #c69e6d, #fe9400
      );
      background-size: 400% 400%;
      width: calc(100% + 4px);
      height: calc(100% + 4px);
      z-index: -1;
      animation: habilis-rainbow 6s linear infinite;
    }
    .btn-primary::after {
      filter: blur(14px);
      opacity: 0.7;
    }
    .btn-primary:hover {
      transform: translateY(-2px) scale(1.03);
      color: #fff;
    }
    .btn-primary:hover::after {
      opacity: 1;
      filter: blur(20px);
    }
    .btn-primary:focus-visible {
      outline: 3px solid var(--c-green-lite);
      outline-offset: 4px;
    }

    
    #hero {
      padding: 80px 0 100px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-start;
    }

    
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(82,183,136,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82,183,136,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      z-index: 0;
    }

    
    #hero::after {
      content: '';
      position: absolute;
      top: -10%;
      right: -5%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(45, 106, 79, 0.18) 0%, transparent 65%);
      z-index: 0;
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    @media(min-width: 900px) {
      .hero-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
    }

    .hero-content { display: flex; flex-direction: column; gap: 28px; }

    .hero-h1 {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: var(--fs-hero);
      line-height: var(--lh-tight);
      color: var(--c-text);
      letter-spacing: -0.02em;
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--c-green-lite);
    }

    .hero-sub {
      font-size: 1.3rem;
      color: var(--c-text-2);
      line-height: 1.7;
      max-width: 500px;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: stretch;
      pointer-events: none;
    }

    
    @keyframes moveDot {
      0%, 100% { top: 10%; right: 10%; }
      25%       { top: 10%; right: calc(100% - 28px); }
      50%       { top: calc(100% - 28px); right: calc(100% - 28px); }
      75%       { top: calc(100% - 28px); right: 10%; }
    }

    @keyframes rayPulse {
      0%, 100% { opacity: 0.18; transform: scale(1); }
      50%       { opacity: 0.38; transform: scale(1.08); }
    }

    #credibilidade {
      padding: 48px 0;
      border-top: 1px solid var(--c-border);
      border-bottom: 1px solid var(--c-border);
      background: var(--c-surface);
    }

    .cred-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
    }

    
    .cred-item {
      position: relative;
      flex: 1;
      min-width: 180px;
      max-width: 260px;
      background: var(--c-surface-2);
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.07);
      padding: 36px 28px 28px;
      text-align: center;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .cred-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    }

    
    .cred-dot {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      animation: moveDot 4s linear infinite;
      z-index: 4;
      box-shadow: 0 0 12px currentColor;
    }

    
    .cred-ray {
      position: absolute;
      inset: -20%;
      border-radius: 50%;
      animation: rayPulse 4s ease-in-out infinite;
      z-index: 1;
      pointer-events: none;
    }

    
    .cred-line {
      position: absolute;
      background: rgba(255,255,255,0.10);
      z-index: 2;
    }
    .cred-line.top    { top: 0;    left: 10%;  right: 10%; height: 1px; }
    .cred-line.bottom { bottom: 0; left: 10%;  right: 10%; height: 1px; }
    .cred-line.left   { left: 0;   top: 10%;  bottom: 10%; width: 1px; }
    .cred-line.right  { right: 0;  top: 10%;  bottom: 10%; width: 1px; }

    .cred-num {
      font-family: 'IBM Plex Mono', monospace;
      font-weight: 600;
      font-size: 2.6rem;
      display: block;
      line-height: 1;
      margin-bottom: 10px;
      position: relative;
      z-index: 3;
    }
    .cred-label {
      font-size: 0.95rem;
      color: var(--c-text-2);
      position: relative;
      z-index: 3;
      line-height: 1.4;
    }

    
    .cred-item:nth-child(1) .cred-dot { color: #fe9400; background: #fe9400; }
    .cred-item:nth-child(1) .cred-ray { background: radial-gradient(circle, rgba(254,148,0,0.15) 0%, transparent 70%); }
    .cred-item:nth-child(1) .cred-num { color: #fe9400; }

    .cred-item:nth-child(2) .cred-dot { color: #74af8f; background: #74af8f; }
    .cred-item:nth-child(2) .cred-ray { background: radial-gradient(circle, rgba(116,175,143,0.15) 0%, transparent 70%); }
    .cred-item:nth-child(2) .cred-num { color: #74af8f; }

    .cred-item:nth-child(3) .cred-dot { color: #c69e6d; background: #c69e6d; }
    .cred-item:nth-child(3) .cred-ray { background: radial-gradient(circle, rgba(198,158,109,0.15) 0%, transparent 70%); }
    .cred-item:nth-child(3) .cred-num { color: #c69e6d; }

    .cred-item:nth-child(4) .cred-dot { color: #e09738; background: #e09738; }
    .cred-item:nth-child(4) .cred-ray { background: radial-gradient(circle, rgba(224,151,56,0.15) 0%, transparent 70%); }
    .cred-item:nth-child(4) .cred-num { color: #e09738; }

    
    .cred-item:nth-child(2) .cred-dot { animation-delay: -1s; }
    .cred-item:nth-child(3) .cred-dot { animation-delay: -2s; }
    .cred-item:nth-child(4) .cred-dot { animation-delay: -3s; }

    @media(max-width: 640px) {
      .cred-inner { gap: 16px; }
      .cred-item { min-width: 140px; padding: 28px 16px 20px; }
    }

    
    #problema {
      padding: 100px 0;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .section-title {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: var(--fs-h2);
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--c-text);
      max-width: 720px;
    }

    .section-sub {
      font-size: 1.2rem;
      color: var(--c-text-2);
      max-width: 540px;
      line-height: 1.7;
    }

    
    @media (min-width: 900px) {
      .problema-sub {
        max-width: 720px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
    }

    
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .problem-card:nth-child(1) { grid-column: 1 / -1; min-height: 380px; }
    @media(max-width: 639px) {
      .problem-grid { grid-template-columns: 1fr; }
      .problem-card:nth-child(1) { grid-column: 1; }
    }

    
    .problem-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: #000;
      min-height: 280px;
      padding: 36px 28px 32px;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: transform 0.15s ease, box-shadow 0.3s ease;
      cursor: default;

      box-shadow: 0 -8px 60px 6px var(--card-glow-color, rgba(254,148,0,0.18)), 0 0 10px rgba(0,0,0,0.5);
    }

    
    .problem-card:nth-child(1) { --card-glow-color: rgba(254,148,0,0.22); --card-accent: #fe9400; --card-accent-2: #e09738; }
    .problem-card:nth-child(2) { --card-glow-color: rgba(3,113,52,0.25);  --card-accent: #037134; --card-accent-2: #74af8f; }
    .problem-card:nth-child(3) { --card-glow-color: rgba(198,158,109,0.22); --card-accent: #c69e6d; --card-accent-2: #e09738; }

    
    .problem-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, #0c0f0a 0%, #080b07 70%);
      z-index: 0;
    }

    
    .problem-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 65%;
      background:
        radial-gradient(ellipse at bottom right, color-mix(in srgb, var(--card-accent) 60%, transparent) -10%, transparent 65%),
        radial-gradient(ellipse at bottom left,  color-mix(in srgb, var(--card-accent-2) 50%, transparent) -10%, transparent 65%),
        radial-gradient(circle at bottom center, color-mix(in srgb, var(--card-accent) 40%, transparent) -20%, transparent 55%);
      filter: blur(36px);
      z-index: 1;
      opacity: 0.8;
      transition: opacity 0.3s;
    }
    .problem-card:hover::after { opacity: 1; }

    
    .problem-card-noise {
      position: absolute;
      inset: 0;
      opacity: 0.25;
      mix-blend-mode: overlay;
      z-index: 2;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    
    .problem-card-glass {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 80%, rgba(255,255,255,0.04) 100%);
      transition: opacity 0.3s;
      opacity: 0.6;
    }
    .problem-card:hover .problem-card-glass { opacity: 1; }

    
    .problem-card-border {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1.5px;
      background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.65) 50%, rgba(255,255,255,0.03) 100%);
      z-index: 5;
      box-shadow: 0 0 14px 3px var(--card-accent, #fe9400), 0 0 28px 5px color-mix(in srgb, var(--card-accent) 60%, transparent);
      transition: box-shadow 0.3s;
    }
    .problem-card:hover .problem-card-border {
      box-shadow: 0 0 20px 4px var(--card-accent, #fe9400), 0 0 40px 8px color-mix(in srgb, var(--card-accent) 80%, transparent);
    }

    
    .problem-card-edge-l,
    .problem-card-edge-r {
      position: absolute;
      bottom: 0;
      height: 25%;
      width: 1px;
      z-index: 5;
      background: linear-gradient(to top, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.3) 30%, rgba(255,255,255,0.1) 60%, transparent 80%);
      box-shadow: 0 0 14px 3px var(--card-accent, #fe9400);
    }
    .problem-card-edge-l { left: 0; }
    .problem-card-edge-r { right: 0; }

    
    .problem-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(225deg, #1a1f14 0%, #111408 100%);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 1.5rem;
      position: relative;
      z-index: 6;
      box-shadow: 0 6px 16px rgba(0,0,0,0.4), inset 1px 1px 3px rgba(255,255,255,0.1);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .problem-card:hover .problem-icon {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.5), inset 1px 1px 4px rgba(255,255,255,0.15);
    }

    .problem-title {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(1.6rem, 2.8vw, 2.2rem);
      color: #fff;
      margin-bottom: 16px;
      position: relative;
      z-index: 6;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }
    .problem-card:nth-child(1) .problem-title {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
    }

    .problem-text {
      font-size: clamp(1rem, 1.4vw, 1.15rem);
      color: rgba(217,207,186,0.75);
      line-height: 1.68;
      position: relative;
      z-index: 6;
      flex: 1;
    }

    .problem-card-body {
      position: relative;
      z-index: 6;
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 56%;
      flex: 1;
    }
    .problem-card:nth-child(1) .problem-card-body { max-width: 52%; }
    @media(max-width: 639px) {
      .problem-card-body { max-width: 100%; }
      .problem-card:nth-child(1) .problem-card-body { max-width: 100%; }
    }

    .problem-card-img {
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 48%;
      z-index: 4;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 22%, black 55%);
      mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 22%, black 55%);
      opacity: 0.85;
      transition: opacity 0.3s, transform 0.3s;
    }
    .problem-card:nth-child(1) .problem-card-img { width: 50%; }
    .problem-card:hover .problem-card-img { opacity: 1; }
    .problem-card-img svg { width: 100%; height: 100%; }
    .problem-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    @media(max-width: 639px) {
      .problem-card-img {
        width: 40%;
        opacity: 0.35;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
        mask-image: linear-gradient(to right, transparent 0%, black 50%);
      }
    }

    
    #solucao {
      padding: 100px 0;
      background: var(--c-surface);
      position: relative;
    }
    #solucao::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(29,67,50,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(29,67,50,0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    .timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 740px;
      margin: 0 auto;
      position: relative;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 26px;
      top: 50px;
      bottom: 50px;
      width: 2px;
      background: linear-gradient(to bottom, var(--c-green), var(--c-green-lite), var(--c-green));
      opacity: 0.3;
    }
    @media(min-width: 640px) { .timeline::before { left: 30px; } }

    .timeline-item {
      display: flex;
      gap: 28px;
      align-items: flex-start;
      padding: 28px 0;
      border-bottom: 1px solid var(--c-border);
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .timeline-item:last-child { border-bottom: none; }

    .timeline-content h2 {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1.55rem;
      color: var(--c-text);
      line-height: 1.25;
      margin-bottom: 8px;
    }
    .timeline-content p {
      font-size: 1.1rem;
      color: var(--c-text-2);
      line-height: 1.7;
    }
    .timeline-item.visible { opacity: 1; transform: translateX(0); }

    .timeline-dot {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--c-green-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'IBM Plex Mono', monospace;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--c-green-lite);
      flex-shrink: 0;
      position: relative;
      box-shadow: 0 0 20px rgba(45,106,79,0.3);
    }
    
    .timeline-dot::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 50%;
      padding: 2px;
      background-image: radial-gradient(
        transparent, transparent,
        #fe9400, #c69e6d, #037134, #74af8f, #e09738,
        transparent, transparent
      );
      background-size: 300% 300%;
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: shine-pulse 6s infinite linear;
      pointer-events: none;
    }
    
    .timeline-item:nth-child(1) .timeline-dot::before { animation-delay: 0s; }
    .timeline-item:nth-child(2) .timeline-dot::before { animation-delay: -1.5s; }
    .timeline-item:nth-child(3) .timeline-dot::before { animation-delay: -3s; }
    .timeline-item:nth-child(4) .timeline-dot::before { animation-delay: -4.5s; }

    
    #servicos {
      padding: 100px 0;
    }

    .servicos-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--gap);
      perspective: 1000px;
    }
    @media(min-width: 640px) { .servicos-grid { grid-template-columns: 1fr 1fr; } }
    @media(min-width: 1024px) { .servicos-grid { grid-template-columns: repeat(3, 1fr); } }

    
    .servico-card {
      --glow-hue: 33;           
      --glow-sat: 100%;
      --glow-lit: 55%;
      --border-radius: 14px;
      --border-size: 2px;
      --spotlight-size: 280px;

      position: relative;
      background: var(--c-surface-2);
      border-radius: var(--border-radius);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      opacity: 0;
      transform: translateY(20px);
      transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.3s ease;
      overflow: hidden;
      touch-action: none;
      isolation: isolate;

      
      background-image: radial-gradient(
        var(--spotlight-size) var(--spotlight-size)
        at calc(var(--mx, -999) * 1px) calc(var(--my, -999) * 1px),
        hsl(var(--glow-hue) var(--glow-sat) var(--glow-lit) / 0.10),
        transparent 70%
      );
      background-color: var(--c-surface-2);
    }

    
    .servico-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--border-radius);
      padding: var(--border-size);
      background: radial-gradient(
        calc(var(--spotlight-size) * 0.8) calc(var(--spotlight-size) * 0.8)
        at calc(var(--mx, -999) * 1px) calc(var(--my, -999) * 1px),
        hsl(var(--glow-hue) var(--glow-sat) var(--glow-lit) / 0.9),
        transparent 70%
      );
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      z-index: 1;
    }

    
    .servico-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--border-radius);
      border: 1px solid rgba(255,255,255,0.07);
      pointer-events: none;
      z-index: 2;
    }

    .servico-card.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .servico-card:hover {
      transform: translateY(-6px) !important;
      box-shadow: 0 20px 48px rgba(0,0,0,0.4),
                  0 0 0 1px rgba(255,255,255,0.06);
    }

    
    .servico-card:nth-child(1) { --glow-hue: 33;  --glow-sat: 100%; --glow-lit: 50%; } 
    .servico-card:nth-child(2) { --glow-hue: 147; --glow-sat: 95%;  --glow-lit: 23%; } 
    .servico-card:nth-child(3) { --glow-hue: 35;  --glow-sat: 45%;  --glow-lit: 60%; } 
    .servico-card:nth-child(4) { --glow-hue: 150; --glow-sat: 30%;  --glow-lit: 57%; } 

    .servico-card > * { position: relative; z-index: 3; }

    .servico-icon {
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,0.05);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .servico-title {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--c-text);
      line-height: 1.3;
    }

    .servico-desc {
      font-size: 1rem;
      color: var(--c-text-2);
      line-height: 1.65;
      flex: 1;
    }

    .servico-tag {
      display: inline-block;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: hsl(var(--glow-hue), var(--glow-sat), var(--glow-lit));
      background: hsla(var(--glow-hue), var(--glow-sat), var(--glow-lit), 0.12);
      border: 1px solid hsla(var(--glow-hue), var(--glow-sat), var(--glow-lit), 0.25);
      border-radius: 4px;
      padding: 2px 8px;
      margin-bottom: 12px;
    }

    
    #depoimentos {
      padding: 100px 0;
      background: var(--c-surface);
    }

    .depo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--gap);
    }
    @media(min-width: 640px) { .depo-grid { grid-template-columns: 1fr 1fr; } }
    @media(min-width: 900px) { .depo-grid { grid-template-columns: repeat(3, 1fr); } }

    .depo-card {
      background: var(--c-surface-2);
      border: 1px solid var(--c-border);
      border-radius: var(--r-card);
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      transition: all 0.3s ease;
    }
    .depo-card:hover {
      border-color: var(--c-border-2);
      box-shadow: 0 0 40px rgba(82,183,136,0.08);
      transform: translateY(-4px);
    }

    .depo-stars { color: var(--c-amber); font-size: 1.05rem; letter-spacing: 2px; }

    .depo-quote {
      font-size: 1.05rem;
      color: var(--c-stone-lite);
      line-height: 1.7;
      flex: 1;
      font-style: italic;
    }

    .depo-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--c-border);
    }

    .depo-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--c-green-deep);
      border: 2px solid var(--c-green-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--c-green-lite);
      flex-shrink: 0;
    }

    .depo-name {
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--c-text);
    }
    .depo-role {
      font-size: 0.9rem;
      color: var(--c-text-3);
      margin-top: 1px;
    }

    
    #faq {
      padding: 100px 0;
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--c-surface);
      border: 1px solid var(--c-border);
      border-radius: var(--r-card);
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item:hover { border-color: var(--c-border-2); }
    .faq-item.open { border-color: rgba(82,183,136,0.3); }

    .faq-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      background: none;
      border: none;
      color: var(--c-text);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 1.1rem;
      text-align: left;
      cursor: pointer;
      transition: color 0.2s;
    }
    .faq-btn:focus-visible { outline: 3px solid var(--c-green-lite); outline-offset: -3px; }
    .faq-item.open .faq-btn { color: var(--c-green-lite); }

    .faq-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--c-surface-2);
      border: 1px solid var(--c-border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s, background 0.2s;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--c-green-deep);
      border-color: var(--c-green-mid);
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .faq-body-inner {
      padding: 0 24px 20px;
      font-size: 1.05rem;
      color: var(--c-text-2);
      line-height: 1.7;
    }

    
    #galeria {
      padding: 80px 0;
      background: var(--c-surface);
    }

    .img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 16px;
    }
    @media(max-width: 640px) { .img-grid { grid-template-columns: 1fr; } }

    
    @keyframes shine-pulse {
      0%   { background-position: 0% 0%; }
      50%  { background-position: 100% 100%; }
      100% { background-position: 0% 0%; }
    }

    
    .img-real {
      aspect-ratio: 4/3;
      border-radius: var(--r-card);
      overflow: visible;          
      position: relative;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    
    .img-real > img,
    .img-real::after {
      border-radius: var(--r-card);
    }

    
    .img-real::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: calc(var(--r-card) + 2px);
      padding: 2px;
      background-image: radial-gradient(
        transparent, transparent,
        #fe9400, #c69e6d, #037134, #74af8f, #e09738,
        transparent, transparent
      );
      background-size: 300% 300%;
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: shine-pulse 7s infinite linear;
      pointer-events: none;
      z-index: 3;
    }

    .img-real:hover {
      transform: translateY(-4px) scale(1.01);
      box-shadow: 0 20px 48px rgba(0,0,0,0.45);
    }
    
    .img-real-inner {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: var(--r-card);
      overflow: hidden;
    }
    .img-real img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 0.5s ease;
    }
    .img-real:hover img {
      transform: scale(1.04);
    }
    
    .img-real-inner::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 35%;
      background: linear-gradient(to top, rgba(14,18,13,0.55) 0%, transparent 100%);
      pointer-events: none;
    }
    
    .img-real-caption {
      position: absolute;
      bottom: 14px;
      left: 16px;
      font-size: 0.88rem;
      font-weight: 600;
      color: rgba(237,232,220,0.85);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      z-index: 4;
    }

    
    #cta-final {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    #cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 50%, rgba(29, 67, 50, 0.4) 0%, transparent 70%);
    }

    .cta-box {
      max-width: 1060px;
      margin: 0 auto;
      background: var(--c-surface-2);
      border: 1px solid rgba(82,183,136,0.25);
      border-radius: 20px;
      padding: clamp(36px, 5vw, 56px);
      position: relative;
      z-index: 1;
      box-shadow: 0 0 80px rgba(45, 106, 79, 0.2), 0 32px 64px rgba(0,0,0,0.4);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 5vw, 64px);
      align-items: start;
    }
    @media(max-width: 768px) { .cta-box { grid-template-columns: 1fr; } }

    .cta-box::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 21px;
      background: linear-gradient(135deg, rgba(82,183,136,0.25), transparent 60%, rgba(212,160,23,0.1));
      z-index: -1;
    }

    .cta-left { display: flex; flex-direction: column; }

    .cta-title {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: var(--fs-h2);
      line-height: 1.15;
      color: var(--c-text);
      letter-spacing: -0.02em;
      margin: 0 0 12px;
    }

    .cta-sub {
      color: var(--c-text-2);
      font-size: 1.15rem;
      line-height: 1.65;
      margin-bottom: 28px;
    }

    .cta-bullets {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .cta-bullets li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.97rem;
      color: var(--c-text-2);
      font-weight: 500;
    }

    .cta-bullets li::before {
      content: '';
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(82,183,136,0.15);
      border: 1.5px solid rgba(82,183,136,0.4);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2352b788' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }

    .form-textarea {
      width: 100%;
      background: var(--c-surface-3);
      border: 1px solid rgba(82,183,136,0.15);
      border-radius: var(--r-btn);
      padding: 13px 16px;
      color: var(--c-text);
      font-family: 'DM Sans', sans-serif;
      font-size: 1.05rem;
      transition: border-color 0.2s, box-shadow 0.2s;
      resize: vertical;
      min-height: 90px;
    }
    .form-textarea::placeholder { color: var(--c-text-3); }
    .form-textarea:focus {
      outline: none;
      border-color: rgba(82,183,136,0.5);
      box-shadow: 0 0 0 3px rgba(82,183,136,0.1);
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-label {
      display: block;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--c-text-2);
      margin-bottom: 6px;
      letter-spacing: 0.02em;
    }

    .form-input, .form-select {
      width: 100%;
      background: var(--c-surface-3);
      border: 1px solid rgba(82,183,136,0.15);
      border-radius: var(--r-btn);
      padding: 13px 16px;
      color: var(--c-text);
      font-family: 'DM Sans', sans-serif;
      font-size: 1.05rem;
      transition: border-color 0.2s, box-shadow 0.2s;
      -webkit-appearance: none;
      appearance: none;
    }
    .form-input::placeholder { color: var(--c-text-3); }
    .form-input:focus, .form-select:focus {
      outline: none;
      border-color: rgba(82,183,136,0.5);
      box-shadow: 0 0 0 3px rgba(82,183,136,0.1);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    @media(max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

    .form-submit {
      width: 100%;
      margin-top: 8px;
    }

    .form-trust {
      text-align: center;
      font-size: 0.9rem;
      color: var(--c-text-3);
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    
    #footer {
      padding: 48px 0 32px;
      border-top: 1px solid var(--c-border);
      background: var(--c-surface);
    }

    .footer-inner {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .footer-copy {
      font-size: 0.95rem;
      color: var(--c-text-3);
    }

    
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
      animation-fill-mode: both;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    
    @keyframes spin { to { transform: rotate(360deg); } }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      .reveal, .timeline-item, .servico-card { opacity: 1 !important; transform: none !important; }
    }

    
    .cta-intercalado {
      padding: 52px 0;
      background: var(--c-surface);
      border-top: 1px solid var(--c-border);
      border-bottom: 1px solid var(--c-border);
      position: relative;
      z-index: 1;
    }
    .cta-intercalado-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      text-align: center;
    }
    .cta-intercalado-inner p {
      font-size: 1.2rem;
      color: var(--c-text-2);
      max-width: 520px;
      line-height: 1.65;
    }
    .btn-orange {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #0E120D;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      padding: 16px 38px;
      border-radius: 12px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      position: relative;
      z-index: 0;
      transition: transform 0.2s ease;
      overflow: visible;
      white-space: nowrap;
      letter-spacing: 0.01em;
    }
    .btn-orange::before,
    .btn-orange::after {
      content: '';
      position: absolute;
      left: -2px; top: -2px;
      border-radius: 14px;
      background: linear-gradient(45deg,
        #fe9400, #e09738, #037134, #74af8f,
        #c69e6d, #fe9400, #e09738, #037134,
        #74af8f, #c69e6d, #fe9400
      );
      background-size: 400% 400%;
      width: calc(100% + 4px);
      height: calc(100% + 4px);
      z-index: -1;
      animation: habilis-rainbow 6s linear infinite;
    }
    .btn-orange::after {
      filter: blur(14px);
      opacity: 0.7;
    }
    .btn-orange:hover {
      transform: translateY(-2px) scale(1.03);
    }
    .btn-orange:hover::after {
      opacity: 1;
      filter: blur(20px);
    }
    .btn-orange:focus-visible { outline: 3px solid #fe9400; outline-offset: 4px; }

    
    .hero-posto-wrap {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .hero-posto-img {
      width: 100%;
      height: auto;
      display: block;
    }
    .hero-logo-float {
      position: absolute;
      top: 22%;
      right: 4%;
      width: clamp(100px, 22%, 170px);
      height: auto;
      z-index: 10;
      filter: drop-shadow(0 6px 20px rgba(0,0,0,0.45));
      pointer-events: none;
      animation: logoFloat 3.2s ease-in-out infinite;
    }
    @keyframes logoFloat {
      0%   { transform: translateY(0px); }
      50%  { transform: translateY(-14px); }
      100% { transform: translateY(0px); }
    }
    @media (max-width: 639px) {
      .hero-logo-float { top: 2%; width: clamp(80px, 28%, 120px); }
    }
    @media(min-width: 900px) {
      .hero-visual {
        position: absolute;
        top: -120px;
        bottom: -120px;
        right: -20px;
        width: 56%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 2;
      }
      .hero-posto-wrap {
        width: 100%;
        height: 100%;
      }
      .hero-posto-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        display: block;
      }
    }
    .hero-posto-animate {
      opacity: 0;
      transform: translateX(60px) scale(0.96);
      animation: postoEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    }
    @keyframes postoEntrance {
      0% {
        opacity: 0;
        transform: translateX(60px) scale(0.96);
        filter: blur(8px);
      }
      70% {
        opacity: 1;
        filter: blur(0px);
      }
      100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0px);
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-posto-animate { animation: none; opacity: 1; transform: none; }
    }

    .hero-grid-spacer { display: none; }
    @media(min-width: 900px) {
      .hero-grid-spacer { display: block; }
    }

    
    .depo-title {
      max-width: 100%;
      
    }
    @media (min-width: 900px) {
      .depo-title {
        font-size: clamp(2.8rem, 4vw, 3.8rem);
        max-width: 820px;
        white-space: normal;
      }
    }

    

    
    @media (max-width: 639px) {
      .container { padding: 0 16px; }

      
      #hero { padding: 60px 0 80px; min-height: auto; }
      .hero-h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
      .hero-sub { font-size: 1.1rem; }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-ctas .btn-primary { width: 100%; justify-content: center; text-align: center; }
      .hero-visual { display: flex; position: relative; top: auto; bottom: auto; right: auto; width: 100%; height: 260px; margin-top: 24px; }
      .hero-posto-wrap { width: 100%; height: 100%; }
      .hero-posto-img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
      .hero-grid { gap: 8px; }

      
      #credibilidade { padding: 36px 0; }
      .cred-item { min-width: 130px; max-width: 45%; flex: 0 0 calc(50% - 6px); padding: 22px 14px 16px; }
      .cred-num { font-size: 2.2rem; }
      .cred-label { font-size: 0.88rem; }

      
      #problema { padding: 60px 0; }
      .problem-grid { grid-template-columns: 1fr; gap: 14px; }
      .problem-card { padding: 28px 22px 24px; }

      
      #solucao { padding: 60px 0; }
      .timeline { padding-left: 0; }
      .timeline::before { left: 24px; }
      .timeline-item { padding: 22px 0 22px 0; gap: 16px; }
      .timeline-dot { width: 44px; height: 44px; font-size: 0.9rem; flex-shrink: 0; }

      
      #servicos { padding: 60px 0; }
      .servicos-grid { grid-template-columns: 1fr; gap: 14px; }
      .servico-card { padding: 24px 20px; }
      .servico-title { font-size: 1.2rem; }
      .servico-desc { font-size: 1rem; }

      
      #galeria { padding: 60px 0; }
      .img-grid { grid-template-columns: 1fr; gap: 14px; }

      
      #depoimentos { padding: 60px 0; }
      .depo-grid { grid-template-columns: 1fr; gap: 14px; }
      .depo-card { padding: 24px 20px; }
      .depo-quote { font-size: 1.05rem; }

      
      #faq { padding: 60px 0; }
      .faq-list { max-width: 100%; }
      .faq-btn { font-size: 1.05rem; padding: 18px 16px; }
      .faq-body-inner { font-size: 1rem; padding: 0 16px 20px; }

      
      #cta-final { padding: 60px 0; }
      .form-row { grid-template-columns: 1fr; }
      .form-group input,
      .form-group select,
      .form-group textarea { font-size: 18px; } 

      
      #footer { padding: 40px 0 28px; }
      .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }

      
      .section-header { margin-bottom: 40px; }
      .section-title { font-size: clamp(2rem, 7.5vw, 2.8rem); }
      .section-sub { font-size: 1.05rem; }

      
      .cta-intercalado .btn-orange { width: 100%; justify-content: center; }
    }

    
    @media (min-width: 480px) and (max-width: 639px) {
      .hero-ctas { flex-direction: row; flex-wrap: wrap; }
      .hero-ctas .btn-primary { width: auto; flex: 1 1 auto; }
      .cred-item { min-width: 150px; max-width: 48%; }
      .problem-grid { grid-template-columns: 1fr 1fr; }
      .depo-grid { grid-template-columns: 1fr 1fr; }
    }

    
    @media (min-width: 640px) and (max-width: 899px) {
      .container { padding: 0 20px; }

      #hero { padding: 40px 0 32px; min-height: unset; height: auto; align-items: flex-start; }
      .hero-grid { gap: 16px; }
      .hero-h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); }
      .hero-visual { display: flex; position: relative; top: auto; bottom: auto; right: auto; width: 100%; height: 280px; margin-top: 0; }

      #credibilidade { padding: 40px 0; }
      .cred-item { min-width: 160px; }

      #problema { padding: 72px 0; }
      #solucao { padding: 72px 0; }
      #servicos { padding: 72px 0; }
      .servicos-grid { grid-template-columns: 1fr 1fr; }
      #galeria { padding: 72px 0; }
      #depoimentos { padding: 72px 0; }
      #faq { padding: 72px 0; }
      #cta-final { padding: 72px 0; }

      .section-title { font-size: clamp(2.2rem, 4vw, 3rem); }
      .depo-title { font-size: clamp(2.2rem, 4.2vw, 3.2rem); }

      
      .timeline::before { left: 28px; }
      .timeline-item { gap: 20px; }
    }

    
    @media (min-width: 900px) {
      .container { padding: 0 24px; }
      #hero { padding: 80px 0 100px; min-height: 100svh; align-items: center; }
      .hero-visual { display: flex; }

      
      .servicos-grid { grid-template-columns: repeat(3, 1fr); }

      
      .depo-grid { grid-template-columns: repeat(3, 1fr); }
    }

    
    @media (min-width: 900px) and (max-width: 1199px) {
      #hero { padding: 60px 0 60px; min-height: unset; height: auto; align-items: flex-start; }
      .hero-grid { gap: 24px; }
    }

    
    @media (min-width: 1200px) {
      .container { padding: 0 32px; }
      #hero { padding: 100px 0 120px; }
    }

    
    @media (prefers-reduced-motion: reduce) {
      .hero-posto-animate { animation: none; opacity: 1; transform: none; }
      .cred-dot, .cred-ray { animation: none; }
      .btn-primary::before, .btn-orange::before,
      .btn-primary::after, .btn-orange::after { animation: none; }
      .timeline-dot::before { animation: none; }
      .img-real::before { animation: none; }
    }

    
    @supports (padding: max(0px)) {
      @media (min-width: 900px) {
        #hero {
          padding-top: max(80px, env(safe-area-inset-top) + 80px);
        }
      }
      #footer {
        padding-bottom: max(28px, env(safe-area-inset-bottom) + 20px);
      }
    }

    @media (hover: none) and (pointer: coarse) {
      .servico-card:hover,
      .depo-card:hover,
      .img-real:hover,
      .problem-card:hover { transform: none; }
      .servico-card:hover { box-shadow: none; }
    }