@import url("main.css");

/* ─── TOPBAR ─── */
    .topbar {
      background: var(--blue);
      padding: 0.55rem 5vw;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 0.4rem;
    }
    .topbar-left { display: flex; gap: 1.8rem; }
    .topbar-item {
      font-size: 0.8rem; color: rgba(255,255,255,0.75);
      display: flex; align-items: center; gap: 0.4rem;
    }
    .topbar-item strong { color: var(--white); }
    .topbar-phone {
      font-size: 0.9rem; font-weight: 900; color: var(--white);
      letter-spacing: 0.04em; display: flex; align-items: center; gap: 0.5rem;
    }
    .topbar-phone span {
      background: var(--red); padding: 0.2rem 0.7rem; border-radius: 30px;
      font-size: 0.75rem;
      animation: pulse 2s infinite;
    }
	.topbar-phone a{ color: var(--white); }
    .btW{ color: #fff; text-decoration:none; }
    @keyframes pulse {
      0%,100% { box-shadow: 0 0 0 0 var(--red-glow); }
      50%      { box-shadow: 0 0 0 8px transparent; }
    }

    /* ─── NAV ─── */
    nav {
      position: sticky; top: 0; z-index: 1000;
      background: var(--white);
      border-bottom: 2px solid var(--red);
      padding: 0 5vw;
      height: 68px;
      display: flex; align-items: center; justify-content: space-between;
      box-shadow: 0 4px 24px rgba(49,38,133,0.10);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 6px 36px rgba(49,38,133,0.18); }

    .nav-logo {
      display: flex; align-items: center; gap: 0.7rem;
      text-decoration: none;
    }
    .logo{
      max-width: 200px;
    }

    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em;
      text-transform: uppercase; text-decoration: none;
      color: var(--text); position: relative; padding-bottom: 4px;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px; background: var(--red);
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-links a:hover::after { width: 100%; }

    /*.nav-cta {
      background: var(--red); color: var(--white) !important;
      padding: 0.6rem 1.5rem; border-radius: 6px;
      font-size: 0.82rem !important; font-weight: 900 !important;
      letter-spacing: 0.06em !important;
      box-shadow: 0 4px 16px var(--red-glow);
      transition: transform 0.2s, box-shadow 0.25s, background 0.2s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover {
      background: var(--red-dark) !important; transform: translateY(-2px);
      box-shadow: 0 8px 24px var(--red-glow) !important; color: var(--white) !important;
    }*/

    /* ─── HERO ─── */
    #hero {
      min-height: 60vh;
      background: var(--dark) url('../imgs/banner.webp');
      background-position: right;
      background-size: cover;
      position: relative; overflow: hidden;
      display: flex; align-items: center;
      padding: 5rem 5vw 5rem;
    }

    /* animated background pipes */
    .hero-pipes {
      position: absolute; inset: 0; z-index: 0;
      overflow: hidden;
    }
    .pipe {
      position: absolute;
      background: linear-gradient(90deg, transparent, rgba(49,38,133,0.35), transparent);
      height: 1px;
      animation: flow linear infinite;
    }
    .pipe:nth-child(1) { width: 60%; top: 20%; animation-duration: 6s; }
    .pipe:nth-child(2) { width: 40%; top: 45%; animation-duration: 9s; animation-delay: -3s; }
    .pipe:nth-child(3) { width: 80%; top: 70%; animation-duration: 7s; animation-delay: -1s; }
    .pipe:nth-child(4) { width: 30%; top: 85%; animation-duration: 5s; animation-delay: -2s; }
    .pipe:nth-child(5) { width: 55%; top: 10%; animation-duration: 8s; animation-delay: -4s; }
    .v-pipe {
      position: absolute;
      background: linear-gradient(180deg, transparent, rgba(250,18,19,0.2), transparent);
      width: 1px;
      animation: flowV linear infinite;
    }
    .v-pipe:nth-child(6) { height: 60%; left: 20%; animation-duration: 8s; }
    .v-pipe:nth-child(7) { height: 80%; left: 55%; animation-duration: 11s; animation-delay: -5s; }
    .v-pipe:nth-child(8) { height: 50%; left: 80%; animation-duration: 7s; animation-delay: -2s; }

    @keyframes flow { from { transform: translateX(-100%); } to { transform: translateX(200%); } }
    @keyframes flowV { from { transform: translateY(-100%); } to { transform: translateY(200%); } }

    /*.hero-bg-shape {
      position: absolute; right: -10vw; top: 50%; transform: translateY(-50%);
      width: 60vw; height: 60vw;
      background: radial-gradient(circle, rgba(49,38,133,0.45) 0%, rgba(49,38,133,0.1) 50%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }
    .hero-accent {
      position: absolute; right: 8vw; top: 50%; transform: translateY(-50%);
      font-size: clamp(12rem, 22vw, 22rem);
      font-weight: 900; color: rgba(49,38,133,0.18);
      z-index: 0; line-height: 1; user-select: none;
      letter-spacing: -0.05em;
    }*/

    .hero-content { position: relative; z-index: 2; max-width: 700px; }
    /*.hero-badge {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--red); color: var(--white);
      padding: 0.4rem 1.1rem; border-radius: 4px;
      font-size: 0.75rem; font-weight: 900; letter-spacing: 0.12em;
      text-transform: uppercase; margin-bottom: 1.8rem;
      opacity: 0; animation: slideIn 0.7s 0.1s forwards;
    }*/
    .blink { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.7); animation: blink 1.2s infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

    .hero-title {
      font-size: clamp(2.6rem, 5.5vw, 5rem);
      font-weight: 900; line-height: 1.0; color: var(--white);
      margin-bottom: 1.4rem; text-transform: uppercase; letter-spacing: -0.01em;
      opacity: 0; animation: slideIn 0.8s 0.25s forwards;
    }
    .hero-title .highlight {
      color: var(--red);
      text-shadow: 0 0 40px rgba(250,18,19,0.5);
    }
    .hero-title .blue-word { color: #7b7ef5; }

    .hero-sub {
      font-size: 1.1rem; color: rgba(255,255,255,0.65);
      line-height: 1.7; max-width: 520px; margin-bottom: 2.5rem;
      opacity: 0; animation: slideIn 0.8s 0.4s forwards;
    }
    .hero-sub strong { color: var(--white); }

    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
      opacity: 0; animation: slideIn 0.8s 0.55s forwards;
    }
    .btn-red {
      background: var(--red); color: var(--white);
      padding: 1rem 2.4rem; border-radius: 6px;
      font-size: 0.92rem; font-weight: 900; letter-spacing: 0.06em;
      text-decoration: none; text-transform: uppercase;
      border: none; cursor: pointer;
      box-shadow: 0 8px 28px var(--red-glow);
      position: relative; overflow: hidden;
      transition: transform 0.2s, box-shadow 0.25s;
    }
    
    .btn-red span { position: relative; z-index: 1; }
    .btn-red:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(250,18,19,0.35); }
    .btn-red:hover::before { transform: translateX(0); }

    .btn-outline-w {
      border: 2px solid rgba(255,255,255,0.25); color: var(--white);
      padding: 1rem 2.4rem; border-radius: 6px;
      font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em;
      text-decoration: none; text-transform: uppercase; background: transparent;
      transition: border-color 0.25s, background 0.25s, transform 0.2s;
    }
    .btn-outline-w:hover {
      border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08);
      transform: translateY(-3px);
    }

    .hero-trust {
      display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 3rem;
      opacity: 0; animation: slideIn 0.8s 0.7s forwards;
    }
    .trust-item {
      display: flex; align-items: center; gap: 0.6rem;
      font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 700;
      letter-spacing: 0.04em; text-transform: uppercase;
    }
    .trust-item span { font-size: 1.2rem; }

    @keyframes slideIn { from { opacity:0; transform: translateX(-30px); } to { opacity:1; transform:none; } }

    /* ─── EMERGENCY STRIP ─── */
    .strip {
      background: var(--red);
      padding: 1.1rem 5vw;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .strip-text {
      font-size: 1rem; font-weight: 900; color: var(--white);
      letter-spacing: 0.04em; text-transform: uppercase;
    }
    .strip-text em { font-style: normal; background: rgba(0,0,0,0.15); padding: 0.15rem 0.6rem; border-radius: 3px; }
    .strip-btn {
      background: var(--white); color: var(--red);
      padding: 0.7rem 2rem; border-radius: 5px;
      font-size: 0.85rem; font-weight: 900; letter-spacing: 0.06em;
      text-transform: uppercase; text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .strip-btn:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

    /* ─── SECTIONS BASE ─── */
    section { padding: 6rem 6vw; }
    .s-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.75rem; font-weight: 900; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--red);
      margin-bottom: 0.9rem;
    }
    .s-tag::before { content:''; width:20px; height:2px; background:var(--red); }
    .s-title {
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      font-weight: 900; color: var(--blue); line-height: 1.1;
      text-transform: uppercase; margin-bottom: 1rem; letter-spacing: -0.01em;
    }
    .s-title span { color: var(--red); }
    .s-desc { font-size: 0.98rem; color: var(--text-mid); line-height: 1.75; max-width: 560px; }

    /* ─── SERVICES ─── */
    #servicos { background: var(--off); }
    .serv-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
    .serv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

    .serv-card {
      background: var(--white); border-radius: 12px;
      border: 2px solid transparent;
      padding: 2rem 1.8rem;
      position: relative; overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      cursor: default;
    }
    .serv-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px; background: var(--red); transform: scaleX(0);
      transform-origin: left; transition: transform 0.35s ease;
    }
    .serv-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 56px rgba(49,38,133,0.12);
      border-color: rgba(49,38,133,0.08);
    }
    .serv-card:hover::after { transform: scaleX(1); }

    .serv-num {
      font-size: 3rem; font-weight: 900; color: rgba(49,38,133,0.06);
      line-height: 1; margin-bottom: 0.6rem; letter-spacing: -0.03em;
    }
    .serv-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
    .serv-card h3 {
      font-size: 1.1rem; font-weight: 900; color: var(--blue);
      text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.6rem;
    }
    .serv-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.2rem; }
    .serv-tag {
      display: inline-block; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      background: var(--blue-pale); color: var(--blue);
      padding: 0.25rem 0.7rem; border-radius: 3px;
    }

    /* ─── WHY US ─── */
    #por-que {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .why-visual {
      position: relative;
    }
    .why-bg {
      width: 100%; aspect-ratio: 1;
      border-radius: 16px;
      background: url('../imgs/func.webp');
      background-size: cover;
      display: flex; align-items: center; justify-content: center;
      font-size: 8rem;
      box-shadow: 0 24px 72px rgba(49,38,133,0.3);
      position: relative; overflow: hidden;
    }
    .why-bg::before {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(
        45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px,
        transparent 0, transparent 50%
      );
      background-size: 20px 20px;
    }
    .why-stat {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--red); color: var(--white);
      padding: 1.2rem 1.6rem; border-radius: 10px;
      text-align: center; box-shadow: 0 12px 36px var(--red-glow);
    }
    .why-stat .n { font-size: 2.2rem; font-weight: 900; line-height: 1; }
    .why-stat .l { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; margin-top: 3px; }

    .why-list { display: flex; flex-direction: column; gap: 1.2rem; margin: 2rem 0; }
    .why-item {
      display: flex; gap: 1.2rem; align-items: flex-start;
      padding: 1.2rem; border-radius: 10px;
      border-left: 3px solid transparent;
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
    }
    .why-item:hover { background: var(--blue-pale); border-left-color: var(--blue); transform: translateX(4px); }
    .why-item-ico {
      width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
      background: var(--blue); display: flex; align-items: center;
      justify-content: center; font-size: 1.3rem;
      box-shadow: 0 4px 12px rgba(49,38,133,0.2);
    }
    .why-item h4 { font-size: 0.95rem; font-weight: 900; color: var(--blue); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.3rem; }
    .why-item p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; }

    /* ─── NUMBERS ─── */
    #numeros {
      background: var(--blue);
      text-align: center;
    }
    #numeros .s-title { color: var(--white); }
    .nums-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 3.5rem; }
    .num-card {
      padding: 2.5rem 2rem;
      border-right: 1px solid rgba(255,255,255,0.1);
      position: relative;
    }
    .num-card:last-child { border-right: none; }
    .num-val {
      font-size: 3.5rem; font-weight: 900; color: var(--white);
      line-height: 1; margin-bottom: 0.4rem;
      letter-spacing: -0.02em;
    }
    .num-val span { color: var(--red); }
    .num-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

    /* ─── DEPOIMENTOS ─── */
    #depoimentos { background: var(--off); }
    .dep-header { margin-bottom: 3rem; }
    .dep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
    .dep-card {
      background: var(--white); border-radius: 12px; padding: 1.8rem;
      border: 1px solid rgba(49,38,133,0.08);
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative;
    }
    .dep-card::before {
      content: '"'; position: absolute; top: 0.8rem; right: 1.4rem;
      font-size: 5rem; font-weight: 900; color: rgba(250,18,19,0.07);
      line-height: 1; font-family: serif;
    }
    .dep-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(49,38,133,0.1); }
    .dep-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
    .dep-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
    .dep-author { display: flex; align-items: center; gap: 0.8rem; }
    .dep-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--blue-light));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .dep-name { font-size: 0.88rem; font-weight: 900; color: var(--blue); text-transform: uppercase; letter-spacing: 0.04em; }
    .dep-loc { font-size: 0.78rem; color: var(--text-light); margin-top: 1px; }
    .dep-badge {
      display: inline-flex; align-items: center; gap: 0.3rem;
      font-size: 0.68rem; font-weight: 700; color: var(--red);
      background: rgba(250,18,19,0.08); padding: 0.15rem 0.5rem; border-radius: 3px;
      margin-left: 0.5rem; text-transform: uppercase; letter-spacing: 0.06em;
    }

    /* ─── PROCESS ─── */
    #processo {
      background: var(--dark-mid);
      color: var(--white);
    }
    #processo .s-title { color: var(--white); }
    .proc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 3.5rem; position: relative; }
    .proc-grid::before {
      content: ''; position: absolute; top: 36px; left: 12%; right: 12%;
      height: 2px; background: linear-gradient(90deg, var(--red), var(--blue-light));
      z-index: 0;
    }
    .proc-step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
    .proc-num {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--red); color: var(--white);
      font-size: 1.5rem; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.4rem;
      box-shadow: 0 8px 24px var(--red-glow);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .proc-step:hover .proc-num { transform: scale(1.12); box-shadow: 0 12px 36px var(--red-glow); }
    .proc-step h4 { font-size: 0.9rem; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
    .proc-step p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

    /* ─── CTA ─── */
    #cta {
      background: linear-gradient(135deg, var(--red) 0%, #c00e0e 100%);
      text-align: center; position: relative; overflow: hidden;
    }
    #cta::before {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px,
        transparent 0, transparent 12px
      );
    }
    .cta-title {
      font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 900;
      color: var(--white); text-transform: uppercase; line-height: 1.05;
      letter-spacing: -0.01em; margin-bottom: 1rem; position: relative; z-index: 1;
    }
    .cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; position: relative; z-index: 1; }
    .btn-blue {
      background: var(--blue); color: var(--white);
      padding: 1rem 3rem; border-radius: 6px;
      font-size: 0.95rem; font-weight: 900; letter-spacing: 0.07em;
      text-decoration: none; text-transform: uppercase;
      position: relative; z-index: 1;
      box-shadow: 0 8px 28px rgba(49,38,133,0.4);
      transition: transform 0.2s, box-shadow 0.25s, background 0.2s;
    }
    .btn-blue:hover { background: var(--blue-mid); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(49,38,133,0.5); }

    /* ─── CONTACT ─── */
    #contato {
      display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start;
    }
    .contact-left .s-desc { margin-bottom: 2rem; }
    .info-box { display: flex; flex-direction: column; gap: 1rem; }
    .info-row {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 1rem 1.2rem; border-radius: 10px;
      background: var(--off); border-left: 3px solid var(--red);
      transition: transform 0.2s;
    }
    .info-row:hover { transform: translateX(4px); }
    .info-ico { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
    .info-row h4 { font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); margin-bottom: 2px; }
    .info-row p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }
    .info-row strong, .info-row a{ color: var(--text-mid); }

    .contact-form {
      background: var(--off); border-radius: 14px;
      padding: 2.5rem;
      border-top: 4px solid var(--red);
    }
    .contact-form h3 { font-size: 1.25rem; font-weight: 900; color: var(--blue); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 1.6rem; }
    .fg { margin-bottom: 1.2rem; }
    .fg label { display: block; font-size: 0.75rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 0.45rem; }
    .fg input, .fg select, .fg textarea {
      width: 100%; padding: 0.8rem 1rem;
      border: 2px solid rgba(49,38,133,0.12); border-radius: 8px;
      font-family: 'Lato', sans-serif; font-size: 0.9rem; color: var(--text);
      background: var(--white); outline: none;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(49,38,133,0.1);
    }
    .fg textarea { resize: vertical; min-height: 110px; }
    .fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark); color: rgba(255,255,255,0.4);
      padding: 2.5rem 5vw;
    }
    .footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem; }
    .footer-logo { font-size: 1.15rem; font-weight: 900; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; }
    .footer-logo span { color: var(--red); }
    .footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
    .footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
    .footer-links a:hover { color: var(--red); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
    .footer-copy { font-size: 0.78rem; }
    .footer-creci { font-size: 0.75rem; }

    /* ─── SCROLL REVEAL ─── */
    .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-l { opacity: 0; transform: translateX(-36px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal-l.visible { opacity: 1; transform: none; }
    .reveal-r { opacity: 0; transform: translateX(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal-r.visible { opacity: 1; transform: none; }

    /* ─── RESPONSIVE ─── */
    @media(max-width: 860px) {
      #por-que, #contato, .fg-row { grid-template-columns: 1fr; }
      .why-visual { display: none; }
      .topbar-left { display: none; }
      .nav-links { display: none; }
      .proc-grid::before { display: none; }
      .proc-grid { grid-template-columns: 1fr 1fr; }
      .nums-grid { grid-template-columns: 1fr; }
      .num-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
      .btn-red, .btn-blue { padding: 1rem 1rem; }
    }