/* Criativeness — folha de estilo partilhada */

:root{
  --ink: #16191c;
  --ink-soft: #454b52;
  --muted: #6c7480;
  --bg: #ffffff;
  --bg-soft: #f6f4f0;
  --line: #e7e3db;
  --accent: #c25b1f;
  --accent-dark: #9a4515;
  --accent-soft: #fbeee3;
  --footer-bg: #14181c;
  --radius: 14px;
  --shadow: 0 8px 24px -12px rgba(20,20,20,.18);
  --maxw: 1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3{line-height:1.15;margin:0 0 .5em;font-weight:800;letter-spacing:-0.02em;}
p{margin:0 0 1em;color:var(--ink-soft);}
.container{max-width:var(--maxw);margin:0 auto;padding:0 28px;}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  color:var(--accent-dark);margin-bottom:14px;
}
.eyebrow::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--accent);}

/* Header */
header.site{
  position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 28px;max-width:var(--maxw);margin:0 auto;
}
.logo{font-weight:800;font-size:19px;letter-spacing:-0.01em;display:flex;align-items:center;gap:8px;}
.logo .dot{width:9px;height:9px;border-radius:50%;background:var(--accent);}
.nav-links{display:flex;gap:30px;font-size:15px;font-weight:600;}
.nav-links a{color:var(--ink-soft);padding:6px 0;border-bottom:2px solid transparent;transition:.15s;}
.nav-links a:hover,.nav-links a.active{color:var(--ink);border-color:var(--accent);}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 22px;border-radius:999px;font-weight:700;font-size:15px;
  transition:.15s; border:1px solid transparent; cursor:pointer;
}
.btn-primary{background:var(--ink);color:#fff;}
.btn-primary:hover{background:var(--accent-dark);}
.btn-outline{border-color:var(--line);color:var(--ink);background:#fff;}
.btn-outline:hover{border-color:var(--ink);}
.btn-accent{background:var(--accent);color:#fff;}
.btn-accent:hover{background:var(--accent-dark);}

/* Hero */
.hero{padding:72px 0 56px;background:var(--bg-soft);}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center;}
.hero h1{font-size:clamp(34px,4.6vw,54px);}
.hero .lede{font-size:18px;max-width:46ch;}
.hero-actions{display:flex;gap:14px;margin-top:26px;flex-wrap:wrap;}
.hero-media{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);}
.hero-media img{width:100%;height:420px;object-fit:cover;}

/* Sections */
section{padding:64px 0;}
section.tight{padding:44px 0;}
.section-head{max-width:640px;margin-bottom:36px;}
.section-head h2{font-size:clamp(26px,3vw,36px);}
.section-head p{font-size:17px;}

/* Callout / achas que sabias */
.callout{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:0;
  background:var(--ink);color:#fff;border-radius:var(--radius);overflow:hidden;
}
.callout-media{min-height:280px;}
.callout-media img{width:100%;height:100%;object-fit:cover;}
.callout-body{padding:40px 44px;display:flex;flex-direction:column;justify-content:center;}
.callout-body .eyebrow{color:#f0c8a8;}
.callout-body .eyebrow::before{background:#f0c8a8;}
.callout-body h3{color:#fff;font-size:26px;}
.callout-body p{color:#d9dbe0;}
.callout-body a.link{color:#f0c8a8;font-weight:700;}

/* Value props */
.props{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.prop{padding:26px;border:1px solid var(--line);border-radius:var(--radius);background:#fff;}
.prop .icon{width:40px;height:40px;border-radius:10px;background:var(--accent-soft);color:var(--accent-dark);
  display:flex;align-items:center;justify-content:center;font-weight:800;margin-bottom:14px;}
.prop h3{font-size:18px;margin-bottom:6px;}
.prop p{font-size:15px;margin:0;}

/* Cards grid (blog / especialização) */
.grid{display:grid;gap:26px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-5{grid-template-columns:repeat(5,1fr);}

.card{
  border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff;
  transition:.18s ease; display:flex;flex-direction:column;
}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow);}
.card-media{aspect-ratio:16/10;overflow:hidden;background:var(--bg-soft);}
.card-media img{width:100%;height:100%;object-fit:cover;}
.card-body{padding:22px;display:flex;flex-direction:column;gap:10px;flex:1;}
.tag-line{font-size:13px;color:var(--muted);font-weight:600;}
.tag-line b{color:var(--accent-dark);}
.card h3{font-size:20px;margin:0;}
.card p{font-size:15px;margin:0;flex:1;}
.card .byline{font-size:13px;color:var(--muted);margin-top:4px;}
.card .cta{font-weight:700;color:var(--accent-dark);font-size:14px;}

.tile{border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff;transition:.18s;}
.tile:hover{transform:translateY(-3px);box-shadow:var(--shadow);}
.tile-media{aspect-ratio:3/4;overflow:hidden;}
.tile-media img{width:100%;height:100%;object-fit:cover;}
.tile-body{padding:16px;}
.tile h4{font-size:15px;margin:0 0 6px;}
.tile p{font-size:13px;margin:0;}

/* Product rows (loja) */
.product{
  display:grid;grid-template-columns:64px 1fr auto;gap:20px;align-items:center;
  padding:24px 0;border-bottom:1px solid var(--line);
}
.product:last-child{border-bottom:none;}
.product .badge{
  width:56px;height:56px;border-radius:12px;background:var(--accent-soft);color:var(--accent-dark);
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:20px;
}
.product h3{font-size:19px;margin:0 0 4px;}
.product p{margin:0;font-size:15px;}

/* Article page */
.article-head{max-width:820px;margin:0 auto;text-align:left;padding:56px 0 24px;}
.article-head .tag-line{font-size:14px;}
.article-head h1{font-size:clamp(30px,4vw,44px);margin-top:10px;}
.article-body{max-width:820px;margin:0 auto;font-size:18px;color:var(--ink-soft);}
.article-body p{margin-bottom:1.3em;}
.article-cta{
  max-width:820px;margin:36px auto 0;padding:28px 30px;border-radius:var(--radius);
  background:var(--bg-soft);border:1px solid var(--line);
  display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;
}
.article-cta p{margin:0;font-size:16px;color:var(--ink);font-weight:600;max-width:52ch;}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;}
.contact-card{border:1px solid var(--line);border-radius:var(--radius);padding:30px;background:var(--bg-soft);}
.contact-card dt{font-size:13px;color:var(--muted);text-transform:uppercase;letter-spacing:.04em;font-weight:700;margin-top:18px;}
.contact-card dt:first-child{margin-top:0;}
.contact-card dd{margin:4px 0 0;font-size:17px;font-weight:600;}
.form{display:flex;flex-direction:column;gap:14px;}
.form input,.form textarea{
  border:1px solid var(--line);border-radius:10px;padding:13px 15px;font:inherit;font-size:15px;background:#fff;
}
.form textarea{min-height:120px;resize:vertical;}
.form label{font-size:13px;font-weight:700;color:var(--muted);margin-bottom:-8px;}

/* Footer */
footer.site{background:var(--footer-bg);color:#cfd2d8;padding:44px 0 30px;margin-top:40px;}
.footer-grid{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:24px;}
.footer-grid .logo{color:#fff;}
footer.site p{color:#9aa0aa;margin:0;font-size:14px;}
.footer-links{display:flex;gap:22px;font-size:14px;}
.footer-links a{color:#cfd2d8;}
.footer-links a:hover{color:#fff;}
.footer-bottom{margin-top:30px;padding-top:20px;border-top:1px solid #2a2f35;font-size:13px;color:#7d838c;}

@media (max-width: 880px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-media img{height:280px;}
  .callout{grid-template-columns:1fr;}
  .callout-media{min-height:200px;}
  .props{grid-template-columns:1fr;}
  .grid-2{grid-template-columns:1fr;}
  .grid-3{grid-template-columns:1fr;}
  .grid-5{grid-template-columns:repeat(2,1fr);}
  .nav-links{display:none;}
  .contact-grid{grid-template-columns:1fr;}
  .product{grid-template-columns:48px 1fr;}
  .product .btn{grid-column:1/-1;justify-self:start;margin-top:4px;}
}
