*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #2e7d32;
  --green-light:  #43a047;
  --green-dark:   #1b5e20;
  --gold:         #f9a825;
  --gold-light:   #ffd54f;
  --dark:         #1a1a2e;
  --gray:         #f4f6f4;
  --text:         #333;
  --white:        #ffffff;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --radius:       12px;
  --transition:   .3s ease;
  --bottomnav-h:  64px; /* altura única da barra inferior */
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
h1,h2,h3,h4 { line-height: 1.25; font-weight: 700; }
a { text-decoration: none; color: inherit; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1003; /* maior que o menu (1001) e overlay (1000) */
  background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.nav-logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; color: var(--white); cursor: pointer; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 6px; list-style: none; flex-wrap: wrap; }
.nav-links a {
  color: #ccc; font-size: .82rem; padding: 6px 11px;
  border-radius: 20px; transition: var(--transition); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { background: var(--green); color: var(--white); }
.nav-links a.nav-invest {
  background: rgba(249,168,37,.15);
  border: 1px solid rgba(249,168,37,.4);
  color: var(--gold-light);
}
.nav-links a.nav-invest:hover,
.nav-links a.nav-invest.active { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ===== PAGES ===== */
.page { display: none; padding-top: 64px; }
.page.active { display: block; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--green-dark) 60%, var(--green) 100%);
  color: var(--white); padding: 100px 5% 80px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(249,168,37,.2); border: 1px solid var(--gold);
  color: var(--gold-light); padding: 4px 16px; border-radius: 20px;
  font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.15rem; max-width: 680px; margin: 0 auto 36px; opacity: .9; }
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  padding: 14px 32px; border-radius: 30px; font-size: 1rem;
  font-weight: 700; cursor: pointer; border: none;
  transition: var(--transition); display: inline-flex;
  align-items: center; gap: 8px;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.6); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #20b858; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.btn-whatsapp-outline {
  background: transparent; border: 2px solid #25d366;
  color: #25d366; border-radius: 30px; padding: 12px 28px;
  font-size: .95rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-whatsapp-outline:hover { background: #25d366; color: var(--white); transform: translateY(-2px); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--green-dark); display: flex; justify-content: center; flex-wrap: wrap; }
.stat-item {
  flex: 1; min-width: 140px; max-width: 220px;
  padding: 28px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1); color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-item .num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-item p { font-size: .85rem; opacity: .85; margin-top: 4px; }

/* ===== SECTIONS ===== */
section { padding: 80px 5%; }
.section-label {
  display: inline-block; background: #e8f5e9; color: var(--green-dark);
  padding: 4px 14px; border-radius: 20px;
  font-size: .78rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; color: var(--dark); }
.section-sub { font-size: 1.05rem; color: #555; max-width: 640px; margin-bottom: 48px; }
.centered { text-align: center; }
.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ===== CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 32px 28px;
  transition: var(--transition); border-top: 4px solid var(--green);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }
.card-icon { font-size: 2.4rem; margin-bottom: 16px; display: inline-block; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--dark); }
.card p { font-size: .93rem; color: #555; line-height: 1.6; }

/* ===== SEGMENTS ===== */
.segments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.segment-card {
  border-radius: var(--radius); padding: 36px 24px;
  text-align: center; color: var(--white); transition: var(--transition);
}
.segment-card:hover { transform: scale(1.03); }
.seg-agro    { background: linear-gradient(135deg, #2e7d32, #66bb6a); }
.seg-viveiro { background: linear-gradient(135deg, #33691e, #8bc34a); }
.seg-fiscal  { background: linear-gradient(135deg, #1565c0, #42a5f5); }
.seg-mobile  { background: linear-gradient(135deg, #6a1b9a, #ab47bc); }
.seg-peso    { background: linear-gradient(135deg, #e65100, #ffa726); }
.seg-desktop { background: linear-gradient(135deg, #37474f, #78909c); }
.segment-card .seg-icon { font-size: 2.8rem; margin-bottom: 14px; }
.segment-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.segment-card p { font-size: .85rem; opacity: .9; }

/* ===== FEATURES ===== */
.features-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media(max-width:768px){ .features-wrap { grid-template-columns: 1fr; } }
.features-list { list-style: none; }
.features-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid #eee;
}
.features-list li:last-child { border-bottom: none; }
.feat-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: #e8f5e9; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.feat-text h4 { font-size: .97rem; margin-bottom: 3px; }
.feat-text p { font-size: .85rem; color: #666; }

/* ===== VISUAL BLOCK ===== */
.visual-block {
  background: linear-gradient(135deg, var(--green-dark), var(--dark));
  border-radius: var(--radius); padding: 60px 40px;
  color: var(--white); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; min-height: 320px;
  position: relative; overflow: hidden;
}
.visual-block::after {
  content: attr(data-icon);
  position: absolute; bottom: -20px; right: 10px;
  font-size: 10rem; opacity: .08; line-height: 1;
}
.visual-block h3 { font-size: 1.6rem; margin-bottom: 12px; }
.visual-block p { opacity: .85; font-size: 1rem; max-width: 320px; }
.visual-badge {
  background: var(--gold); color: var(--dark);
  padding: 4px 16px; border-radius: 20px;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 16px; display: inline-block;
}

/* ===== FUTURE CARDS ===== */
.future-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.future-card {
  background: var(--gray); border-radius: var(--radius);
  padding: 28px 24px; border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.future-card:hover { background: #fff; box-shadow: var(--shadow); }
.future-card .badge {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 2px 10px; border-radius: 10px;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 12px;
}
.future-card h3 { font-size: 1rem; margin-bottom: 8px; }
.future-card p { font-size: .88rem; color: #555; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--dark));
  color: var(--white); text-align: center; padding: 80px 5%;
}
.cta-section h2 { font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 16px; }
.cta-section p { opacity: .85; font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; }

/* ===== PRODUCT HERO ===== */
.product-hero {
  padding: 80px 5% 60px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--green-dark) 100%);
  color: var(--white);
}
.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.7); font-size: .88rem;
  margin-bottom: 24px; cursor: pointer; transition: var(--transition);
  background: none; border: none;
}
.back-btn:hover { color: var(--white); }
.product-hero h1 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 16px; }
.product-hero h1 span { color: var(--gold); }
.product-hero p { font-size: 1.1rem; opacity: .9; max-width: 680px; margin-bottom: 32px; }

/* ===== TECH BLOCK ===== */
.tech-block {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  border-radius: var(--radius); padding: 48px 40px;
  color: var(--white); position: relative; overflow: hidden;
}
.tech-block::before { content: '🔌'; position: absolute; right: -10px; bottom: -20px; font-size: 9rem; opacity: .08; }
.tech-block .tb-badge {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 4px 14px; border-radius: 20px; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 16px;
}
.tech-block h3 { font-size: 1.5rem; margin-bottom: 12px; }
.tech-block p { opacity: .9; margin-bottom: 20px; line-height: 1.7; }
.tech-block ul { list-style: none; }
.tech-block ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; gap: 10px; font-size: .92rem; opacity: .9; }
.tech-block ul li:last-child { border: none; }
.tech-block ul li::before { content: '→'; color: var(--gold); font-weight: 700; }

/* ===== HUB BLOCK ===== */
.hub-block { background: var(--gray); border-radius: var(--radius); border: 2px solid var(--gold); padding: 36px 32px; }
.hub-block .hub-title { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hub-block .hub-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.hub-block h3 { font-size: 1.25rem; color: var(--dark); }
.hub-block p { color: #555; font-size: .95rem; line-height: 1.7; margin-bottom: 16px; }
.hub-block .hub-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hub-block .hub-tag { background: #fff3e0; color: #e65100; padding: 4px 14px; border-radius: 20px; font-size: .8rem; font-weight: 600; }

/* ===== FLOW STEPS ===== */
.flow-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; position: relative; }
.flow-step { text-align: center; padding: 28px 16px; position: relative; }
.flow-step:not(:last-child)::after { content: '→'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--green); font-weight: 700; }
@media(max-width:600px){ .flow-steps { grid-template-columns: 1fr 1fr; } .flow-step::after { display: none; } }
.flow-step .step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; margin: 0 auto 12px; }
.flow-step h4 { font-size: .92rem; color: var(--dark); margin-bottom: 6px; }
.flow-step p { font-size: .82rem; color: #666; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box { background: #e8f5e9; border-left: 4px solid var(--green); border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 24px 0; }
.highlight-box p { color: var(--green-dark); font-size: .95rem; }
.highlight-box.warning { background: #fff8e1; border-color: var(--gold); }
.highlight-box.warning p { color: #7c5a00; }

/* ===== WA CONTACT CARD ===== */
.wa-contact-card {
  background: linear-gradient(135deg, #075e54, #128c7e);
  border-radius: var(--radius); padding: 48px 40px;
  color: var(--white); text-align: center;
  box-shadow: 0 8px 32px rgba(7,94,84,.25);
  position: relative; overflow: hidden;
}
.wa-contact-card::before { content: '💬'; position: absolute; right: -10px; bottom: -20px; font-size: 10rem; opacity: .07; line-height: 1; }
.wa-contact-card .wa-icon { font-size: 3.5rem; margin-bottom: 16px; display: block; }
.wa-contact-card h3 { font-size: 1.6rem; margin-bottom: 12px; }
.wa-contact-card p { opacity: .9; font-size: 1rem; max-width: 380px; margin: 0 auto 28px; }
.wa-number { display: inline-block; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.4); padding: 10px 28px; border-radius: 30px; font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; letter-spacing: 1px; }

/* ===== WA PRODUCT BUTTONS ===== */
.wa-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.wa-product-btn { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px; transition: var(--transition); cursor: pointer; border: 2px solid transparent; text-decoration: none; }
.wa-product-btn:hover { border-color: #25d366; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(37,211,102,.15); }
.wa-product-btn .wp-icon { width: 52px; height: 52px; border-radius: 50%; background: #e8f5e9; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.wa-product-btn .wp-text h4 { font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.wa-product-btn .wp-text p { font-size: .82rem; color: #666; line-height: 1.4; }
.wa-product-btn .wp-arrow { margin-left: auto; color: #25d366; font-size: 1.3rem; flex-shrink: 0; }

/* ===== CONTACT INFO ===== */
.contact-hero-info { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media(max-width:768px){ .contact-hero-info { grid-template-columns: 1fr; } }
.contact-info-block h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 16px; }
.contact-info-block p { color: #555; margin-bottom: 28px; font-size: .97rem; line-height: 1.7; }
.contact-item { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.contact-item .ci-icon { width: 44px; height: 44px; border-radius: 50%; background: #e8f5e9; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item .ci-text { font-size: .95rem; color: #333; }
.contact-item .ci-text strong { display: block; color: var(--dark); }

/* ===== INVEST PAGE SPECIFIC ===== */
.invest-hero {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d2818 40%, #1a3a0a 70%, #0d1b2a 100%);
  color: var(--white); padding: 100px 5% 80px;
  text-align: center; position: relative; overflow: hidden;
}
.invest-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(46,125,50,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(249,168,37,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 55% 85%, rgba(46,125,50,.10) 0%, transparent 50%);
  pointer-events: none;
}
.invest-hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; opacity: .035;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 52px 52px;
}
.invest-hero > * { position: relative; z-index: 1; }
.invest-hero h1 { font-size: clamp(2rem,5vw,3.8rem); margin-bottom: 20px; line-height: 1.2; }
.invest-hero h1 span { color: var(--gold); }
.invest-hero p { font-size: 1.15rem; max-width: 700px; margin: 0 auto 40px; opacity: .88; line-height: 1.8; }
.invest-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,168,37,.15); border: 1px solid rgba(249,168,37,.45);
  color: var(--gold-light); padding: 6px 20px; border-radius: 30px;
  font-size: .78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 28px;
}
.invest-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0;
  background: linear-gradient(90deg, #0d2818, #1b3a10, #0d2818);
  border-top: 1px solid rgba(249,168,37,.2);
  border-bottom: 1px solid rgba(249,168,37,.2);
}
.invest-stat { padding: 32px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); color: var(--white); }
.invest-stat:last-child { border-right: none; }
.invest-stat .is-num { font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.invest-stat .is-label { font-size: .82rem; opacity: .75; line-height: 1.4; }

.dark-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #0d2818 100%);
  padding: 80px 5%; position: relative; overflow: hidden;
}
.dark-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .03;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 48px 48px;
}
.dark-section > * { position: relative; z-index: 1; }
.dark-label {
  display: inline-block; background: rgba(249,168,37,.15);
  border: 1px solid rgba(249,168,37,.3); color: var(--gold-light);
  padding: 4px 14px; border-radius: 20px; font-size: .78rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.dark-title { font-size: clamp(1.6rem,3vw,2.4rem); color: #fff; margin-bottom: 16px; }
.dark-sub { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 640px; margin-bottom: 48px; }
.dark-sub.centered-sub { margin-left: auto; margin-right: auto; }

.glass-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 32px 28px;
  transition: all .3s ease; backdrop-filter: blur(6px);
}
.glass-card:hover { background: rgba(255,255,255,.09); border-color: rgba(249,168,37,.4); transform: translateY(-6px); }
.glass-card .gc-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.glass-card h3 { color: var(--gold-light); font-size: 1.05rem; margin-bottom: 10px; }
.glass-card p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.7; }

.opp-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 28px 24px; transition: all .3s ease;
}
.opp-card:hover { background: rgba(255,255,255,.08); transform: translateX(6px); }
.opp-card .oc-badge {
  display: inline-block; padding: 2px 12px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  margin-bottom: 10px; letter-spacing: 1px;
}
.opp-card h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.opp-card p { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.7; }

.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: flex; gap: 0; align-items: flex-start;
  padding-bottom: 36px;
  border-left: 2px solid rgba(249,168,37,.35);
  margin-left: 20px; padding-left: 32px;
  position: relative;
}
.tl-item:last-child { border-left: 2px solid transparent; padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -11px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  border: 3px solid #0d1b2a; flex-shrink: 0;
}
.tl-dot.active { background: var(--gold); }
.tl-dot.next { background: rgba(249,168,37,.4); }
.tl-dot.future { background: rgba(255,255,255,.2); }
.tl-content { flex: 1; }
.tl-tag {
  display: inline-block; padding: 2px 12px; border-radius: 20px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 8px;
}
.tl-tag.dev { background: rgba(46,125,50,.3); border: 1px solid rgba(46,125,50,.6); color: #a5d6a7; }
.tl-tag.road { background: rgba(249,168,37,.15); border: 1px solid rgba(249,168,37,.4); color: var(--gold-light); }
.tl-tag.vision { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.5); }
.tl-content h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.tl-content p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.65; }

.invest-cta-box {
  background: linear-gradient(135deg, rgba(249,168,37,.12), rgba(249,168,37,.05));
  border: 2px solid rgba(249,168,37,.45);
  border-radius: 20px; padding: 60px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.invest-cta-box::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(249,168,37,.07); pointer-events: none;
}
.invest-cta-box::after {
  content: ''; position: absolute; bottom: -50px; left: -30px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(46,125,50,.07); pointer-events: none;
}
.invest-cta-box > * { position: relative; z-index: 1; }
.invest-cta-box h2 { color: #fff; font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: 16px; }
.invest-cta-box p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto 36px; line-height: 1.8; }

.channel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; max-width: 760px; margin: 0 auto 32px; }
.channel-card { border-radius: 14px; padding: 22px 16px; text-align: center; text-decoration: none; transition: all .3s ease; display: block; }
.channel-card .cc-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.channel-card .cc-title { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.channel-card .cc-sub { font-size: .78rem; }
.ch-email { background: rgba(255,255,255,.07); border: 2px solid rgba(255,255,255,.15); color: #fff; }
.ch-email:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.45); transform: translateY(-3px); }
.ch-wa { background: rgba(37,211,102,.1); border: 2px solid rgba(37,211,102,.3); color: #fff; }
.ch-wa:hover { background: rgba(37,211,102,.2); border-color: rgba(37,211,102,.6); transform: translateY(-3px); }
.ch-meet { background: rgba(249,168,37,.08); border: 2px solid rgba(249,168,37,.3); color: #fff; }
.ch-meet:hover { background: rgba(249,168,37,.18); border-color: rgba(249,168,37,.6); transform: translateY(-3px); }

.profile-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px; }
.profile-tag { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7); padding: 6px 18px; border-radius: 30px; font-size: .82rem; }

.quote-block { background: rgba(255,255,255,.05); border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; padding: 20px 28px; margin: 0 auto; max-width: 600px; }
.quote-block p { color: var(--gold-light); font-style: italic; font-size: 1rem; line-height: 1.7; }

.prod-summary { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px 24px; transition: all .3s ease; }
.prod-summary:hover { background: rgba(255,255,255,.08); border-color: rgba(46,125,50,.4); transform: translateY(-4px); }
.prod-summary .ps-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.prod-summary h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.prod-summary p { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.6; }
.prod-summary .ps-tag { display: inline-block; margin-top: 10px; background: rgba(46,125,50,.25); border: 1px solid rgba(46,125,50,.4); color: #a5d6a7; padding: 2px 10px; border-radius: 20px; font-size: .72rem; font-weight: 700; }

/* ===== MISC ===== */
.bg-gray { background: var(--gray); }
.tag { display: inline-block; background: #e8f5e9; color: var(--green-dark); padding: 4px 12px; border-radius: 20px; font-size: .78rem; font-weight: 600; margin: 4px 2px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media(max-width:600px){ .two-col { grid-template-columns: 1fr; } }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9998;
  background: #25d366; color: white;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition); text-decoration: none;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); background: #20b858; animation: none; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 48px 5% 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; margin-bottom: 36px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--green); }
.footer-col p, .footer-col a { font-size: .88rem; line-height: 2; color: rgba(255,255,255,.65); display: block; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; text-align: center; font-size: .82rem; color: rgba(255,255,255,.4); }

/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px; transition: var(--transition); z-index: 1002;
}
.nav-toggle:hover { background: rgba(255,255,255,.08); }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== OVERLAY ===== */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transition: var(--transition); z-index: 1000;
}
.nav-overlay.show { opacity: 1; visibility: visible; }

/* ===== BOTTOM NAVIGATION (única, consolidada) ===== */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; top: auto; left: 0; right: 0;
  width: 100%; height: var(--bottomnav-h);
  flex-direction: row; align-items: center;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -2px 16px rgba(0,0,0,.3);
  z-index: 9999;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.bnav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.55);
  font-size: .68rem; font-weight: 500; text-decoration: none;
  transition: var(--transition); padding: 6px 2px;
}
.bnav-item svg {
  width: 24px; height: 24px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.bnav-item.active { color: var(--green); }
.bnav-item.active svg { stroke: var(--green); }
.bnav-item:active { transform: scale(.92); }

/* ===== BOTTOM SHEET OVERLAY ===== */
.sheet-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transition: var(--transition); z-index: 10000;
}
.sheet-overlay.show { opacity: 1; visibility: visible; }

/* ===== PAINEL "MAIS OPÇÕES" ===== */
.more-sheet {
  position: fixed; left: 0; right: 0; bottom: var(--bottomnav-h);
  z-index: 10001;
  background: var(--dark);
  border-radius: 20px 20px 0 0;
  padding: 16px 16px 24px;
  max-height: 70vh; overflow-y: auto;

  /* ESCONDE de verdade quando fechado */
  transform: translateY(150%);
  visibility: hidden;
  opacity: 0;

  transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}

.more-sheet.show {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.sheet-handle { width: 40px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.25); margin: 4px auto 14px; }
.sheet-title { color: var(--white); font-size: 1rem; margin: 0 0 16px; text-align: center; }
.sheet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sheet-grid a {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 10px; background: rgba(255,255,255,.05);
  border-radius: 14px; color: var(--white); text-decoration: none;
  font-size: .82rem; font-weight: 500; transition: var(--transition);
}
.sheet-grid a:hover, .sheet-grid a:active { background: rgba(255,255,255,.12); }
.sheet-grid a svg {
  width: 26px; height: 26px; fill: none; stroke: var(--green);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.sheet-grid a.sheet-invest svg { stroke: #d4a017; }

/* ===== MOBILE NAV (consolidado) ===== */
@media(max-width:768px){
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed; top: 64px; right: 0;
    width: 80%; max-width: 320px;
    height: calc(100vh - 64px);
    background: var(--dark);
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 24px 20px;
    box-shadow: -4px 0 24px rgba(0,0,0,.4);
    transform: translateX(100%); /* fica fora da tela quando fechado */
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 1002; /* acima do overlay (1000), abaixo da nav (1003) */
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; padding: 14px 18px; border-radius: 10px; width: 100%; }
  .nav-links a.nav-invest { text-align: center; }

  /* Reserva espaço para a barra inferior não cobrir o footer */
  body {
    padding-bottom: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0px));
  }

  /* Exibe a barra inferior no mobile */
  .bottom-nav { display: flex; }
}
