:root{
  --red:#ef383a;
  --red-dark:#d92d30;
  --green:#32a457;
  --green-dark:#237a40;
  --ink:#17181b;
  --muted:#70737a;
  --line:#e6e7e9;
  --soft:#f5f5f6;
  --white:#fff;
  --wa:#25d366;
  --container:min(1180px,88vw);
  --header:82px;
  --radius:22px;
  --ease:cubic-bezier(.2,.8,.2,1);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:var(--header)}
body{margin:0;font-family:'Manrope',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;color:var(--ink);background:var(--white);overflow-x:hidden}
body.menu-open,body.lightbox-open{overflow:hidden}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
button{border:0;background:none;color:inherit}
.container{width:var(--container);margin-inline:auto}
.section{padding:118px 0}
.section-anchor{scroll-margin-top:var(--header)}
.display-title{font-family:'Exo 2','Manrope',sans-serif;font-style:italic;font-weight:800;letter-spacing:-.045em;line-height:.99;margin:0}
.section-kicker,.eyebrow{display:inline-flex;align-items:center;font-size:12px;line-height:1;font-weight:800;letter-spacing:.13em;text-transform:uppercase;color:var(--red);margin-bottom:23px}
.section-heading{margin-bottom:62px}
.section-heading h2{font-size:clamp(42px,5vw,68px);max-width:820px}
.section-heading-split{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:90px;align-items:end}
.section-intro{padding-bottom:4px}
.section-intro p,.process-heading>p,.gallery-heading>p{font-size:16px;line-height:1.8;color:var(--muted);margin:0 0 26px;max-width:480px}
.text-link{display:inline-flex;align-items:center;gap:10px;font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:var(--ink);padding-bottom:7px;border-bottom:1px solid currentColor}
.text-link span{transition:transform .25s ease}
.text-link:hover span{transform:translate(3px,-3px)}

