:root {
  --bg: #150707;
  --bg-soft: #261010;
  --surface: #ffffff;
  --surface-soft: #f2f6f4;
  --text: #261818;
  --muted: #786a6a;
  --green: #e04747;
  --green-dark: #bd2f2f;
  --yellow: #f5c842;
  --blue: #48b7ff;
  --orange: #ff8b56;
  --border: rgba(74, 24, 24, .12);
  --shadow: 0 24px 70px rgba(45, 8, 8, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  background: rgba(7, 20, 15, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; font-weight: 700; letter-spacing: -.03em; }
.brand strong { color: var(--green); }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  color: #150707; font-weight: 900; background: linear-gradient(145deg, var(--green), #8bffc1);
  box-shadow: 0 10px 26px rgba(25, 214, 118, .25);
}
.nav-links { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.82); font-size: 15px; font-weight: 900 }
.nav-links a:hover { color: #fff; font-weight: 900 }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }

.btn {
  display: inline-flex; justify-content: center; align-items: center; min-height: 52px;
  border-radius: 14px; padding: 0 22px; font-weight: 800; border: 1px solid transparent;
  transition: .2s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 16px; font-size: 13px; }
.btn-primary { color: #2a0808; background: var(--green); box-shadow: 0 12px 30px rgba(155, 29, 29, .22); }
.btn-primary:hover { background: #f05a5a; }
.btn-outline { border-color: rgba(255,255,255,.24); color: #fff; }
.plan-card .btn-outline { border-color: var(--border); color: var(--text); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.16); }
.full { width: 100%; }

.hero {
  position: relative; overflow: hidden; padding: 158px 0 95px;
  background:
    radial-gradient(circle at 18% 20%, rgba(25,214,118,.11), transparent 28%),
    linear-gradient(150deg, #130606 0%, #150707 55%, #150707 100%);
  color: #fff;
}
.hero:before {
  content:""; position:absolute; inset:0; opacity:.12;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 70px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800;
  letter-spacing: .12em; color: var(--green); text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow:before { content:""; width: 24px; height: 2px; background: currentColor; }
.eyebrow.dark { color: #a92f2f; }
.hero h1 { margin: 0; font-size: clamp(46px, 6vw, 76px); line-height: .99; letter-spacing: -.055em; max-width: 720px; }
.hero h1 span { color: var(--green); }
.hero-lead { max-width: 640px; color: #fff; font-size: 18px; margin: 28px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; gap: 36px; margin-top: 42px; }
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { font-size: 16px; }
.trust-row span { font-size: 12px; color: rgba(255,255,255,.55); }

.dashboard-wrap { position: relative; }
.dashboard {
  display: flex; min-height: 470px; border-radius: 25px; overflow: hidden;
  background: #f6f9f7; color: var(--text); transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  border: 1px solid rgba(255,255,255,.16); box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.dash-sidebar { width: 64px; background: #07140f; display: flex; flex-direction: column; align-items: center; gap: 19px; padding: 17px 0; }
.dash-sidebar i { width: 22px; height: 22px; border-radius: 7px; background: rgba(255,255,255,.12); }
.dash-sidebar i:nth-child(3) { background: var(--green); }
.dash-logo { width: 31px; height: 31px; border-radius: 9px; background: var(--green); display: grid; place-items: center; font-weight: 900; color: #062214; margin-bottom: 10px; }
.dash-main { flex: 1; padding: 22px; }
.dash-top { display:flex; justify-content: space-between; align-items:center; margin-bottom: 18px; }
.dash-top div:first-child { display:flex; flex-direction:column; }
.dash-top small { color:#8b9690; font-size:10px; }
.avatar { width:34px; height:34px; display:grid; place-items:center; background:#dce9e2; border-radius:50%; font-size:10px; font-weight:800; }
.metric-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:12px; }
.metric { border-radius:15px; padding:15px; color:#fff; display:flex; flex-direction:column; min-height:112px; }
.metric span { font-size:10px; opacity:.85; }
.metric strong { font-size:18px; margin:8px 0 5px; }
.metric small { font-size:9px; opacity:.8; }
.metric-green { background:linear-gradient(145deg,#11b75e,#188b50); }
.metric-blue { background:linear-gradient(145deg,#2c98df,#346ab5); }
.metric-orange { background:linear-gradient(145deg,#ef7446,#d95731); }
.dash-content { display:grid; grid-template-columns:1.25fr .75fr; gap:12px; margin-top:12px; }
.chart-card,.stock-card { background:#fff; border:1px solid #e6ece8; border-radius:16px; padding:16px; }
.card-title { display:flex; justify-content:space-between; align-items:center; font-size:10px; }
.card-title span { color:#98a29d; }
.bars { height:180px; display:flex; align-items:flex-end; gap:12px; border-bottom:1px solid #e9eeeb; padding:20px 8px 0; }
.bars b { flex:1; border-radius:7px 7px 0 0; background:linear-gradient(#24dc7b,#0b9d53); }
.months { display:flex; justify-content:space-between; color:#9aa59f; font-size:8px; padding:8px 4px; }
.stock-card ul { list-style:none; margin:14px 0 0; padding:0; }
.stock-card li { display:flex; justify-content:space-between; padding:11px 0; border-bottom:1px solid #eef2ef; font-size:9px; }
.stock-card b { color:#e15f38; }
.floating-card {
  position:absolute; z-index:3; display:flex; gap:10px; align-items:center; background:#fff; color:var(--text);
  padding:12px 14px; border-radius:14px; box-shadow:var(--shadow);
}
.floating-card strong,.floating-card small { display:block; }
.floating-card strong { font-size:11px; }
.floating-card small { font-size:9px; color:var(--muted); }
.floating-one { left:-30px; bottom:45px; }
.floating-two { right:-20px; top:35px; }
.icon-check,.icon-phone { width:32px;height:32px;border-radius:9px;display:grid;place-items:center;background:#dcf8e8;color:#0a9f52;font-weight:900; }

.logo-strip { background:#07140f; color:#c9b6b6; border-top:1px solid rgba(255,255,255,.07); }
.logo-strip p { margin:0; text-align:center; padding:20px 0; font-size:13px; }

.two-col { display:grid; grid-template-columns:.95fr 1.05fr; gap:90px; align-items:start; }
h2 { margin:0; font-size:clamp(34px,4.5vw,56px); line-height:1.08; letter-spacing:-.045em; }
.problem-section { background:var(--surface-soft); }
.pain-list article { display:flex; gap:22px; padding:25px 0; border-bottom:1px solid var(--border); }
.pain-list article:first-child { padding-top:0; }
.pain-list article > span { font-weight:800; color:#c93a3a; }
.pain-list strong { font-size:20px; }
.pain-list p { margin:7px 0 0; color:var(--muted); }

.features-section { background:#fff; }
.section-head { max-width:760px; margin:0 auto 54px; text-align:center; }
.section-head p { color:var(--muted); max-width:650px; margin:18px auto 0; }
.features-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.feature-card { padding:26px; border:1px solid var(--border); border-radius:20px; background:#fff; min-height:250px; transition:.2s; }
.feature-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.feature-card.featured { background:var(--bg); color:#fff; border-color:transparent; }
.feature-icon { width:46px;height:46px;border-radius:13px;display:grid;place-items:center;background:#f8e8e8;color:#c52f2f;font-weight:900;font-size:13px; }
.featured .feature-icon { background:var(--green); color:#2a0808; }
.feature-card h3 { font-size:20px; margin:22px 0 10px; }
.feature-card p { color:var(--muted); font-size:14px; margin:0; }
.featured p { color:rgba(255,255,255,.68); }
.feature-card > span { display:block; margin-top:28px; color:var(--green); font-weight:800; font-size:12px; }

.automotive-section { background:linear-gradient(145deg,#150707,#07140f); color:#fff; overflow:hidden; }
.automotive-grid { display:grid; grid-template-columns:.86fr 1.14fr; gap:100px; align-items:center; }
.phone-mockup { width:330px; height:650px; border:10px solid #2b1212; border-radius:48px; margin:auto; background:#f0e9e9; padding:10px; box-shadow:0 40px 100px rgba(0,0,0,.4); transform:rotate(-3deg); position:relative; }
.phone-speaker { position:absolute; z-index:2; top:14px; left:50%; width:95px; height:23px; transform:translateX(-50%); background:#2b1212; border-radius:0 0 14px 14px; }
.phone-screen { height:100%; background:#f8f3f3; color:var(--text); border-radius:31px; overflow:hidden; padding:26px 18px; }
.app-head { display:flex; align-items:center; justify-content:space-between; font-size:12px; }
.brand-mark.mini { width:27px;height:27px;border-radius:8px; }
.app-balance { margin:30px 0 16px; padding:22px; border-radius:20px; background:linear-gradient(145deg,#11b75e,#188b50); color:#fff; display:flex; flex-direction:column; }
.app-balance small { opacity:.9; }
.app-balance strong { font-size:24px; margin:6px 0; }
.app-balance span { color:#fff; font-size:11px; }
.app-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.app-grid div { background:#fff; padding:15px; border-radius:14px; display:flex; flex-direction:column; box-shadow:0 8px 30px rgba(11,42,28,.06); }
.app-grid b { font-size:20px; }
.app-grid small { font-size:9px; color:var(--muted); }
.app-list { margin-top:20px; background:#fff; border-radius:15px; padding:16px; }
.app-list > strong { font-size:12px; }
.app-list p { display:flex;justify-content:space-between;border-bottom:1px solid #f1eded;padding:11px 0;margin:0;font-size:9px; }
.app-list p b { color:#27ae60; }
.automotive-copy p { color:rgba(255,255,255,.66); font-size:17px; margin:24px 0; }
.check-list { list-style:none; padding:0; columns:2; gap:30px; }
.check-list li { position:relative; padding:8px 0 8px 26px; break-inside:avoid; color:rgba(255,255,255,.82); font-size:14px; }
.check-list li:before { content:"✓"; position:absolute; left:0; color:var(--green); font-weight:900; }
.text-link { display:inline-flex; gap:12px; align-items:center; margin-top:30px; font-weight:800; color:var(--green); }

.results-section { background:#fff; }
.results-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--border); border-radius:24px; overflow:hidden; }
.results-grid article { padding:32px; border-right:1px solid var(--border); }
.results-grid article:last-child { border-right:0; }
.results-grid > article > strong { color:#c93a3a; font-size:13px; }
.results-grid h3 { font-size:21px; margin:30px 0 10px; }
.results-grid p { color:var(--muted); font-size:14px; }


.clients-section { background:linear-gradient(145deg,#150707,#07140f); padding-top:90px; padding-bottom:90px; }
.clients-section .section-head { margin-bottom:42px; }
.clients-logos {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
}
.client-logo {
  min-height:132px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:15px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 28px rgba(32,8,8,.05);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.client-logo:hover {
  transform:translateY(-3px);
  border-color:rgba(201,58,58,.32);
  box-shadow:0 18px 40px rgba(32,8,8,.09);
}
.client-logo img {
  display:block;
  width:100%;
  max-width:250px;
  max-height:124px;
  object-fit:contain;
}

.plans-section { background:var(--surface-soft); }
.plans-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:stretch; }
.plan-card { position:relative; padding:32px; border-radius:24px; background:#fff; border:1px solid var(--border); display:flex; flex-direction:column; }
.plan-highlight { background:var(--bg); color:#fff; transform:translateY(-10px); box-shadow:0 25px 70px rgba(6,30,18,.22); }
.plan-name { color:#be3535; font-weight:800; font-size:13px; text-transform:uppercase; letter-spacing:.08em; }
.plan-highlight .plan-name { color:var(--green); }
.plan-card h3 { font-size:25px; line-height:1.25; min-height:94px; margin:16px 0 22px; }
.plan-card ul { list-style:none; padding:0; margin:0 0 32px; flex:1; }
.plan-card li { padding:10px 0 10px 25px; position:relative; color:var(--muted); font-size:14px; border-bottom:1px solid var(--border); }
.plan-highlight li { color:rgba(255,255,255,.73); border-color:rgba(255,255,255,.10); }
.plan-card li:before { content:"✓"; position:absolute; left:0; color:var(--green); font-weight:900; }
.badge { position:absolute; top:18px; right:18px; color:#2a0808; background:#00ec21; font-size:9px; font-weight:900; padding:6px 9px; border-radius:999px; }
.price { color:#c0392b; font-size:40px; font-weight:900; padding:6px 9px; }

.faq-section { background:#fff; }
.faq-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:90px; }
.faq-grid > div:first-child p { color:var(--muted); }
.accordion details { border-bottom:1px solid var(--border); padding:20px 0; }
.accordion summary { cursor:pointer; list-style:none; font-weight:800; font-size:17px; display:flex; justify-content:space-between; }
.accordion summary::-webkit-details-marker { display:none; }
.accordion summary:after { content:"+"; color:#bf3333; font-size:24px; line-height:1; }
.accordion details[open] summary:after { content:"−"; }
.accordion p { color:var(--muted); margin:12px 0 0; }

.cta-section { padding:95px 0; background:linear-gradient(145deg,#150707,#07140f); color:#fff; }
.cta-grid { display:grid; grid-template-columns:1fr .85fr; gap:80px; align-items:center; }
.cta-grid p { color:rgba(255,255,255,.67); max-width:560px; font-size:17px; }
.lead-form { background:#fff; color:var(--text); padding:28px; border-radius:24px; display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.lead-form label { display:flex; flex-direction:column; gap:7px; font-size:12px; font-weight:800; }
.lead-form input,.lead-form select { width:100%; height:48px; border:1px solid #dce5e0; border-radius:12px; padding:0 13px; outline:none; background:#fff; }
.lead-form input:focus,.lead-form select:focus { border-color:#d74747; box-shadow:0 0 0 3px rgba(255,6,0,.12); }
.lead-form button,.lead-form small { grid-column:1/-1; }
.lead-form small { color:var(--muted); text-align:center; font-size:10px; }

footer { padding:60px 0 25px; background:#07140f; color:rgba(255,255,255,.65); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:60px; }
.footer-brand { margin-bottom:16px; }
.footer-grid p { max-width:380px; font-size:14px; }
.footer-grid > div { display:flex; flex-direction:column; gap:9px; }
.footer-grid strong { color:#fff; margin-bottom:8px; }
.footer-grid a:not(.brand) { font-size:13px; }
.footer-bottom { display:flex; justify-content:space-between; border-top:1px solid rgba(255,255,255,.09); margin-top:45px; padding-top:22px; font-size:11px; }
.whatsapp-float {
  position:fixed; right:22px; bottom:22px; z-index:80; width:54px;height:54px;border-radius:18px;
  background:var(--green);color:#2a0808;font-weight:900;display:grid;place-items:center;
  box-shadow:0 14px 40px rgba(25,214,118,.35);
}

@media (max-width: 980px) {
  .menu-toggle { display:block; }
  .nav-links {
    display:none; position:absolute; left:20px; right:20px; top:70px; padding:20px;
    background:#210b0b; border:1px solid rgba(255,255,255,.1); border-radius:16px;
    flex-direction:column; align-items:stretch; gap:14px;
  }
  .nav-links.open { display:flex; }
  .hero-grid,.two-col,.automotive-grid,.faq-grid,.cta-grid { grid-template-columns:1fr; }
  .hero-grid { gap:70px; }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .results-grid { grid-template-columns:repeat(2,1fr); }
  .results-grid article { border-bottom:1px solid var(--border); }
  .plans-grid { grid-template-columns:1fr; }
  .clients-logos { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .plan-highlight { transform:none; }
  .phone-mockup { order:2; }
  .automotive-copy { order:1; }
  .faq-grid,.two-col { gap:45px; }
}
@media (max-width: 640px) {
  .container { width:min(100% - 28px,1180px); }
  .section { padding:78px 0; }
  .hero { padding-top:125px; }
  .hero h1 { font-size:44px; }
  .hero-lead { font-size:16px; }
  .hero-actions .btn { width:100%; }
  .trust-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
  .dashboard { min-height:390px; transform:none; }
  .dash-sidebar { width:46px; }
  .dash-main { padding:12px; }
  .metric-grid { grid-template-columns:1fr 1fr; }
  .metric:last-child { display:none; }
  .dash-content { grid-template-columns:1fr; }
  .stock-card { display:none; }
  .floating-card { display:none; }
  .features-grid,.results-grid { grid-template-columns:1fr; }
  .clients-logos { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
  .client-logo { min-height:105px; padding:18px; }
  .results-grid article { border-right:0; }
  .check-list { columns:1; }
  .phone-mockup { width:290px;height:585px; }
  .lead-form { grid-template-columns:1fr; }
  .lead-form button,.lead-form small { grid-column:1; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; gap:8px; }
}

.form-message {
    grid-column: 1 / -1;
    min-height: 22px;
    padding: 0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.form-message.success {
    padding: 10px 12px;
    color: #166534;
    background-color: #dcfce7;
    border: 1px solid #86efac;
}

.form-message.error {
    padding: 10px 12px;
    color: #991b1b;
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
}

#submitButton:disabled {
    cursor: wait;
    opacity: 0.7;
}


/* Identidade visual Clube Automotivo */
.brand-logo-link { line-height: 0; }
.site-logo { width: 200px; height: 77px; object-fit: contain; object-position: left center; }
.footer-logo { width: 170px; height: 72px; }

/* Veículo atrás do smartphone */
.automotive-visual { position: relative; min-height: 680px; display: grid; place-items: center; isolation: isolate; }
.vehicle-art { position: absolute; z-index: 0; width: 690px; max-width: none; left: 50%; bottom: 48px; transform: translateX(-52%); filter: drop-shadow(0 28px 45px rgba(0,0,0,.42)); opacity: .98; }
.automotive-visual .phone-mockup { position: relative; z-index: 2; }

/* Campo de preço editável nos planos */
.plan-price-field { display: block; margin: 0 0 24px; }
.plan-price-field span { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.plan-price-field pricemembros { display: block; margin-bottom: 7px; font-size: 18px; font-weight: 800; color:#c0392b; text-transform: uppercase; letter-spacing: .08em; }
.plan-highlight .plan-price-field span { color: rgba(255,255,255,.62); }
.plan-price-field input { width: 100%; height: 52px; padding: 0 15px; border-radius: 13px; border: 1px solid var(--border); background: #fff; color: var(--text); font-size: 19px; font-weight: 800; outline: none; }
.plan-highlight .plan-price-field input { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: #fff; }
.plan-highlight .plan-price-field input::placeholder { color: rgba(255,255,255,.58); }
.plan-price-field input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(224,71,71,.14); }
.price { color:#c0392b; font-size:40px; font-weight:900; padding:6px 9px; }

@media (max-width: 980px) {
  .automotive-visual { min-height: 650px; }
  .vehicle-art { width: 650px; left: 50%; }
}
@media (max-width: 640px) {
  .site-logo { width: 122px; height: 52px; }
  .automotive-visual { min-height: 565px; }
  .vehicle-art { width: 470px; bottom: 45px; transform: translateX(-54%); }
}

/* =========================================================
   PÁGINA - REFORMA TRIBUTÁRIA 2027
   ========================================================= */
.tax-hero {
  position: relative;
  overflow: hidden;
  padding: 165px 0 105px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 25%, rgba(169,47,47,.28), transparent 32%),
    radial-gradient(circle at 88% 68%, rgba(224,71,71,.13), transparent 30%),
    linear-gradient(150deg, #0d0303 0%, #1b0808 52%, #090303 100%);
}
.tax-hero:before {
  content:"";
  position:absolute;
  inset:0;
  opacity:.12;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:64px 64px;
}
.tax-hero-grid { position:relative; z-index:2; display:grid; grid-template-columns:1.1fr .9fr; gap:70px; align-items:center; }
.tax-hero-copy h1 { margin:0; font-size:clamp(44px,5.6vw,72px); line-height:1.01; letter-spacing:-.055em; }
.tax-hero-copy h1 span { color:#e04747; }
.tax-hero-copy > p { max-width:700px; margin:26px 0 34px; color:rgba(255,255,255,.76); font-size:18px; }
.tax-timeline-card { display:flex; align-items:stretch; gap:14px; padding:22px; border:1px solid rgba(255,255,255,.14); border-radius:24px; background:rgba(255,255,255,.06); backdrop-filter:blur(12px); box-shadow:0 30px 80px rgba(0,0,0,.32); }
.tax-year { flex:1; padding:24px 20px; border-radius:18px; background:rgba(255,255,255,.07); }
.tax-year span { display:block; color:#e04747; font-size:36px; font-weight:800; line-height:1; }
.tax-year strong { display:block; margin:15px 0 10px; font-size:17px; }
.tax-year p { margin:0; color:rgba(255,255,255,.65); font-size:13px; }
.tax-year-live { background:linear-gradient(145deg, rgba(169,47,47,.95), rgba(111,25,25,.95)); }
.tax-year-live span { color:#fff; }
.tax-year-live p { color:rgba(255,255,255,.82); }
.tax-arrow { display:grid; place-items:center; color:#e04747; font-size:28px; font-weight:800; }

.tax-change-section { background:#fff; }
.tax-cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.tax-info-card { padding:30px; border:1px solid var(--border); border-radius:22px; background:#fff; box-shadow:0 18px 45px rgba(45,8,8,.06); }
.tax-info-card h3 { margin:20px 0 10px; font-size:21px; }
.tax-info-card p { margin:0; color:var(--muted); }

.tax-solution-section { color:#fff; background:linear-gradient(145deg,#150707,#0a0303); }
.tax-solution-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:start; }
.tax-solution-section h2 { color:#fff; }
.tax-intro { color:rgba(255,255,255,.68); font-size:17px; margin-top:22px; }
.tax-benefit-list article { display:flex; gap:20px; padding:22px 0; border-bottom:1px solid rgba(255,255,255,.11); }
.tax-benefit-list article:first-child { padding-top:0; }
.tax-benefit-list article > span { color:#e04747; font-weight:800; }
.tax-benefit-list strong { display:block; font-size:18px; }
.tax-benefit-list p { margin:6px 0 0; color:rgba(255,255,255,.62); }

.tax-growth-section { background:#f6f2f2; }
.tax-growth-box { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; padding:50px; border-radius:28px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow); }
.tax-growth-box p { color:var(--muted); font-size:17px; }
.tax-highlight-text { padding:18px 20px; border-left:4px solid #a92f2f; background:#fbf1f1; color:#3d2020 !important; border-radius:0 14px 14px 0; }

.tax-final-call { padding:50px 0; text-align:center; color:#fff; background:linear-gradient(145deg,#0b0303,#1b0808); }
.tax-final-call-inner { max-width:800px; }
.tax-final-call h2 { max-width:760px; margin:0 auto; }
.tax-final-call p { max-width:680px; margin:20px auto 28px; color:rgba(255,255,255,.7); font-size:17px; }
.tax-final-call small { display:block; max-width:680px; margin:22px auto 0; color:rgba(255,255,255,.44); }

@media (max-width: 980px) {
  .tax-hero-grid,.tax-solution-grid,.tax-growth-box { grid-template-columns:1fr; }
  .tax-cards-grid { grid-template-columns:1fr; }
  .tax-timeline-card { max-width:680px; }
}
@media (max-width: 640px) {
  .tax-hero { padding:130px 0 75px; }
  .tax-hero-copy h1 { font-size:42px; }
  .tax-hero-copy > p { font-size:16px; }
  .tax-timeline-card { flex-direction:column; }
  .tax-arrow { transform:rotate(90deg); }
  .tax-growth-box { padding:28px 22px; gap:30px; }
}

/* =========================================================
   HERO VISUAL - REFORMA TRIBUTÁRIA
   ========================================================= */
.tax-visual-hero {
  width: 100%;
  margin-top: 76px; /* altura do menu fixo */
  background: #050505;
  overflow: hidden;
}
.tax-visual-hero picture { display: block; width: 100%; }
.tax-visual-hero-image {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
}

/* Hero textual agora entra depois do banner, por isso não precisa do espaço do header fixo */
.tax-hero {
  padding: 82px 0 78px;
}
.tax-intro-hero {
  position: relative;
  z-index: 2;
  max-width: 1020px;
}
.tax-intro-hero .tax-hero-copy {
  max-width: 960px;
}
.tax-intro-hero .tax-hero-copy h1 {
  max-width: 980px;
  font-size: clamp(42px, 5vw, 68px);
}
.tax-intro-hero .tax-hero-copy > p {
  max-width: 860px;
}

.tax-transition-strip {
  padding: 0 0 76px;
  background: #fff;
}
.tax-transition-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
}
.tax-transition-item {
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
}
.tax-transition-year {
  display: block;
  margin-bottom: 12px;
  color: #a92f2f;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}
.tax-transition-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.tax-transition-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.tax-transition-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #a92f2f, #6f1d1d);
  box-shadow: 0 20px 50px rgba(169,47,47,.22);
}
.tax-transition-active .tax-transition-year,
.tax-transition-active p { color: #fff; }
.tax-transition-active p { opacity: .8; }
.tax-transition-arrow {
  display: grid;
  place-items: center;
  min-width: 48px;
  color: #a92f2f;
  font-size: 34px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .tax-visual-hero-image {
    height: 460px;
    object-position: center center;
  }
  .tax-transition-grid {
    grid-template-columns: 1fr;
  }
  .tax-transition-arrow {
    transform: rotate(90deg);
    min-height: 40px;
  }
}

@media (max-width: 640px) {
  .tax-visual-hero {
    margin-top: 76px;
  }
  .tax-visual-hero-image {
    height: 320px;
    object-fit: cover;
    object-position: center center;
  }
  .tax-hero {
    padding: 62px 0 58px;
  }
  .tax-intro-hero .tax-hero-copy h1 {
    font-size: 38px;
  }
  .tax-transition-strip {
    padding-bottom: 58px;
  }
}



/* Reforma Tributária - reduzir espaço antes de "O que muda na prática?" */
.tax-change-section {
    padding-top: 1px;
}

.tax-visual-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.tax-visual-hero picture {
    display: block;
    margin: 0;
    padding: 0;
}

.tax-visual-hero-image {
    display: block;
    margin: 0;
}

/* === RESPONSIVE BANNER REFORMA TRIBUTARIA - 14/08/2026 === */
.tax-visual-hero {
    width: 100%;
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: #050505;
    overflow: hidden;
}

.tax-visual-hero picture {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.tax-visual-hero-image {
    display: block;
    width: 100%;
    height: 620px;
    margin: 0;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 980px) {
    .tax-visual-hero-image {
        height: 460px;
        object-fit: cover;
        object-position: center top;
    }
}

@media (max-width: 640px) {
    .tax-visual-hero {
        height: auto;
    }

    .tax-visual-hero picture {
        width: 100%;
    }

    .tax-visual-hero-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center top;
    }
}

