/*
Theme Name: Mind7 Consultoria e Marketing
Theme URI: https://mind7.com.br/
Author: OpenAI
Author URI: https://openai.com/
Description: Tema institucional completo para a Mind7 Consultoria e Marketing.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mind7
*/

:root {
  --mind7-orange: #ff6927;
  --mind7-black: #000000;
  --mind7-dark: #111111;
  --mind7-gray: #737373;
  --mind7-yellow: #ffde59;
  --mind7-light: #f7f7f7;
  --mind7-white: #ffffff;
  --mind7-border: #e8e8e8;
  --mind7-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --mind7-radius: 18px;
  --mind7-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--mind7-dark);
  background: var(--mind7-white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mind7-orange); text-decoration: none; }
a:hover { opacity: 0.92; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.container {
  width: min(92%, var(--mind7-container));
  margin: 0 auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.site-branding img {
  max-height: 54px;
  width: auto;
}
.site-title {
  color: var(--mind7-white);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-navigation a {
  color: var(--mind7-white);
  font-weight: 600;
}
.header-cta {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--mind7-orange);
  color: var(--mind7-white);
  font-weight: 700;
}

.hero {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 55%, #2a2a2a 100%);
  color: var(--mind7-white);
  padding: 96px 0 84px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(255, 105, 39, 0.14);
  color: var(--mind7-yellow);
  border: 1px solid rgba(255, 222, 89, 0.25);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.04;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}
.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  max-width: 680px;
}
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--mind7-orange);
  color: var(--mind7-white);
  box-shadow: 0 10px 24px rgba(255, 105, 39, 0.28);
}
.btn-secondary {
  background: transparent;
  color: var(--mind7-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,105,39,0.12), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--mind7-shadow);
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.hero-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.hero-list li:last-child { border-bottom: 0; }

.section {
  padding: 82px 0;
}
.section.alt { background: var(--mind7-light); }
.section-header {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}
.section-header p {
  color: var(--mind7-gray);
  font-size: 1.06rem;
  margin: 0;
}
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--mind7-white);
  border: 1px solid var(--mind7-border);
  border-radius: var(--mind7-radius);
  padding: 28px;
  box-shadow: var(--mind7-shadow);
  height: 100%;
}
.card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}
.card p, .card li { color: var(--mind7-gray); }
.card ul { margin: 10px 0 0 20px; }
.icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 105, 39, 0.12);
  color: var(--mind7-orange);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.metric {
  background: #0c0c0c;
  color: white;
  border-radius: 18px;
  padding: 22px;
}
.metric strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--mind7-yellow);
  margin-bottom: 10px;
}
.highlight-box {
  background: linear-gradient(90deg, rgba(255,105,39,0.12), rgba(255,222,89,0.12));
  border: 1px solid rgba(255,105,39,0.18);
  border-radius: 20px;
  padding: 24px;
  margin-top: 20px;
}
.person-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
  background: #ececec;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff3ee;
  color: var(--mind7-orange);
  border: 1px solid rgba(255, 105, 39, 0.2);
  font-size: 0.94rem;
  font-weight: 700;
}
.cta-box {
  background: #000;
  color: white;
  border-radius: 28px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.cta-box p { color: rgba(255,255,255,0.84); margin: 0; }
.site-footer {
  background: #000;
  color: rgba(255,255,255,0.76);
  padding: 52px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 26px;
}
.site-footer h4 {
  color: #fff;
  margin: 0 0 12px;
}
.site-footer a { color: rgba(255,255,255,0.86); }
.footer-copy {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.page-hero {
  background: #0b0b0b;
  color: white;
  padding: 76px 0 60px;
}
.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}
.page-hero p { color: rgba(255,255,255,0.82); max-width: 800px; }
.content-default {
  padding: 64px 0;
}
.entry-content h2, .entry-content h3 { line-height: 1.15; }
.entry-content ul { padding-left: 20px; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  background: #25d366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 24px rgba(0,0,0,0.18);
  font-size: 28px;
  font-weight: 800;
}
.mobile-toggle { display: none; }
@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-4, .grid-2, .footer-grid, .cta-box, .metrics {
    grid-template-columns: 1fr;
  }
  .main-navigation ul { gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
}
@media (max-width: 760px) {
  .header-inner { flex-wrap: wrap; }
  .main-navigation { width: 100%; }
  .main-navigation ul { justify-content: flex-start; }
  .section, .hero, .page-hero { padding-top: 64px; padding-bottom: 56px; }
  .card, .hero-card, .cta-box { padding: 24px; }
}