/* Header */
.site-header{position:fixed;inset:0 0 auto;z-index:100;height:var(--header);background:transparent;color:#fff;transition:background .35s ease,color .35s ease,box-shadow .35s ease,backdrop-filter .35s ease}
.site-header::after{content:"";position:absolute;left:0;right:0;bottom:0;height:1px;background:rgba(255,255,255,.24);transition:background .35s ease}
.site-header.is-scrolled{background:rgba(255,255,255,.96);color:var(--ink);box-shadow:0 10px 35px rgba(0,0,0,.07);backdrop-filter:blur(14px)}
.site-header.is-scrolled::after{background:rgba(20,20,20,.08)}
.scroll-progress{position:absolute;left:0;right:0;top:0;height:3px;background:rgba(255,255,255,.08);overflow:hidden;z-index:3}
.scroll-progress span{display:block;width:0;height:100%;background:var(--red);transition:width .08s linear}
.header-inner{height:100%;display:flex;align-items:center;justify-content:space-between;gap:30px}
.brand{position:relative;display:block;flex:0 0 auto;width:132px;height:58px}
.brand-logo{position:absolute;inset:0;width:132px;height:58px;object-fit:contain;transition:opacity .28s ease,transform .28s ease}
.brand-logo-light{opacity:1;transform:translateY(0)}
.brand-logo-dark{opacity:0;transform:translateY(2px)}
.site-header.is-scrolled .brand-logo-light,body.menu-open .brand-logo-light{opacity:0;transform:translateY(-2px)}
.site-header.is-scrolled .brand-logo-dark,body.menu-open .brand-logo-dark{opacity:1;transform:translateY(0)}
.main-nav{display:flex;align-items:center;gap:26px;margin-left:auto}
.main-nav a{position:relative;font-size:12px;font-weight:700;color:rgba(255,255,255,.88);white-space:nowrap;padding:30px 0;transition:color .25s ease}
.main-nav a::after{content:"";position:absolute;left:0;right:100%;bottom:21px;height:2px;background:var(--red);transition:right .25s ease}
.main-nav a:hover,.main-nav a.is-active{color:#fff}
.main-nav a:hover::after,.main-nav a.is-active::after{right:0}
.site-header.is-scrolled .main-nav a{color:#3c3d41}
.site-header.is-scrolled .main-nav a:hover,.site-header.is-scrolled .main-nav a.is-active{color:var(--ink)}
.header-actions{display:flex;align-items:center;gap:14px}
.catalog-link{position:relative;overflow:hidden;display:inline-flex;align-items:center;gap:9px;padding:11px 16px;border:1px solid rgba(255,255,255,.68);color:#fff;border-radius:10px;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.05em;transition:color .3s ease,border-color .3s ease,transform .25s ease}
.catalog-link::before{content:"";position:absolute;inset:0;background:var(--red);transform:scaleX(0);transform-origin:left center;transition:transform .38s var(--ease);z-index:-1}
.catalog-link:hover{border-color:var(--red);color:#fff;transform:translateY(-2px)}
.catalog-link:hover::before{transform:scaleX(1)}
.site-header.is-scrolled .catalog-link{border-color:var(--red);color:var(--red)}
.site-header.is-scrolled .catalog-link:hover{color:#fff}
.catalog-link svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.menu-toggle{display:none;width:42px;height:42px;border-radius:10px;border:1px solid rgba(255,255,255,.42);position:relative;cursor:pointer;transition:border-color .25s ease,background .25s ease}
.menu-toggle span{position:absolute;left:11px;width:20px;height:2px;background:#fff;transition:.25s ease}
.menu-toggle span:first-child{top:17px}.menu-toggle span:last-child{top:24px}
.menu-toggle.is-active span:first-child{top:21px;transform:rotate(45deg)}.menu-toggle.is-active span:last-child{top:21px;transform:rotate(-45deg)}
.site-header.is-scrolled .menu-toggle{border-color:#d7d8db}.site-header.is-scrolled .menu-toggle span{background:var(--ink)}
body.menu-open .site-header{background:#fff;color:var(--ink)}
body.menu-open .site-header::after{background:var(--line)}
body.menu-open .menu-toggle{border-color:#ddd}body.menu-open .menu-toggle span{background:var(--ink)}

/* Hero */
.hero{position:relative;min-height:100svh;display:flex;align-items:center;padding-top:var(--header);overflow:hidden;background:#151515;color:#fff}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center 45%;transform:scale(1.02)}
.hero-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(12,12,13,.94) 0%,rgba(12,12,13,.82) 38%,rgba(12,12,13,.38) 72%,rgba(12,12,13,.22) 100%)}
.hero-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);background-size:72px 72px;mask-image:linear-gradient(90deg,#000 0 54%,transparent 88%)}
.hero-inner{position:relative;z-index:3;display:flex;align-items:center;min-height:calc(100svh - var(--header));padding:74px 0}
.hero-copy{width:min(720px,67%)}
.hero .eyebrow{color:#fff;margin-bottom:25px;opacity:.9}
.hero h1{font-size:clamp(58px,7vw,96px);max-width:820px}
.hero h1 em{color:var(--red);font-style:inherit}
.hero-lead{font-size:17px;line-height:1.75;color:rgba(255,255,255,.78);max-width:650px;margin:28px 0 35px}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px}
.btn{min-height:50px;display:inline-flex;align-items:center;justify-content:center;gap:12px;padding:0 22px;border-radius:10px;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.04em;cursor:pointer;transition:transform .25s ease,background .25s ease,color .25s ease,border-color .25s ease}
.btn:hover{transform:translateY(-2px)}
.btn-red{background:var(--red);color:#fff}.btn-red:hover{background:var(--red-dark)}
.btn-hero-ghost{border:1px solid rgba(255,255,255,.38);color:#fff;background:rgba(255,255,255,.03)}
.btn-hero-ghost:hover{background:#fff;color:var(--ink);border-color:#fff}

/* About */
.section-about{background:#fff}
.about-services{border-top:1px solid var(--line)}
.about-service{display:grid;grid-template-columns:92px minmax(0,1fr);gap:34px;padding:42px 22px;margin:0 -22px;border-bottom:1px solid var(--line);border-radius:14px;align-items:start;background:transparent;transition:background-color .36s var(--ease),transform .36s var(--ease),border-color .36s ease}
.about-service:hover{background:#f6f6f7;transform:translateX(5px);border-bottom-color:transparent}
.about-icon{width:64px;height:64px;border-radius:50%;background:rgba(239,56,58,.09);display:grid;place-items:center;color:var(--red);transition:background-color .32s ease,transform .36s var(--ease)}
.about-service:hover .about-icon{background:rgba(239,56,58,.14);transform:scale(1.045)}
.about-icon svg{width:31px;height:31px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.about-service-copy{display:grid;grid-template-columns:minmax(220px,.6fr) minmax(0,1fr);gap:48px;align-items:start}
.about-service h3{font-family:'Exo 2','Manrope',sans-serif;font-style:italic;font-size:27px;letter-spacing:-.035em;margin:6px 0 0;transition:color .3s ease}
.about-service:hover h3{color:var(--red)}
.about-service p{font-size:15px;line-height:1.8;color:var(--muted);margin:4px 0 0;max-width:670px}

/* Reciclando Vidas */
.project{position:relative;background:var(--green);color:#fff;padding:112px 0;overflow:visible}
.project-grid-bg{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px);background-size:80px 80px;opacity:.48;mask-image:linear-gradient(90deg,#000 0 44%,transparent 84%);pointer-events:none}
.project-layout{position:relative;display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:80px;align-items:stretch}
.project-media-wrap{position:relative;min-width:0;height:100%}
.project-media{position:sticky;top:calc(var(--header) + 32px);height:min(560px,calc(100svh - var(--header) - 64px));border-radius:22px;overflow:hidden}
.project-media img{width:100%;height:100%;object-fit:cover}
.project-media::after{content:"";position:absolute;inset:0;box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);border-radius:inherit;pointer-events:none}
.project-copy{position:relative;padding-top:18px;min-width:0}
.project-kicker{color:#fff;opacity:.88}
.project-copy h2{font-size:clamp(46px,5.4vw,74px);max-width:680px}
.project-lead{font-size:16px;line-height:1.85;color:rgba(255,255,255,.84);max-width:680px;margin:28px 0 28px}
.project-points{display:flex;flex-direction:column;gap:12px;margin:0 0 30px}
.project-points span{display:flex;align-items:center;gap:11px;font-size:14px;font-weight:700}
.project-points svg{width:22px;height:22px;fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
.project-toggle{display:inline-flex;align-items:center;gap:18px;max-height:56px;border-bottom:1px solid rgba(255,255,255,.7);padding:10px 0;color:#fff;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.05em;cursor:pointer;overflow:hidden;transition:opacity .3s ease,transform .3s var(--ease),visibility .3s ease,max-height .45s var(--ease),padding .45s var(--ease),border-color .25s ease}
.project-toggle i{font-style:normal;font-size:23px;line-height:1;transition:transform .35s var(--ease)}
.project-toggle:hover i{transform:rotate(90deg)}
.project.is-expanded .project-toggle{max-height:0;padding:0;opacity:0;visibility:hidden;transform:translateY(-8px);border-color:transparent;pointer-events:none}
.project-close{position:sticky;top:calc(var(--header) + 18px);z-index:6;display:block;margin-left:auto;margin-bottom:-42px;width:42px;height:42px;border:1px solid rgba(255,255,255,.42);border-radius:50%;opacity:0;visibility:hidden;transform:scale(.86) rotate(-20deg);cursor:pointer;pointer-events:none;transition:opacity .3s ease,transform .38s var(--ease),background .25s ease,visibility .3s ease}
.project-close span{position:absolute;left:50%;top:50%;width:15px;height:1.5px;background:#fff;border-radius:2px;transform:translate(-50%,-50%) rotate(45deg)}
.project-close span+span{transform:translate(-50%,-50%) rotate(-45deg)}
.project-close:hover{background:rgba(255,255,255,.13)}
.project.is-expanded .project-close{opacity:1;visibility:visible;transform:scale(1) rotate(0);pointer-events:auto}
.project-extra{display:grid;grid-template-rows:0fr;opacity:0;transition:grid-template-rows .72s var(--ease),opacity .45s ease}
.project-extra-inner{overflow:hidden}
.project.is-expanded .project-extra{grid-template-rows:1fr;opacity:1}
.project-extra-inner h3{font-family:'Exo 2','Manrope',sans-serif;font-style:italic;font-size:30px;line-height:1.1;letter-spacing:-.03em;margin:46px 0 20px;padding-top:42px;border-top:1px solid rgba(255,255,255,.25)}
.project-extra-inner p{font-size:15px;line-height:1.88;color:rgba(255,255,255,.83);margin:0 0 19px;max-width:680px}

/* Processes */
.processes{background:var(--soft)}
.process-heading{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);gap:80px;align-items:end}
.process-heading>p{margin:0 0 6px}
.process-nav{position:relative;display:grid;grid-template-columns:repeat(var(--process-count,5),1fr);margin:62px 0 58px}
.process-nav::before{content:"";position:absolute;left:8%;right:8%;top:25px;height:1px;background:#d8d8db}.process-nav.is-single::before{display:none}
.process-dot{position:relative;z-index:1;display:flex;align-items:center;flex-direction:column;gap:11px;cursor:pointer;color:#9a9ba0;transition:color .25s ease}
.process-dot span{width:51px;height:51px;border-radius:50%;background:var(--soft);border:1px solid #cfd0d3;display:grid;place-items:center;font-size:11px;font-weight:800;transition:.28s ease}
.process-dot b{font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.process-dot:hover,.process-dot.is-active{color:var(--red)}
.process-dot.is-active span{background:var(--red);border-color:var(--red);color:#fff;box-shadow:0 0 0 7px rgba(239,56,58,.08)}
.process-detail{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(330px,.75fr);gap:64px;align-items:center;transition:opacity .18s ease,transform .18s ease}
.process-detail.is-changing{opacity:0;transform:translateY(8px)}
.process-image{height:430px;border-radius:18px;overflow:hidden;background:#ddd}
.process-image-open{position:relative;width:100%;padding:0;border:0;display:block;cursor:zoom-in;text-align:inherit}
.process-image img{width:100%;height:100%;object-fit:cover;transition:transform .65s var(--ease),filter .45s ease}
.process-image-open:hover img{transform:scale(1.025);filter:brightness(.9)}
.process-image-open:hover .process-zoom,.process-image-open:focus-visible .process-zoom{opacity:1;transform:translate(-50%,-50%) scale(1)}
.process-image-open:focus-visible{outline:2px solid var(--red);outline-offset:4px}
.process-image-open:focus-visible .process-zoom{background:var(--red);color:#fff}
.process-copy{padding-right:30px}
.process-number{display:block;color:var(--red);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.1em;margin-bottom:13px}
.process-copy h3{font-family:'Exo 2','Manrope',sans-serif;font-style:italic;font-size:46px;line-height:1;letter-spacing:-.04em;margin:0 0 20px}
.process-copy p{font-size:15px;line-height:1.85;color:var(--muted);margin:0;max-width:540px}

/* Nossa essência */
.essence{background:#fff}
.essence-heading{max-width:830px}
.essence-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.essence-card{position:relative;min-height:350px;padding:36px;border:1px solid var(--line);border-radius:20px;background:#fff;overflow:hidden;transition:transform .38s var(--ease),border-color .35s ease,box-shadow .38s ease,background-color .38s ease,color .38s ease}
.essence-card:hover{transform:translateY(-7px);background:var(--red);border-color:var(--red);color:#fff;box-shadow:0 24px 54px rgba(239,56,58,.16)}
.essence-icon{width:58px;height:58px;border-radius:16px;background:rgba(239,56,58,.08);display:grid;place-items:center;color:var(--red);margin-bottom:26px;transition:background-color .35s ease,color .35s ease,transform .38s var(--ease)}
.essence-icon svg{width:28px;height:28px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.essence-card:hover .essence-icon{background:rgba(255,255,255,.15);color:#fff;transform:none}
.essence-card h3{font-family:'Exo 2','Manrope',sans-serif;font-style:italic;font-size:31px;letter-spacing:-.035em;margin:0 0 16px}
.essence-card p{font-size:14px;line-height:1.82;color:var(--muted);margin:0;transition:color .35s ease}
.essence-card:hover p{color:rgba(255,255,255,.84)}

/* Gallery */
.gallery-section{background:#f7f7f8}
.gallery-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;grid-auto-rows:280px;gap:16px}
.gallery-item{position:relative;overflow:hidden;border-radius:18px;cursor:pointer;background:#d9d9db;padding:0}
.gallery-main{grid-row:span 2}.gallery-wide{grid-column:span 2}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .65s var(--ease),filter .45s ease}
.gallery-item::after{content:"";position:absolute;inset:0;border:1px solid rgba(255,255,255,.16);border-radius:inherit;pointer-events:none}
.gallery-item:hover img{transform:scale(1.035);filter:brightness(.88)}
.gallery-zoom{position:absolute;left:50%;top:50%;z-index:3;width:48px;height:48px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.94);color:var(--ink);box-shadow:0 12px 28px rgba(0,0,0,.13);opacity:0;transform:translate(-50%,-46%) scale(.82);transition:opacity .28s ease,transform .34s var(--ease),background .25s ease,color .25s ease;pointer-events:none}
.gallery-zoom svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.gallery-item:hover .gallery-zoom{opacity:1;transform:translate(-50%,-50%) scale(1)}
.gallery-item:focus-visible .gallery-zoom{opacity:1;transform:translate(-50%,-50%) scale(1);background:var(--red);color:#fff}

/* Partners */
.partners{background:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.partners-heading{max-width:820px;margin-bottom:90px}
.partners-heading h2{font-size:clamp(40px,4.7vw,64px)}
.partners-logos{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));column-gap:64px;row-gap:74px;align-items:center}
.partners-logos img{width:100%;max-width:184px;height:92px;object-fit:contain;justify-self:center;filter:grayscale(1) saturate(0) contrast(.92) brightness(.72);opacity:.72;transition:transform .35s var(--ease),filter .38s ease,opacity .35s ease}
.partners-logos img:hover{transform:translateY(-5px) scale(1.035);filter:grayscale(0) saturate(1) contrast(1) brightness(1) drop-shadow(0 1px 1px rgba(20,20,22,.22)) drop-shadow(0 0 8px rgba(20,20,22,.08));opacity:1}

/* FAQ */
.faq-section{background:#fff}
.faq-layout{display:grid;grid-template-columns:minmax(320px,.78fr) minmax(0,1.22fr);gap:100px;align-items:start}
.faq-intro{position:sticky;top:calc(var(--header) + 34px)}
.faq-intro h2{font-size:clamp(42px,4.8vw,65px);max-width:520px}
.faq-intro p{font-size:15px;line-height:1.8;color:var(--muted);max-width:460px;margin:25px 0}
.accordion{border-top:1px solid var(--line)}
.faq-item{border-bottom:1px solid var(--line)}
.faq-question{width:100%;min-height:86px;display:flex;align-items:center;justify-content:space-between;gap:30px;text-align:left;font-size:15px;font-weight:800;cursor:pointer;padding:0}
.faq-question i{position:relative;width:26px;height:26px;flex:0 0 26px;border-radius:50%;border:1px solid #cfd0d3;transition:.25s ease}
.faq-question i::before,.faq-question i::after{content:"";position:absolute;left:50%;top:50%;width:9px;height:1px;background:currentColor;transform:translate(-50%,-50%);transition:.25s ease}
.faq-question i::after{transform:translate(-50%,-50%) rotate(90deg)}
.faq-item.is-open .faq-question{color:var(--red)}
.faq-item.is-open .faq-question i{border-color:var(--red);background:var(--red);color:#fff}
.faq-item.is-open .faq-question i::after{transform:translate(-50%,-50%) rotate(0);opacity:0}
.faq-answer{display:grid;grid-template-rows:0fr;transition:grid-template-rows .45s var(--ease)}
.faq-answer>div{overflow:hidden}.faq-item.is-open .faq-answer{grid-template-rows:1fr}
.faq-answer p{font-size:14px;line-height:1.8;color:var(--muted);margin:0;padding:0 55px 27px 0}

/* Contact */
.contact-section{background:#f5f5f6}
.contact-layout{display:grid;grid-template-columns:minmax(0,.9fr) minmax(430px,1.1fr);gap:90px;align-items:start}
.contact-content h2{font-size:clamp(44px,5.2vw,70px);max-width:650px}
.contact-lead{font-size:15px;line-height:1.82;color:var(--muted);max-width:560px;margin:25px 0 38px}
.contact-info-list{border-top:1px solid #dfe0e2;max-width:620px}
.contact-info{display:grid;grid-template-columns:48px minmax(0,1fr);gap:17px;align-items:center;padding:20px 0;border-bottom:1px solid #dfe0e2;transition:color .22s ease}
a.contact-info:hover{color:var(--red)}
.contact-info-icon{width:42px;height:42px;display:grid;place-items:center;color:var(--red)}
.contact-info-icon svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.contact-info-copy{display:flex;flex-direction:column;gap:5px}
.contact-info-copy small{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:#97999f}
.contact-info-copy strong{font-size:14px;line-height:1.45;font-weight:700;color:var(--ink)}
.social-area{margin-top:34px}
.social-area>small{display:block;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:#97999f;margin-bottom:14px}
.social-icons{display:flex;gap:10px}
.social-icon{width:43px;height:43px;border-radius:50%;border:1px solid #d4d5d8;display:grid;place-items:center;color:var(--ink);background:#fff;transition:.25s ease}
.social-icon:hover{border-color:var(--red);background:var(--red);color:#fff;transform:translateY(-2px)}
.social-icon.whatsapp:hover{border-color:var(--wa);background:var(--wa)}
.social-icon svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.social-icon.whatsapp svg,.social-icon:last-child svg{fill:currentColor;stroke:none}
.contact-form-wrap{position:sticky;top:calc(var(--header) + 32px)}
.contact-form{background:#fff;border:1px solid #e1e2e4;border-radius:22px;padding:38px 40px 36px}
.contact-form-head{padding-bottom:28px;margin-bottom:30px;border-bottom:1px solid var(--line)}
.contact-form-head small{display:block;color:var(--red);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.11em;margin-bottom:9px}
.contact-form-head h3{font-family:'Exo 2','Manrope',sans-serif;font-style:italic;font-size:30px;line-height:1.05;letter-spacing:-.035em;margin:0}
.contact-form label{display:block}
.contact-form label>span{display:block;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;margin-bottom:8px;color:#777a80}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.contact-form input,.contact-form textarea{width:100%;border:1px solid #dedfe2;background:#fafafa;border-radius:10px;outline:none;padding:13px 14px;font-size:13px;color:var(--ink);transition:border-color .2s ease,background .2s ease,box-shadow .2s ease}
.contact-form textarea{resize:vertical;min-height:130px}
.contact-form input:focus,.contact-form textarea:focus{border-color:rgba(239,56,58,.65);background:#fff;box-shadow:0 0 0 3px rgba(239,56,58,.07)}
.contact-form input.is-error,.contact-form textarea.is-error{border-color:var(--red)}
.contact-form>label,.form-row{margin-bottom:20px}
.form-footer{display:flex;align-items:center;justify-content:space-between;gap:22px;margin-top:3px}
.privacy-check{display:flex!important;align-items:flex-start;gap:9px;max-width:290px;margin:0!important;cursor:pointer}
.privacy-check input{width:16px!important;height:16px;margin:2px 0 0;accent-color:var(--red);box-shadow:none!important}
.privacy-check span{font-size:10px!important;line-height:1.55!important;font-weight:600!important;letter-spacing:0!important;text-transform:none!important;color:var(--muted)!important;margin:0!important}
.btn-submit{
  --submit-width:178px;
  position:relative;
  width:var(--submit-width);
  min-width:var(--submit-width);
  height:50px;
  margin-left:auto;
  padding:0 20px;
  border:0;
  overflow:hidden;
  white-space:nowrap;
  transform-origin:right center;
  transition:width .55s var(--ease),min-width .55s var(--ease),background .3s ease,box-shadow .3s ease,transform .25s ease;
}
.btn-submit:hover{transform:translateY(-2px)}
.btn-submit:disabled{cursor:default;pointer-events:none}
.btn-submit.is-loading{--submit-width:156px;background:#d92f31;box-shadow:0 10px 25px rgba(239,56,58,.18)}
.btn-submit.is-success{--submit-width:286px;background:#17181b;box-shadow:0 12px 28px rgba(23,24,27,.2)}
.btn-submit.is-loading:hover,.btn-submit.is-success:hover{transform:none}
.submit-state{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;gap:10px;padding:0 18px;opacity:0;transform:translateY(10px);transition:opacity .25s ease,transform .38s var(--ease)}
.submit-state-default{opacity:1;transform:none}
.btn-submit.is-loading .submit-state-default,.btn-submit.is-success .submit-state-default{opacity:0;transform:translateY(-10px)}
.btn-submit.is-loading .submit-state-loading{opacity:1;transform:none}
.btn-submit.is-success .submit-state-loading{opacity:0;transform:translateY(-10px)}
.btn-submit.is-success .submit-state-success{opacity:1;transform:none}
.submit-arrow,.submit-check{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
.submit-check{width:19px;height:19px;stroke-width:2.4}
.submit-spinner{width:17px;height:17px;border-radius:50%;border:2px solid rgba(255,255,255,.38);border-top-color:#fff;animation:submitSpin .7s linear infinite;flex:0 0 auto}
@keyframes submitSpin{to{transform:rotate(360deg)}}

/* Footer */
.site-footer{background:#161619;color:#fff;padding:42px 0 24px}
.footer-main{display:flex;align-items:center;justify-content:space-between;gap:50px;padding-bottom:34px;border-bottom:1px solid rgba(255,255,255,.12)}
.footer-logo{display:block;padding:0;background:transparent}
.footer-logo img{width:124px;height:52px;object-fit:contain}
.footer-nav{display:flex;align-items:center;justify-content:flex-end;gap:26px;flex-wrap:wrap}
.footer-nav a{font-size:12px;font-weight:700;color:rgba(255,255,255,.72);transition:color .2s ease}
.footer-nav a:hover{color:#fff}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:30px;padding-top:23px}
.footer-bottom p{margin:0;font-size:11px;color:rgba(255,255,255,.5)}
.footer-bottom a{color:#fff;font-weight:800}

/* Floating WhatsApp */
.floating-whatsapp{position:fixed;right:24px;bottom:24px;z-index:80;width:58px;height:58px;border-radius:50%;background:var(--wa);color:#fff;display:grid;place-items:center;box-shadow:0 14px 34px rgba(37,211,102,.32);transition:transform .25s ease,box-shadow .25s ease}
.floating-whatsapp:hover{transform:translateY(-3px) scale(1.03);box-shadow:0 18px 42px rgba(37,211,102,.4)}
.floating-whatsapp svg{position:relative;z-index:2;width:29px;height:29px;fill:#fff}
.wa-pulse{position:absolute;inset:0;border:1px solid rgba(37,211,102,.65);border-radius:50%;animation:waPulse 2.3s ease-out infinite}
@keyframes waPulse{0%{transform:scale(.9);opacity:.8}70%,100%{transform:scale(1.55);opacity:0}}

/* Lightbox / Toast */
.lightbox{position:fixed;inset:0;z-index:150;background:rgba(10,10,11,.94);display:flex;align-items:center;justify-content:center;padding:40px;opacity:0;visibility:hidden;transition:.3s ease}
.lightbox.is-open{opacity:1;visibility:visible}
.lightbox-inner{width:min(1050px,90vw)}
.lightbox-inner img{width:100%;max-height:80vh;object-fit:cover;border-radius:16px}
.lightbox-close{position:absolute;right:28px;top:24px;color:#fff;font-size:38px;font-weight:300;cursor:pointer}
.toast{position:fixed;right:24px;top:102px;z-index:160;width:min(360px,calc(100vw - 48px));padding:18px 20px;border-radius:14px;background:#17181b;color:#fff;box-shadow:0 20px 50px rgba(0,0,0,.18);display:flex;flex-direction:column;gap:4px;transform:translateX(calc(100% + 40px));transition:transform .4s var(--ease)}
.toast.is-visible{transform:translateX(0)}
.toast strong{font-size:13px}.toast span{font-size:11px;color:rgba(255,255,255,.65)}

/* Reveal */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s var(--ease) var(--delay,0ms),transform .7s var(--ease) var(--delay,0ms)}
.reveal.is-visible{opacity:1;transform:none}

@media(max-width:1120px){
  :root{--container:min(92vw,1080px)}
  .main-nav{gap:18px}.main-nav a{font-size:11px}.catalog-link{padding:10px 13px}
  .section-heading-split,.process-heading{gap:55px}.project-layout{gap:56px}.contact-layout{gap:60px}.faq-layout{gap:70px}
  .gallery-grid{grid-template-columns:1fr 1fr}.gallery-main{grid-row:span 2}.gallery-wide{grid-column:2}
  .partners-logos{column-gap:42px;row-gap:58px}.partners-logos img{max-width:166px;height:84px}
}
@media(max-width:960px){
  :root{--header:74px;--container:90vw}
  .main-nav{position:fixed;top:var(--header);left:0;right:0;height:calc(100svh - var(--header));background:#fff;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:0;padding:28px 5vw 50px;transform:translateX(100%);transition:transform .4s var(--ease);overflow-y:auto;margin:0}
  .main-nav.is-open{transform:translateX(0)}.main-nav a,.site-header.is-scrolled .main-nav a{color:var(--ink);font-size:22px;width:100%;padding:17px 0;border-bottom:1px solid var(--line)}.main-nav a::after{display:none}
  .menu-toggle{display:block}.catalog-link span{display:none}.catalog-link{width:42px;height:42px;padding:0;justify-content:center}
  .brand{width:116px;height:50px}.brand-logo{width:116px;height:50px}
  .hero-inner{min-height:calc(100svh - var(--header));padding:70px 0}.hero-copy{width:min(780px,82%)}.hero-shade{background:linear-gradient(90deg,rgba(10,10,11,.92),rgba(10,10,11,.48))}
  .section{padding:92px 0}.section-heading-split,.process-heading{grid-template-columns:1fr;gap:30px}.section-heading h2{max-width:850px}.section-intro p,.process-heading>p,.gallery-heading>p{max-width:680px}
  .about-service-copy{grid-template-columns:230px 1fr;gap:36px}
  .project{padding:90px 0}.project-layout{grid-template-columns:1fr;gap:48px}.project-media{position:relative;top:auto;height:480px}.project-copy{padding-top:0}
  .process-detail{grid-template-columns:1fr;gap:35px}.process-image{height:420px}.process-copy{padding:0}.process-copy p{max-width:700px}
  .essence-cards{grid-template-columns:1fr}.essence-card{min-height:0}.essence-icon{margin-bottom:24px}
  .faq-layout,.contact-layout{grid-template-columns:1fr;gap:60px}.faq-intro,.contact-form-wrap{position:static}.faq-intro p{max-width:620px}.contact-info-list{max-width:620px}
  .partners-logos{grid-template-columns:repeat(4,1fr)}
}
@media(max-width:700px){
  :root{--container:91vw}
  .section{padding:76px 0}.section-kicker,.eyebrow{font-size:10px;margin-bottom:18px}
  .hero{min-height:760px}.hero-bg{background-position:63% center}.hero-shade{background:linear-gradient(90deg,rgba(10,10,11,.94),rgba(10,10,11,.69))}.hero-grid{background-size:52px 52px;mask-image:none;opacity:.7}.hero-inner{min-height:686px;padding:58px 0}.hero-copy{width:100%}.hero h1{font-size:clamp(49px,13.4vw,69px)}.hero-lead{font-size:14px;max-width:95%;margin:24px 0 30px}.hero-actions{flex-direction:column;align-items:stretch}.hero-actions .btn{width:100%}
  .section-heading{margin-bottom:42px}.section-heading h2,.faq-intro h2,.contact-content h2{font-size:clamp(38px,10.8vw,52px)}
  .about-service{grid-template-columns:58px 1fr;gap:18px;padding:30px 14px;margin:0 -14px}.about-icon{width:48px;height:48px}.about-icon svg{width:24px;height:24px}.about-service-copy{grid-template-columns:1fr;gap:11px}.about-service h3{font-size:24px}.about-service p{font-size:14px}
  .project{padding:76px 0}.project-layout{gap:34px}.project-media{height:390px;border-radius:16px}.project-close{top:calc(var(--header) + 12px)}.project-copy h2{font-size:clamp(40px,11vw,54px)}.project-lead,.project-extra-inner p{font-size:14px}.project-extra-inner h3{font-size:26px}
  .process-nav{margin:45px -4px 42px;gap:2px}.process-nav::before{left:10%;right:10%;top:20px}.process-dot{gap:9px}.process-dot span{width:41px;height:41px;font-size:10px}.process-dot b{font-size:9px}.process-detail{gap:27px}.process-image{height:280px;border-radius:14px}.process-copy h3{font-size:38px}.process-copy p{font-size:14px}
  .essence-card{padding:28px;min-height:290px}.essence-icon{margin-bottom:22px}
  .gallery-grid{grid-template-columns:1fr;grid-auto-rows:260px}.gallery-main,.gallery-wide{grid-column:auto;grid-row:auto}.gallery-main{height:360px}
  .partners{padding:72px 0}.partners-heading{margin-bottom:58px}.partners-heading h2{font-size:clamp(36px,10vw,50px)}.partners-logos{grid-template-columns:repeat(2,1fr);column-gap:34px;row-gap:48px}.partners-logos img{max-width:150px;height:74px}
  .faq-layout,.contact-layout{gap:45px}.faq-question{min-height:74px;font-size:14px}.faq-answer p{padding-right:18px}.contact-info{grid-template-columns:42px 1fr;gap:12px;padding:17px 0}.contact-info-copy strong{font-size:13px}.form-row{grid-template-columns:1fr;gap:0}.contact-form{padding:28px 22px}.contact-form>label,.form-row{margin-bottom:18px}.form-footer{flex-direction:column;align-items:stretch}.btn-submit{width:100%}
  .footer-main{flex-direction:column;align-items:flex-start;gap:28px}.footer-nav{justify-content:flex-start;gap:18px 22px}.footer-bottom{align-items:flex-start;flex-direction:column;gap:9px}.floating-whatsapp{right:16px;bottom:16px;width:54px;height:54px}.floating-whatsapp svg{width:27px;height:27px}
  .lightbox{padding:20px}.lightbox-inner{width:100%}.lightbox-inner img{max-height:72vh}.lightbox-close{right:17px;top:13px}
}
@media(max-width:430px){
  .process-dot b{display:none}.process-nav::before{left:9%;right:9%}.project-media{height:330px}.gallery-main{height:320px}.footer-nav{gap:15px 18px}.footer-nav a{font-size:11px}
}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.reveal{opacity:1;transform:none;transition:none}.wa-pulse{animation:none}.catalog-link::before{transition:none}}

/* Etapa 10 — refinamentos de ícone, sticky e responsividade */
.about-icon .recycle-icon{width:34px;height:34px;stroke-width:2;vector-effect:non-scaling-stroke}
.project-close{top:calc(var(--header) + 46px)}

/* Header passa ao menu mobile antes de ficar apertado com o nome longo do projeto */
@media(max-width:1080px){
  :root{--header:74px}
  .main-nav{position:fixed;top:var(--header);left:0;right:0;height:calc(100svh - var(--header));background:#fff;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:0;padding:28px max(5vw,22px) 50px;transform:translateX(100%);transition:transform .4s var(--ease);overflow-y:auto;overscroll-behavior:contain;margin:0}
  .main-nav.is-open{transform:translateX(0)}
  .main-nav a,.site-header.is-scrolled .main-nav a{color:var(--ink);font-size:20px;width:100%;padding:16px 0;border-bottom:1px solid var(--line);white-space:normal}
  .main-nav a:hover,.main-nav a.is-active,.site-header.is-scrolled .main-nav a:hover,.site-header.is-scrolled .main-nav a.is-active{color:var(--red)}
  .main-nav a::after{display:none}
  .menu-toggle{display:block}
  .catalog-link span{display:none}
  .catalog-link{width:42px;height:42px;padding:0;justify-content:center;flex:0 0 42px}
  .brand{width:116px;height:50px}.brand-logo{width:116px;height:50px}
  .header-inner{gap:16px}
}

@media(max-width:960px){
  .project-close{position:sticky;top:calc(var(--header) + 26px);margin-bottom:-42px}
  .project-media-wrap{height:auto}
  .project-copy{width:100%}
  .process-nav{overflow:visible}
  .essence-card{width:100%}
  .gallery-item{min-width:0}
}

@media(max-width:820px){
  :root{--container:90vw}
  .hero-copy{width:100%}
  .hero h1{max-width:760px}
  .about-service-copy{grid-template-columns:minmax(190px,.55fr) minmax(0,1fr);gap:28px}
  .process-nav{margin-left:0;margin-right:0}
  .process-dot b{font-size:9px}
  .partners-logos{grid-template-columns:repeat(3,minmax(0,1fr));column-gap:40px;row-gap:48px}
  .partners-logos img{max-width:155px;height:78px}
  .footer-nav{gap:18px 20px}
}

@media(max-width:700px){
  .project-close{top:calc(var(--header) + 22px);width:40px;height:40px;margin-bottom:-40px}
  .about-icon .recycle-icon{width:27px;height:27px;stroke-width:2.1}
  .process-nav{grid-template-columns:repeat(var(--process-count,5),minmax(0,1fr));width:100%}
  .process-dot{min-width:0}
  .process-dot b{max-width:100%;text-align:center;line-height:1.2}
  .essence-cards{gap:16px}
  .gallery-grid{gap:12px}
  .partners-logos{grid-template-columns:repeat(2,minmax(0,1fr));column-gap:42px;row-gap:52px}
  .contact-form,.contact-info-list{width:100%}
  .footer-nav{width:100%}
}

@media(max-width:560px){
  :root{--container:92vw;--header:70px}
  .header-inner{gap:10px}
  .brand,.brand-logo{width:106px;height:46px}
  .catalog-link{width:39px;height:39px;flex-basis:39px;border-radius:9px}
  .menu-toggle{width:39px;height:39px}
  .main-nav{top:var(--header);height:calc(100svh - var(--header));padding:24px 4vw 42px}
  .main-nav a,.site-header.is-scrolled .main-nav a{font-size:19px;padding:15px 0}
  .hero{min-height:700px}
  .hero-inner{min-height:630px;padding:52px 0}
  .hero h1{font-size:clamp(44px,13vw,60px)}
  .section{padding:68px 0}
  .about-service{grid-template-columns:52px minmax(0,1fr);gap:15px;padding:27px 10px;margin:0 -10px}
  .about-icon{width:46px;height:46px}
  .about-service-copy{grid-template-columns:1fr;gap:9px}
  .project{padding:68px 0}
  .project-media{height:340px}
  .project-close{top:calc(var(--header) + 20px);right:0}
  .project-extra-inner h3{margin-top:40px;padding-top:36px}
  .process-nav{margin-top:38px;margin-bottom:36px}
  .process-nav::before{top:19px;left:8%;right:8%}
  .process-dot span{width:39px;height:39px}
  .process-image{height:250px}
  .process-copy h3{font-size:35px}
  .essence-card{padding:26px 22px;min-height:0}
  .essence-icon{width:52px;height:52px;margin-bottom:18px}
  .essence-card h3{font-size:28px}
  .partners-logos{column-gap:30px;row-gap:44px}
  .partners-logos img{max-width:138px;height:70px}
  .faq-question{gap:18px}
  .faq-answer p{padding-right:6px}
  .contact-form{padding:24px 18px;border-radius:18px}
  .contact-form-head{padding-bottom:22px;margin-bottom:24px}
  .footer-logo img{width:112px;height:48px}
  .footer-nav{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 18px}
}

@media(max-width:380px){
  :root{--container:93vw}
  .brand,.brand-logo{width:96px;height:42px}
  .header-actions{gap:8px}
  .catalog-link,.menu-toggle{width:37px;height:37px;flex-basis:37px}
  .hero h1{font-size:42px}
  .hero-lead{max-width:100%}
  .project-media{height:300px}
  .project-close{top:calc(var(--header) + 16px);width:38px;height:38px;margin-bottom:-38px}
  .process-dot span{width:36px;height:36px}
  .process-nav::before{top:17px}
  .process-image{height:225px}
  .partners-logos{column-gap:22px;row-gap:38px}
  .partners-logos img{max-width:128px;height:66px}
  .contact-info{grid-template-columns:38px minmax(0,1fr);gap:10px}
  .contact-info-icon{width:36px;height:36px}
  .footer-nav{grid-template-columns:1fr}
}

@media(hover:none){
  .about-service:hover{transform:none}
  .essence-card:hover{transform:none}
  .partners-logos img:hover{transform:none}
  .gallery-item:hover img{transform:none}
}

/* X do projeto ocupa espaço somente quando expandido, evitando encostar no divisor do conteúdo */
.project-close{max-height:0;margin-top:0;margin-bottom:0;overflow:hidden;transition:opacity .3s ease,transform .38s var(--ease),background .25s ease,visibility .3s ease,max-height .42s var(--ease),margin .42s var(--ease)}
.project.is-expanded .project-close{max-height:42px;margin-top:18px;margin-bottom:28px;overflow:visible}

@media(max-width:700px){
  .project.is-expanded .project-close{max-height:40px;margin-top:14px;margin-bottom:24px}
}
@media(max-width:380px){
  .project.is-expanded .project-close{max-height:38px;margin-top:12px;margin-bottom:22px}
}

/* Em touch, ações importantes não dependem de hover */
@media(hover:none){
  .about-service:hover{background:transparent;border-bottom-color:var(--line)}
  .about-service:hover .about-icon{background:rgba(239,56,58,.09);transform:none}
  .about-service:hover h3{color:var(--ink)}
  .essence-card:hover{background:#fff;border-color:var(--line);color:var(--ink);box-shadow:none}
  .essence-card:hover .essence-icon{background:rgba(239,56,58,.08);color:var(--red);transform:none}
  .essence-card:hover p{color:var(--muted)}
  .partners-logos img,.partners-logos img:hover{filter:none;opacity:1;transform:none}
  .gallery-item:hover img{filter:none}
  .gallery-zoom,.gallery-item:hover .gallery-zoom{opacity:.92;transform:translate(-50%,-50%) scale(.88)}
}


/* Etapa 11 — envio demonstrativo inteiramente dentro do botão */
@media(max-width:700px){
  .btn-submit,.btn-submit.is-loading,.btn-submit.is-success{--submit-width:100%;width:100%;min-width:100%;max-width:100%}
}
@media(prefers-reduced-motion:reduce){
  .btn-submit,.submit-state{transition:none}
  .submit-spinner{animation-duration:1.2s}
}


/* Etapa 12 — ajuste fino Reciclando Vidas + ícone pós-industrial */
/* Símbolo de reciclagem clássico, nítido e simétrico */
.about-icon-recycle .recycle-symbol{
  display:block;
  font-family:"Segoe UI Symbol","Arial Unicode MS",Arial,sans-serif;
  font-size:36px;
  font-weight:400;
  line-height:1;
  letter-spacing:0;
  color:var(--red);
  transform:none;
}
.about-service:hover .about-icon-recycle .recycle-symbol{transform:none}

/* O X acompanha a coluna direita sem criar um grande vazio entre os conteúdos. */
.project-close{
  position:sticky;
  top:calc(var(--header) + 42px);
  z-index:8;
  display:block;
  width:42px;
  height:42px;
  max-height:none;
  margin-top:18px;
  margin-left:calc(100% + 24px);
  margin-right:0;
  margin-bottom:-42px;
  overflow:visible;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:scale(.88) rotate(-18deg);
  transition:opacity .3s ease,transform .38s var(--ease),background .25s ease,visibility .3s ease;
}
.project.is-expanded .project-close{
  max-height:none;
  margin-top:18px;
  margin-bottom:-42px;
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:scale(1) rotate(0);
}
.project-extra-inner{
  overflow:hidden;
  padding-top:0;
}
.project-extra-inner h3{
  margin:26px 0 18px;
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,.25);
}

/* Em telas onde não há espaço lateral, o X permanece dentro da coluna. */
@media(max-width:1240px){
  .project-close,
  .project.is-expanded .project-close{margin-left:calc(100% - 42px)}
}
@media(max-width:960px){
  .project-close,
  .project.is-expanded .project-close{
    top:calc(var(--header) + 24px);
    margin-top:14px;
    margin-left:calc(100% - 42px);
    margin-bottom:-42px;
  }
  .project-extra-inner h3{margin-top:22px;padding-top:24px}
}
@media(max-width:700px){
  .about-icon-recycle .recycle-symbol{font-size:31px}
  .project-close,
  .project.is-expanded .project-close{
    width:40px;
    height:40px;
    top:calc(var(--header) + 20px);
    margin-top:12px;
    margin-left:calc(100% - 40px);
    margin-bottom:-40px;
  }
  .project-extra-inner h3{margin-top:20px;padding-top:22px}
}
@media(max-width:380px){
  .about-icon-recycle .recycle-symbol{font-size:29px}
  .project-close,
  .project.is-expanded .project-close{
    width:38px;
    height:38px;
    top:calc(var(--header) + 16px);
    margin-left:calc(100% - 38px);
    margin-bottom:-38px;
  }
}

/* Etapa 13 — mantém a identidade visual dos campos durante preenchimento/autofill */
.contact-form input:focus,
.contact-form textarea:focus{
  background:#fafafa;
}
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form input:-webkit-autofill:active,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill:active{
  -webkit-text-fill-color:var(--ink);
  caret-color:var(--ink);
  -webkit-box-shadow:0 0 0 1000px #fafafa inset !important;
  box-shadow:0 0 0 1000px #fafafa inset !important;
  background-color:#fafafa !important;
  transition:background-color 9999s ease-out 0s;
}
.contact-form input:not(:placeholder-shown),
.contact-form textarea:not(:placeholder-shown){
  background:#fafafa;
}


/* Etapa 14 — ícone de reciclagem com o mesmo peso visual dos demais ícones do About */
.about-icon-recycle .recycle-symbol{display:none!important}
.about-icon-recycle .recycle-icon{
  width:31px;
  height:31px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round;
  vector-effect:non-scaling-stroke;
}
@media(max-width:700px){
  .about-icon-recycle .recycle-icon{width:24px;height:24px;stroke-width:1.65}
}


/* Etapa 15 — padronização dos três ícones do About em peso visual mais forte */
.about-icon svg{
  width:33px;
  height:33px;
  stroke-width:2.35;
  vector-effect:non-scaling-stroke;
}
.about-icon-recycle .recycle-icon{display:none!important}
.about-icon-recycle .recycle-symbol{
  display:block!important;
  font-family:"Segoe UI Symbol","Noto Sans Symbols 2","Arial Unicode MS",sans-serif;
  font-size:35px;
  font-weight:600;
  line-height:1;
  color:currentColor;
  transform:translateY(-1px);
}
.about-service:hover .about-icon-recycle .recycle-symbol{transform:translateY(-1px)}
@media(max-width:700px){
  .about-icon svg{width:26px;height:26px;stroke-width:2.35}
  .about-icon-recycle .recycle-symbol{font-size:30px}
}
@media(max-width:380px){
  .about-icon-recycle .recycle-symbol{font-size:28px}
}


/* Etapa 16 — menu mobile lateral + catálogo no menu + reciclagem com peso intermediário */
/* O símbolo de reciclagem mantém leitura forte, mas com traço mais equilibrado. */
.about-icon-recycle .recycle-symbol{display:none!important}
.about-icon-recycle .recycle-icon{display:none!important}
.about-icon-recycle .recycle-icon-clean{
  display:block!important;
  width:33px;
  height:33px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.05;
  stroke-linecap:round;
  stroke-linejoin:round;
  vector-effect:non-scaling-stroke;
}
.mobile-catalog-link,.menu-backdrop{display:none}

/* Hambúrguer com três linhas perfeitamente centralizadas. */
.menu-toggle span{
  left:50%;
  width:20px;
  height:2px;
  transform:translateX(-50%);
  transform-origin:center;
}
.menu-toggle span:nth-child(1){top:14px}
.menu-toggle span:nth-child(2){top:20px}
.menu-toggle span:nth-child(3){top:26px}
.menu-toggle.is-active span:nth-child(1){top:20px;transform:translateX(-50%) rotate(45deg)}
.menu-toggle.is-active span:nth-child(2){opacity:0;transform:translateX(-50%) scaleX(.35)}
.menu-toggle.is-active span:nth-child(3){top:20px;transform:translateX(-50%) rotate(-45deg)}

@media(max-width:700px){
  /* No celular, catálogo sai do header e vive apenas dentro da gaveta. */
  .header-actions>.catalog-link{display:none}
  .header-actions{margin-left:auto}

  .main-nav{
    left:auto!important;
    right:0!important;
    width:min(88vw,390px)!important;
    height:calc(100svh - var(--header))!important;
    padding:24px 24px 34px!important;
    background:#fff!important;
    box-shadow:-22px 0 60px rgba(15,16,18,.14);
    transform:translateX(105%)!important;
    z-index:102;
  }
  .main-nav.is-open{transform:translateX(0)!important}
  .main-nav a,.site-header.is-scrolled .main-nav a{
    font-size:18px;
    padding:14px 0;
  }
  .main-nav .mobile-catalog-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    width:100%;
    margin-top:24px;
    padding:15px 16px;
    border:1px solid var(--red);
    border-radius:10px;
    color:var(--red)!important;
    font-size:12px!important;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.05em;
    background:#fff;
  }
  .main-nav .mobile-catalog-link svg{
    width:18px;
    height:18px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.9;
    stroke-linecap:round;
    stroke-linejoin:round;
    flex:0 0 auto;
  }
  .menu-backdrop{
    display:block;
    position:fixed;
    inset:var(--header) 0 0;
    z-index:95;
    background:rgba(12,13,15,.34);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .3s ease,visibility .3s ease;
  }
  body.menu-open .menu-backdrop{opacity:1;visibility:visible;pointer-events:auto}
  .about-icon-recycle .recycle-icon-clean{width:27px;height:27px;stroke-width:2.05}
}
@media(max-width:380px){
  .main-nav{width:min(90vw,350px)!important;padding-inline:20px!important}
  .menu-toggle span{width:18px}
  .about-icon-recycle .recycle-icon-clean{width:25px;height:25px}
}

/* Etapa 18 — integração WordPress global */
.brand-logo-mobile{display:none}
.ms-honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important;opacity:0!important;pointer-events:none!important}
.footer-developer img{display:block;max-width:104px;max-height:28px;width:auto;height:auto;object-fit:contain}
.btn-submit.is-error-state{background:#25272b;border-color:#25272b;color:#fff}
.btn-submit.is-error-state .submit-state-default,.btn-submit.is-error-state .submit-state-loading,.btn-submit.is-error-state .submit-state-success{opacity:0;transform:translateY(-10px)}
.btn-submit.is-error-state .submit-state-error{opacity:1;transform:none}

@media(max-width:700px){
  .brand-logo-desktop{display:none}
  .brand-logo-mobile{display:block}
}

/* Etapa 20 — parceiros gerenciados pelo WordPress */
.partner-logo-item{display:flex;align-items:center;justify-content:center;min-width:0;min-height:92px}
.partner-logo-item img{width:100%;max-width:184px;height:92px;object-fit:contain;justify-self:center;filter:grayscale(1) saturate(0) contrast(.92) brightness(.72);opacity:.72;transition:transform .35s var(--ease),filter .38s ease,opacity .35s ease}
a.partner-logo-item:hover img{transform:translateY(-5px) scale(1.035);filter:grayscale(0) saturate(1) contrast(1) brightness(1) drop-shadow(0 1px 1px rgba(20,20,22,.22)) drop-shadow(0 0 8px rgba(20,20,22,.08));opacity:1}
/* Estado vazio padrão — reutilizável nas seções integradas ao WordPress */
.site-empty-state{width:100%;min-height:250px;margin-top:42px;padding:48px 28px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;border:1px solid #e6e7e9;border-radius:22px;background:#f7f7f8;color:var(--text);box-shadow:0 12px 34px rgba(18,20,22,.035)}
.site-empty-state__icon{display:grid;place-items:center;width:62px;height:62px;margin-bottom:19px;border-radius:18px;background:#fff;border:1px solid #e2e3e5;color:#8d9095;box-shadow:0 8px 24px rgba(18,20,22,.05)}
.site-empty-state__icon svg{width:29px;height:29px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.site-empty-state__copy{display:flex;flex-direction:column;align-items:center;gap:7px;max-width:500px}
.site-empty-state__copy strong{font-size:16px;line-height:1.35;font-weight:700;letter-spacing:-.018em}
.site-empty-state__copy span{color:var(--muted);font-size:13px;line-height:1.55}
.partners-empty-site{margin-inline:auto}
@media(max-width:1120px){.partner-logo-item{min-height:84px}.partner-logo-item img{max-width:166px;height:84px}}
@media(max-width:820px){.partner-logo-item{min-height:78px}.partner-logo-item img{max-width:155px;height:78px}}
@media(max-width:700px){.partner-logo-item{min-height:74px}.partner-logo-item img{max-width:150px;height:74px}}
@media(hover:none),(pointer:coarse){.partner-logo-item img{filter:none;opacity:1}}

@media(max-width:560px){.site-empty-state{min-height:220px;margin-top:32px;padding:38px 20px;border-radius:18px}.site-empty-state__icon{width:56px;height:56px;margin-bottom:16px;border-radius:16px}.site-empty-state__icon svg{width:26px;height:26px}.site-empty-state__copy strong{font-size:15px}.site-empty-state__copy span{font-size:12.5px}}


/* Etapa 24 — parceiros: logos maiores e padronizadas */
.partners-logos{column-gap:52px;row-gap:74px}
.partner-logo-item{min-height:108px;padding:5px 0}
.partner-logo-item img{width:100%;max-width:202px;height:104px;object-fit:contain}
@media(max-width:1120px){
  .partner-logo-item{min-height:98px}.partner-logo-item img{max-width:184px;height:94px}
}
@media(max-width:820px){
  .partner-logo-item{min-height:88px}.partner-logo-item img{max-width:170px;height:84px}
}
@media(max-width:700px){
  .partner-logo-item{min-height:82px}.partner-logo-item img{max-width:158px;height:78px}
}
@media(max-width:430px){
  .partner-logo-item{min-height:76px}.partner-logo-item img{max-width:146px;height:72px}
}

/* Etapa 25 — estado vazio reutilizável e transparente */
.site-empty-state{
  background:transparent;
  box-shadow:none;
  color:inherit;
  border-color:rgba(23,24,26,.16);
}
@supports (color:color-mix(in srgb,black 50%,white)){
  .site-empty-state{border-color:color-mix(in srgb,currentColor 18%,transparent)}
}
.site-empty-state__icon{
  background:transparent;
  box-shadow:none;
  color:inherit;
  border-color:rgba(23,24,26,.16);
}
@supports (color:color-mix(in srgb,black 50%,white)){
  .site-empty-state__icon{border-color:color-mix(in srgb,currentColor 18%,transparent)}
}
.site-empty-state__copy strong{color:inherit}
.site-empty-state__copy span{color:inherit;opacity:.58}
.gallery-empty-site,.partners-empty-site{margin-inline:auto}

/* Etapa 26 — parceiros: logos com presença visual maior */
.partners-logos{
  column-gap:58px;
  row-gap:76px;
}
.partner-logo-item{
  min-height:122px;
  padding:4px 0;
}
.partner-logo-item img,
.partners-logos img{
  width:100%;
  max-width:228px;
  height:116px;
  object-fit:contain;
}
@media(max-width:1120px){
  .partner-logo-item{min-height:110px}
  .partner-logo-item img,.partners-logos img{max-width:208px;height:104px}
}
@media(max-width:820px){
  .partner-logo-item{min-height:98px}
  .partner-logo-item img,.partners-logos img{max-width:188px;height:94px}
}
@media(max-width:700px){
  .partner-logo-item{min-height:90px}
  .partner-logo-item img,.partners-logos img{max-width:174px;height:86px}
}
@media(max-width:560px){
  .partners-logos{column-gap:28px;row-gap:46px}
  .partner-logo-item{min-height:84px}
  .partner-logo-item img,.partners-logos img{max-width:158px;height:80px}
}
@media(max-width:380px){
  .partner-logo-item img,.partners-logos img{max-width:146px;height:74px}
}

/* Etapa 27 — parceiros: arte interna das logos levemente ampliada */
.partner-logo-item{
  overflow:visible;
}
.partner-logo-item img,
.partners-logos img{
  max-width:238px;
  height:122px;
  transform:scale(1.07);
  transform-origin:center;
}
a.partner-logo-item:hover img{
  transform:translateY(-4px) scale(1.11);
}
@media(max-width:1120px){
  .partner-logo-item img,.partners-logos img{max-width:216px;height:110px;transform:scale(1.06)}
  a.partner-logo-item:hover img{transform:translateY(-4px) scale(1.10)}
}
@media(max-width:820px){
  .partner-logo-item img,.partners-logos img{max-width:196px;height:100px;transform:scale(1.055)}
}
@media(max-width:700px){
  .partner-logo-item img,.partners-logos img{max-width:182px;height:92px;transform:scale(1.045)}
}
@media(max-width:560px){
  .partner-logo-item img,.partners-logos img{max-width:166px;height:84px;transform:scale(1.035)}
}
@media(max-width:380px){
  .partner-logo-item img,.partners-logos img{max-width:154px;height:78px;transform:scale(1.025)}
}
@media(hover:none),(pointer:coarse){
  .partner-logo-item img,.partners-logos img{transform:none}
}


/* Etapa 28 — Processos integrados ao WordPress */
.processes-empty-site{margin-inline:auto}

/* Etapa 29 — conteúdo administrável */
.project-media-placeholder{width:100%;height:100%;display:grid;place-items:center;background:rgba(255,255,255,.08);color:rgba(255,255,255,.6);font-size:11px;text-transform:uppercase;letter-spacing:.12em}

@media (hover:none),(pointer:coarse){
  .process-image-open:hover img{transform:none;filter:none}
  .process-zoom{opacity:.92;transform:translate(-50%,-50%) scale(.88)}
}

/* Etapa 31 — Projeto Reciclando Vidas: imagem limpa, sem box */
.project-media{
  border-radius:0;
  box-shadow:none;
  background:transparent;
}
.project-media::after{
  content:none;
  display:none;
}
.project-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  border:0;
  border-radius:0;
  box-shadow:none;
}

/* Etapa 33 — FAQ dinâmico */
.faq-empty-site{margin-top:0;min-height:290px;align-self:stretch}
@media(max-width:960px){.faq-empty-site{min-height:240px}}
@media(max-width:560px){.faq-empty-site{min-height:220px;margin-top:0}}

/* Etapa 37 — 403/404 no mesmo padrão visual do site */
.ms-error-page{margin:0;background:#161619;color:#fff;overflow-x:hidden}
.ms-error-page .error-main{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  padding-top:var(--header);
  overflow:hidden;
  isolation:isolate;
  background:#19191b;
  color:#fff;
}
.ms-error-page .error-grid{
  position:absolute;
  inset:0;
  z-index:-3;
  background-image:linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(90deg,#000 0 58%,transparent 88%);
  -webkit-mask-image:linear-gradient(90deg,#000 0 58%,transparent 88%);
}
.ms-error-page .error-glow{
  position:absolute;
  width:min(580px,48vw);
  aspect-ratio:1;
  right:-12vw;
  top:12%;
  z-index:-2;
  border-radius:50%;
  background:radial-gradient(circle,rgba(239,56,58,.14) 0%,rgba(239,56,58,.045) 34%,transparent 70%);
  pointer-events:none;
}
.ms-error-page .error-code-bg{
  position:absolute;
  right:-.035em;
  top:50%;
  transform:translateY(-52%);
  z-index:-1;
  font-family:'Exo 2','Manrope',sans-serif;
  font-size:clamp(260px,36vw,620px);
  line-height:.74;
  font-weight:800;
  font-style:italic;
  letter-spacing:-.09em;
  color:rgba(255,255,255,.026);
  user-select:none;
  pointer-events:none;
  white-space:nowrap;
}
.ms-error-page .error-content{position:relative;z-index:2;padding:88px 0 82px}
.ms-error-page .error-content>*{max-width:720px}
.ms-error-page .error-icon{
  width:58px;
  height:58px;
  margin-bottom:27px;
  display:grid;
  place-items:center;
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  border-radius:14px;
  background:rgba(255,255,255,.055);
  backdrop-filter:blur(8px);
}
.ms-error-page .error-icon svg{width:29px;height:29px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.ms-error-page.ms-error-403 .error-icon{color:var(--red);border-color:rgba(239,56,58,.34);background:rgba(239,56,58,.07)}
.ms-error-page.ms-error-403 .error-icon-lock{stroke-width:1.75}
.ms-error-page.ms-error-404 .error-icon-broken{stroke-width:1.6}
.ms-error-page .error-eyebrow{color:var(--red);margin-bottom:20px}
.ms-error-page .error-content h1{margin:0 0 24px;font-size:clamp(58px,7vw,96px);color:#fff;max-width:850px}
.ms-error-page .error-content>p{max-width:590px;margin:0 0 34px;font-size:16px;line-height:1.78;color:rgba(255,255,255,.70)}
.ms-error-page .error-primary{width:max-content}
.ms-error-page .error-primary svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;transition:transform .28s ease}
.ms-error-page .error-primary:hover svg{transform:translateX(3px)}
.ms-error-page .site-footer{position:relative;z-index:2}

@media(max-width:960px){
  .ms-error-page .error-main{min-height:calc(100svh - 1px)}
  .ms-error-page .error-code-bg{right:-.08em;font-size:clamp(230px,52vw,430px)}
  .ms-error-page .error-content{padding:74px 0 70px}
  .ms-error-page .error-content h1{font-size:clamp(52px,9.2vw,78px)}
}
@media(max-width:700px){
  .ms-error-page .error-grid{background-size:52px 52px;mask-image:linear-gradient(to bottom,#000 0 62%,transparent 94%);-webkit-mask-image:linear-gradient(to bottom,#000 0 62%,transparent 94%)}
  .ms-error-page .error-glow{width:86vw;right:-42vw;top:16%}
  .ms-error-page .error-code-bg{top:29%;right:-.05em;transform:none;font-size:58vw}
  .ms-error-page .error-content{padding:72px 0 64px}
  .ms-error-page .error-icon{width:52px;height:52px;margin-bottom:23px;border-radius:13px}
  .ms-error-page .error-icon svg{width:26px;height:26px}
  .ms-error-page .error-content h1{font-size:clamp(44px,13vw,64px);max-width:540px}
  .ms-error-page .error-content>p{font-size:14px;line-height:1.7;max-width:490px}
}
@media(max-width:420px){
  .ms-error-page .error-content{padding:62px 0 58px}
  .ms-error-page .error-content h1{font-size:clamp(40px,14vw,56px)}
  .ms-error-page .error-primary{width:100%;min-height:52px}
}

/* Etapa 39 — refinamento exclusivo da versão mobile */
@media(max-width:700px){
  :root{
    --header:80px;
    --container:calc(100vw - 48px);
  }

  html,body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }
  .container{
    width:var(--container);
    max-width:calc(100vw - 48px);
    margin-inline:auto;
  }
  main,section,footer,
  .hero-inner,.section-heading,.section-heading-split,
  .project-layout,.process-layout,.process-content,
  .gallery-grid,.partners-logos,.faq-layout,
  .contact-layout,.contact-form-wrap,.contact-form{
    min-width:0;
    max-width:100%;
  }
  img,svg,video,iframe{max-width:100%}

  /* Header mobile mais alto e com melhor presença. */
  .site-header{height:var(--header)}
  .header-inner{
    height:var(--header);
    gap:14px;
    padding:0;
  }
  .brand,.brand-logo{
    width:114px;
    height:50px;
  }
  .header-actions{
    min-width:44px;
    gap:0;
  }

  /* Hambúrguer: três barras matematicamente centralizadas no botão. */
  .menu-toggle{
    display:block;
    position:relative;
    flex:0 0 44px;
    width:44px;
    height:44px;
    padding:0;
    margin:0;
    border-radius:11px;
    line-height:0;
  }
  .menu-toggle span{
    position:absolute;
    left:50%!important;
    top:50%!important;
    width:20px;
    height:2px;
    margin:0;
    border-radius:999px;
    transform-origin:center center;
  }
  .menu-toggle span:nth-child(1){transform:translate(-50%,-50%) translateY(-6px)}
  .menu-toggle span:nth-child(2){transform:translate(-50%,-50%)}
  .menu-toggle span:nth-child(3){transform:translate(-50%,-50%) translateY(6px)}
  .menu-toggle.is-active span:nth-child(1){transform:translate(-50%,-50%) rotate(45deg)}
  .menu-toggle.is-active span:nth-child(2){opacity:0;transform:translate(-50%,-50%) scaleX(.35)}
  .menu-toggle.is-active span:nth-child(3){transform:translate(-50%,-50%) rotate(-45deg)}

  /* Gaveta acompanha a nova altura do header e nunca extrapola a tela. */
  .main-nav{
    top:var(--header)!important;
    width:min(calc(100vw - 32px),390px)!important;
    max-width:calc(100vw - 32px)!important;
    height:calc(100svh - var(--header))!important;
    padding:28px 24px 38px!important;
    overflow-y:auto;
    overscroll-behavior:contain;
  }
  .menu-backdrop{inset:var(--header) 0 0}

  /* Remove negativos que faziam alguns blocos parecerem colados nas laterais. */
  .about-service{
    margin-inline:0;
    padding-inline:0;
  }
  .hero-copy,.project-copy,.process-copy,.faq-intro,.contact-content{
    width:100%;
    max-width:100%;
  }
  .hero-actions .btn{
    max-width:100%;
  }
  .contact-form input,.contact-form textarea,
  .form-row,.form-footer{
    max-width:100%;
    min-width:0;
  }
}

@media(max-width:420px){
  :root{
    --header:78px;
    --container:calc(100vw - 40px);
  }
  .container{max-width:calc(100vw - 40px)}
  .brand,.brand-logo{width:106px;height:47px}
  .menu-toggle{flex-basis:42px;width:42px;height:42px}
  .menu-toggle span{width:19px}
  .main-nav{
    width:min(calc(100vw - 22px),360px)!important;
    max-width:calc(100vw - 22px)!important;
    padding-inline:22px!important;
  }
}
