:root{
  --bg:#ffffff;
  --surface:#f6f6f7;
  --surface-2:#ededee;
  --ink:#151515;
  --muted:#67676c;
  --line:#e7e7e9;
  --red:#e31920;
  --red-dark:#b90f16;
  --black:#0e0e0f;
  --radius:26px;
  --shadow:0 18px 50px rgba(0,0,0,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1180px,calc(100% - 40px));margin:0 auto}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,.05);
}
.nav-wrap{height:78px;display:flex;align-items:center;gap:28px}
.brand{
  display:inline-flex;align-items:baseline;
  font-family:"Rajdhani",sans-serif;font-weight:700;
  font-size:31px;line-height:1;letter-spacing:-1.8px;
}
.brand-z{color:var(--red)}
.brand small{font-family:"Inter",sans-serif;font-size:7px;letter-spacing:3px;margin-left:7px;color:#68686d}
.nav{display:flex;gap:28px;margin-left:auto;font-size:14px;font-weight:600;color:#55555a}
.nav a{transition:.2s ease}
.nav a:hover{color:var(--red)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:50px;padding:0 24px;border-radius:999px;
  font-size:14px;font-weight:800;letter-spacing:.01em;
  transition:.2s ease;border:1px solid transparent;
}
.btn:hover{transform:translateY(-2px)}
.btn-small{min-height:42px;padding:0 18px;font-size:13px}
.btn-primary{background:var(--red);color:white;box-shadow:0 10px 30px rgba(227,25,32,.22)}
.btn-primary:hover{background:var(--red-dark)}
.btn-outline{border-color:#cfcfd2;background:white}
.btn-outline:hover{border-color:#999}
.btn-ghost{background:#f0f0f1}
.btn-ghost:hover{background:#e5e5e7}
.btn-dark{background:var(--black);color:white}
.btn-light{background:white;color:#111}

.hero{
  position:relative;overflow:hidden;
  padding:78px 0 82px;
  background:linear-gradient(180deg,#fff 0%,#fbfbfc 100%);
}
.hero-glow{position:absolute;border-radius:50%;filter:blur(20px);pointer-events:none}
.hero-glow-a{width:360px;height:360px;background:rgba(227,25,32,.07);right:2%;top:2%}
.hero-glow-b{width:300px;height:300px;background:rgba(0,0,0,.04);left:6%;bottom:-100px}
.hero-grid{position:relative;display:grid;grid-template-columns:.9fr 1.1fr;gap:56px;align-items:center}
.eyebrow{
  display:inline-block;
  font-size:11px;font-weight:800;letter-spacing:.18em;color:var(--red);
  margin-bottom:15px
}
.hero h1,.section h2,.custom-section h2,.instagram-section h2,.contact-section h2{
  margin:0;letter-spacing:-.05em;line-height:1.02;
}
.hero h1{font-size:clamp(48px,6vw,78px);max-width:650px}
.hero h1 span{color:var(--red)}
.hero-copy>p{
  color:var(--muted);font-size:18px;max-width:650px;margin:24px 0 28px
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-meta{
  margin-top:30px;display:flex;gap:18px;flex-wrap:wrap;
  font-size:12px;font-weight:600;color:#68686d
}
.hero-meta span{display:inline-flex;align-items:center;gap:7px}
.hero-meta i{width:6px;height:6px;background:var(--red);border-radius:50%}
.hero-logo-card{
  min-height:430px;display:flex;align-items:center;justify-content:center;
  background:white;border:1px solid var(--line);border-radius:32px;
  box-shadow:var(--shadow);overflow:hidden
}
.hero-logo-card img{width:100%;height:auto;transform:scale(1.03)}

.section{padding:100px 0}
.section-heading{display:grid;grid-template-columns:1fr .85fr;gap:60px;align-items:end;margin-bottom:42px}
.section-heading h2,.custom-section h2,.instagram-section h2,.contact-section h2{font-size:clamp(36px,4vw,58px)}
.section-heading p,.instagram-section p,.contact-section p,.custom-section p{margin:0;color:var(--muted);font-size:16px}

.gallery{display:grid;grid-template-columns:repeat(12,1fr);gap:18px}
.gallery-card{
  grid-column:span 4;min-height:390px;border-radius:var(--radius);
  background:#f4f4f5;overflow:hidden;position:relative;border:1px solid #ededee
}
.gallery-card:nth-child(1),.gallery-card:nth-child(6){grid-column:span 8}
.gallery-placeholder{height:300px;position:relative;overflow:hidden;background:linear-gradient(145deg,#f8f8f8,#e9e9ea)}
.gallery-info{padding:22px 24px 24px;display:flex;flex-direction:column;gap:4px}
.gallery-info strong{font-size:18px}
.gallery-info span{font-size:13px;color:var(--muted)}
.shape{position:absolute;display:block}
.shape-a{width:170px;height:170px;border-radius:36px;background:#161616;left:16%;top:17%;transform:rotate(12deg)}
.shape-b{width:130px;height:130px;border-radius:50%;border:22px solid var(--red);right:19%;bottom:7%}
.shape-c{width:160px;height:220px;background:linear-gradient(180deg,#ec1b24,#9f0e13);clip-path:polygon(50% 0,100% 25%,80% 100%,20% 100%,0 25%);left:28%;top:9%}
.shape-d{width:100px;height:12px;background:#1c1c1d;right:14%;top:38%;transform:rotate(-25deg)}
.shape-e{width:220px;height:96px;border-radius:30px;background:#222;left:15%;top:31%;box-shadow:0 22px 0 #d8d8db}
.shape-f{width:72px;height:72px;border-radius:18px;background:var(--red);right:16%;top:17%;transform:rotate(14deg)}
.shape-g{width:180px;height:180px;border:24px solid #222;border-radius:40px;left:18%;top:16%;transform:rotate(45deg)}
.shape-h{width:75px;height:185px;background:var(--red);right:18%;bottom:6%;border-radius:999px}
.shape-i{width:210px;height:210px;border-radius:50%;background:conic-gradient(var(--red) 0 25%,#222 25% 50%,#d9d9db 50% 75%,#fff 75%);left:19%;top:13%;box-shadow:0 10px 35px rgba(0,0,0,.08)}
.shape-j{width:80px;height:80px;border:14px solid #222;right:10%;bottom:10%}
.shape-k{width:320px;height:120px;background:#1a1a1b;left:10%;top:31%;clip-path:polygon(0 40%,72% 40%,85% 0,100% 50%,85% 100%,72% 60%,0 60%)}
.shape-l{width:110px;height:110px;background:var(--red);right:12%;top:17%;clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%)}

.custom-section{background:#101011;color:white;padding:96px 0}
.custom-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}
.eyebrow-light{color:#ff4c52}
.custom-section p{color:#b8b8bc;margin-top:22px;max-width:560px}
.custom-card{
  background:#19191b;border:1px solid #2a2a2d;border-radius:30px;
  padding:32px;display:grid;grid-template-columns:44px 1fr;gap:8px 16px;
}
.custom-card .custom-number{
  width:36px;height:36px;border-radius:50%;display:grid;place-items:center;
  background:var(--red);font-size:12px;font-weight:800;grid-row:span 2;margin-top:2px
}
.custom-card strong{font-size:16px}
.custom-card span{color:#a8a8ad;font-size:13px;margin-bottom:18px}
.custom-card .btn{grid-column:1/-1;margin-top:10px}

.products{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.product-card{border:1px solid var(--line);border-radius:26px;overflow:hidden;background:white;transition:.25s ease}
.product-card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.product-image{height:280px;display:grid;place-items:center;position:relative;overflow:hidden}
.product-image span{
  font-family:"Rajdhani";font-size:110px;font-weight:700;
  color:rgba(255,255,255,.9);text-shadow:0 8px 25px rgba(0,0,0,.12)
}
.product-a{background:linear-gradient(140deg,#1b1b1c,#444)}
.product-b{background:linear-gradient(140deg,#e31920,#85090d)}
.product-c{background:linear-gradient(140deg,#d9d9dc,#8c8c91)}
.product-content{padding:24px}
.product-tag{font-size:10px;font-weight:800;letter-spacing:.12em;color:var(--red);text-transform:uppercase}
.product-content h3{font-size:19px;margin:8px 0 6px}
.product-content p{font-size:13px;color:var(--muted);margin:0 0 18px}
.text-link{font-size:13px;font-weight:800}
.text-link:hover{color:var(--red)}
.center-action{text-align:center;margin-top:34px}

.instagram-section{padding:90px 0;background:#f3f3f4}
.instagram-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;align-items:center}
.instagram-section p{margin:20px 0 26px;max-width:500px}
.social-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.social-tile{
  min-height:210px;border-radius:24px;display:grid;place-items:center;
  font-family:"Rajdhani";font-size:48px;font-weight:700;letter-spacing:-.04em
}
.t1{background:#151515;color:#f21b24}
.t2{background:#fff;color:#111;border:1px solid var(--line)}
.t3{background:#e31920;color:white}
.t4{background:#d9d9dc;color:#333}

.contact-section{padding:90px 0}
.contact-card{
  border:1px solid var(--line);border-radius:32px;padding:42px 46px;
  display:flex;align-items:center;justify-content:space-between;gap:30px;
  box-shadow:0 18px 50px rgba(0,0,0,.05)
}
.contact-card p{margin-top:12px}
.contact-actions{display:flex;gap:10px;flex-wrap:wrap}

footer{border-top:1px solid var(--line);padding:42px 0;background:#fff}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr auto;gap:30px;align-items:center}
.footer-brand p{font-size:12px;color:var(--muted);margin:10px 0 0}
.footer-links{display:flex;gap:20px;font-size:13px;font-weight:700;color:#555}
.footer-links a:hover{color:var(--red)}
.footer-copy{font-size:12px;color:#8a8a8f}

.floating-whatsapp{
  position:fixed;right:22px;bottom:22px;z-index:60;
  width:52px;height:52px;border-radius:50%;display:grid;place-items:center;
  background:#171718;color:white;box-shadow:0 12px 28px rgba(0,0,0,.22);
  transition:.2s ease
}
.floating-whatsapp:hover{transform:translateY(-3px);background:var(--red)}
.floating-whatsapp span{font-size:11px;font-weight:900;letter-spacing:.04em}

@media (max-width: 980px){
  .nav{display:none}
  .nav-wrap{justify-content:space-between}
  .nav-wrap .btn-small{margin-left:auto}
  .hero{padding-top:50px}
  .hero-grid,.custom-grid,.instagram-grid,.section-heading{grid-template-columns:1fr}
  .hero-logo-card{min-height:auto}
  .section-heading{gap:18px}
  .gallery-card,.gallery-card:nth-child(1),.gallery-card:nth-child(6){grid-column:span 6}
  .products{grid-template-columns:1fr 1fr}
  .product-card:last-child{grid-column:1/-1}
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .container{width:min(100% - 28px,1180px)}
  .site-header .btn-small{display:none}
  .hero{padding:44px 0 60px}
  .hero h1{font-size:50px}
  .hero-copy>p{font-size:16px}
  .hero-actions .btn{width:100%}
  .hero-meta{display:grid;gap:9px}
  .hero-logo-card{border-radius:22px}
  .section{padding:72px 0}
  .section-heading h2,.custom-section h2,.instagram-section h2,.contact-section h2{font-size:40px}
  .gallery{grid-template-columns:1fr}
  .gallery-card,.gallery-card:nth-child(1),.gallery-card:nth-child(6){grid-column:auto;min-height:360px}
  .custom-section{padding:72px 0}
  .custom-grid{gap:35px}
  .custom-card{padding:24px}
  .products{grid-template-columns:1fr}
  .product-card:last-child{grid-column:auto}
  .instagram-section{padding:72px 0}
  .social-tile{min-height:150px;font-size:38px}
  .contact-section{padding:72px 0}
  .contact-card{padding:30px 24px;display:block}
  .contact-actions{margin-top:24px}
  .contact-actions .btn{width:100%}
}


/* Fotos temporárias para visualizar o layout completo */
.gallery-photo,
.product-photo{
  background:#ececee;
}
.gallery-photo img,
.product-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}
.gallery-card:hover .gallery-photo img,
.product-card:hover .product-photo img{
  transform:scale(1.035);
}
.product-photo{
  height:280px;
}







/* Cabeçalho ZRV Studios:
   ZRV é a arte original recortada; STUDIOS fica pequeno ao lado. */
.header-logo{
  display:inline-flex;
  align-items:center;
  gap:8px;
  flex:0 0 auto;
  height:44px;
  line-height:1;
}
.header-logo img{
  display:block;
  width:94px;
  height:auto;
  max-width:none;
  object-fit:contain;
}
.header-logo-studios{
  display:inline-block;
  margin-top:2px;
  color:#66666b;
  font-family:"Inter",system-ui,sans-serif;
  font-size:8px;
  font-weight:700;
  letter-spacing:2.8px;
  white-space:nowrap;
}
@media (max-width:640px){
  .header-logo{
    gap:6px;
    height:40px;
  }
  .header-logo img{
    width:82px;
  }
  .header-logo-studios{
    font-size:7px;
    letter-spacing:2.3px;
  }
}
