/* Colordente — Styles */
:root {
  --gradient: linear-gradient(90deg, #3498db, #9b59b6, #e91e8c, #ff6b35);
  --gradient-soft: linear-gradient(135deg, #3498db 0%, #9b59b6 40%, #e91e8c 70%, #ff6b35 100%);
  --primary: #e91e8c;
  --primary-dark: #c2187a;
  --blue: #3498db;
  --purple: #9b59b6;
  --text: #2d3436;
  --text-secondary: #636e72;
  --bg: #ffffff;
  --bg-light: #f8f9fc;
  --border: #e9ecef;
  --radius: 16px;
  --radius-pill: 50px;
  --shadow: 0 8px 32px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --font: 'Nunito', system-ui, sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 760px; }
.text-center { text-align: center; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1002;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

.logo img { height: 40px; width: auto; }

.nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav a {
  padding: .5rem .85rem; border-radius: var(--radius-pill);
  color: var(--text-secondary); font-weight: 600; font-size: .9rem;
}
.nav a:hover, .nav a.active { color: var(--primary); background: rgba(233,30,140,.06); }
.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  margin-left: .5rem;
}
.nav-cta:hover { opacity: .9; color: #fff !important; }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 10px;
  margin-left: auto; position: relative; z-index: 1;
  min-width: 44px; min-height: 44px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0, 0, 0, .35);
}
.nav-backdrop.open { display: block; }

body.nav-open { overflow: hidden; }

main { padding-top: var(--header-h); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.75rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .95rem; font-family: inherit;
  border: 2px solid transparent; cursor: pointer; transition: all .2s;
  text-decoration: none;
}
.btn-gradient {
  background: var(--gradient); color: #fff !important;
  box-shadow: 0 4px 20px rgba(233,30,140,.3);
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(233,30,140,.4); color: #fff !important; }
.btn-outline { border-color: var(--primary); color: var(--primary) !important; background: transparent; }
.btn-outline:hover { background: rgba(233,30,140,.06); }
.btn-outline-white { border-color: rgba(255,255,255,.6); color: #fff !important; }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-full { width: 100%; }

/* ── HERO ── */
.hero {
  position: relative; min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; overflow: hidden;
  padding: 3rem 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--gradient-soft);
  clip-path: ellipse(120% 100% at 50% 0%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.2);
  color: #fff; padding: .4rem 1rem; border-radius: var(--radius-pill);
  font-size: .85rem; font-weight: 600; margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 1rem;
}
.hero-sub { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; gap: 2rem;
}
.hero-stats div { color: #fff; min-width: 0; }
.hero-stats strong { display: block; font-size: 1.5rem; line-height: 1.2; }
.hero-stats span { display: block; font-size: .8rem; opacity: .8; line-height: 1.35; }

.hero-phone {
  position: relative; display: flex; justify-content: center;
  min-height: 420px; padding-right: 2.5rem;
}
.phone-mockup {
  width: 240px; border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid rgba(255,255,255,.3);
  background: #000; position: relative; z-index: 2;
}
.phone-mockup img { width: 100%; }
.phone-mockup-secondary {
  position: absolute; right: 0; top: 60px; width: 180px;
  opacity: .85; transform: rotate(6deg); z-index: 1;
}

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-light { background: var(--bg-light); }
.section-gradient { background: var(--gradient-soft); color: #fff; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin: .5rem 0; }
.section-header p { color: var(--text-secondary); max-width: 560px; margin: 0 auto; }
.section-header-light h2, .section-header-light p { color: #fff; }
.section-header-light p { opacity: .85; }

.section-tag {
  display: inline-block; color: var(--primary); font-weight: 700;
  font-size: .85rem; text-transform: uppercase; letter-spacing: .08em;
}
.section-gradient .section-tag { color: rgba(255,255,255,.9); }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card {
  background: #fff; border-radius: var(--radius); padding: 2rem;
  text-align: center; box-shadow: var(--shadow); position: relative;
  transition: transform .2s;
}
.step-card:hover { transform: translateY(-4px); }
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; background: var(--gradient); color: #fff;
  border-radius: 50%; font-size: .8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-icon { font-size: 2.5rem; margin: .5rem 0 1rem; }
.step-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.step-card p { color: var(--text-secondary); font-size: .9rem; }

/* ── SHOWCASE ── */
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.showcase-text h2 { font-size: 2rem; font-weight: 800; margin: .5rem 0 1rem; }
.showcase-text p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.feature-list { list-style: none; margin-bottom: 2rem; }
.feature-list li { padding: .4rem 0; font-weight: 600; color: var(--text); }

.showcase-carousel { position: relative; }
.carousel-track { position: relative; height: 480px; }
.carousel-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
  display: flex; justify-content: center;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img {
  max-height: 480px; width: auto; border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 1rem; }
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: var(--border); cursor: pointer; transition: .2s;
}
.carousel-dots button.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature-card {
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 1.75rem; text-align: center;
  border: 1px solid rgba(255,255,255,.15);
}
.feature-card-light {
  background: #fff; box-shadow: var(--shadow); border: none; color: var(--text);
}
.feature-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.feature-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.feature-card p { font-size: .85rem; opacity: .85; }
.feature-card-light p { color: var(--text-secondary); opacity: 1; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.faq-item summary {
  padding: 1.25rem 1.5rem; font-weight: 700; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--primary); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.5rem 1.25rem; color: var(--text-secondary); font-size: .95rem; }
.faq-search input {
  width: 100%; padding: 1rem 1.25rem; border: 2px solid var(--border);
  border-radius: var(--radius-pill); font-family: inherit; font-size: 1rem;
  margin-bottom: 1.5rem; outline: none;
}
.faq-search input:focus { border-color: var(--primary); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img { height: 180px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-placeholder {
  height: 100%; background: var(--gradient-soft);
}
.blog-card-body { padding: 1.25rem; }
.blog-card-body time { font-size: .8rem; color: var(--text-secondary); }
.blog-card-body h3 { font-size: 1.05rem; margin: .5rem 0; line-height: 1.4; }
.blog-card-body h3 a { color: var(--text); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: .9rem; color: var(--text-secondary); margin-bottom: .75rem; }
.read-more { font-weight: 700; font-size: .9rem; }

/* ── CTA ── */
.cta-section { background: var(--gradient-soft); color: #fff; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-text h2 { font-size: 1.8rem; font-weight: 800; }
.cta-section-sm { padding: 3rem 0; background: var(--bg-light); }

.store-buttons { display: flex; flex-direction: column; gap: .75rem; }
.store-buttons-lg { flex-direction: row; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: .75rem;
  background: #fff; color: var(--text) !important;
  padding: .55rem 1.1rem; border-radius: 10px; min-width: 168px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  color: var(--text) !important;
}
.store-btn-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.store-btn-icon img { width: 24px; height: 24px; object-fit: contain; display: block; }
.store-btn-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-btn-label { font-size: .65rem; color: var(--text-secondary); }
.store-btn-name { font-size: 1.05rem; font-weight: 800; color: var(--text); }
.site-footer .store-btn { background: #fff; }
.cta-section .store-btn { background: #fff; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--gradient-soft); color: #fff;
  padding: 4rem 0 3rem; text-align: center;
}
.page-hero-sm { padding: 3rem 0 2rem; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin: .5rem 0; }
.page-hero p { opacity: .9; max-width: 600px; margin: 0 auto; }
.page-hero time { opacity: .8; font-size: .9rem; }
.back-link { color: rgba(255,255,255,.8); font-size: .9rem; display: inline-block; margin-bottom: 1rem; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-content h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.about-content p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.about-cards { display: grid; gap: 1rem; }
.about-card {
  background: #fff; padding: 1.25rem; border-radius: var(--radius);
  box-shadow: var(--shadow); border-left: 4px solid var(--primary);
}
.about-card h3 { margin-bottom: .5rem; }
.about-card p { color: var(--text-secondary); font-size: .9rem; margin: 0; }
.about-visual { position: relative; text-align: center; }
.about-phone {
  max-width: 280px; margin: 0 auto; border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.about-symbol {
  position: absolute; bottom: -20px; right: 20%; width: 80px;
  opacity: .6;
}

/* ── SUPPORT ── */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.support-card {
  background: #fff; border-radius: var(--radius); padding: 2rem;
  text-align: center; box-shadow: var(--shadow);
}
.support-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.support-card h3 { margin-bottom: .5rem; }
.support-card p { color: var(--text-secondary); font-size: .9rem; margin-bottom: 1.25rem; }
.support-hours h2 { text-align: center; margin-bottom: 1.5rem; }
.hours-table {
  max-width: 400px; margin: 0 auto; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.hours-table div {
  display: flex; justify-content: space-between; padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.hours-table div:last-child { border: none; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2.5rem; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start;
}
.contact-item span { font-size: 1.5rem; }
.contact-item strong { display: block; margin-bottom: .15rem; }
.contact-item p { color: var(--text-secondary); font-size: .9rem; margin: 0; }

.contact-form-wrap {
  background: #fff; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem; border: 2px solid var(--border);
  border-radius: 12px; font-family: inherit; font-size: .95rem; outline: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }

.alert { padding: 1rem; border-radius: 10px; margin-bottom: 1rem; font-weight: 600; }
.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }

/* ── POST ── */
.post-featured-img {
  width: 100%; border-radius: var(--radius); margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.post-content { line-height: 1.8; color: var(--text-secondary); }
.post-content p { margin-bottom: 1rem; }

/* ── FOOTER ── */
.site-footer {
  background: #1a1a2e; color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem; padding-bottom: 3rem;
}
.footer-brand p { margin: 1rem 0; font-size: .9rem; max-width: 280px; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a { font-size: 1.3rem; opacity: .8; }
.footer-links h4 { color: #fff; margin-bottom: 1rem; font-size: .95rem; }
.footer-links a, .footer-links p {
  display: block; color: rgba(255,255,255,.6); font-size: .9rem;
  margin-bottom: .5rem;
}
.footer-links a:hover { color: #fff; }
.footer-download h4 { color: #fff; margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0; text-align: center; font-size: .85rem;
}

.whatsapp-float {
  display: none;
}

/* ── PLANOS ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plan-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-highlighted {
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              var(--gradient) border-box;
  border: 2px solid transparent;
  box-shadow: 0 12px 40px rgba(233,30,140,.15);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: .35rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: .5rem;
  text-align: center;
}

.plan-desc {
  color: var(--text-secondary);
  font-size: .9rem;
  text-align: center;
  margin-bottom: 1.25rem;
  min-height: 2.5rem;
}

.plan-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-price strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.plan-price span {
  color: var(--text-secondary);
  font-size: .95rem;
}

.plan-features {
  list-style: none;
  margin: 0 0 1.5rem;
  flex: 1;
}

.plan-features li {
  padding: .45rem 0 .45rem 1.5rem;
  font-size: .9rem;
  color: var(--text-secondary);
  position: relative;
  border-bottom: 1px solid var(--border);
}

.plan-features li:last-child { border-bottom: none; }

.plan-type-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--bg-light); color: var(--primary);
  border: 2px solid var(--primary);
  font-size: .7rem; font-weight: 800;
  padding: .3rem .75rem; border-radius: var(--radius-pill);
}

/* ── TABELA COMPARATIVA ── */
.plans-comparison-wrap { margin-top: 1rem; }
.plans-comparison-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
.plans-comparison {
  width: 100%; min-width: 640px;
  border-collapse: collapse; font-size: .9rem;
}
.plans-comparison th, .plans-comparison td {
  padding: .85rem 1rem; text-align: center;
  border-bottom: 1px solid var(--border);
}
.plans-comparison .cmp-feature-col,
.plans-comparison .cmp-feature-name {
  text-align: left; font-weight: 600;
  position: sticky; left: 0; background: #fff; z-index: 2;
  min-width: 180px;
}
.plans-comparison thead th {
  background: var(--bg-light); vertical-align: bottom;
  padding-top: 1.25rem;
}
.plans-comparison .cmp-highlight { background: rgba(233,30,140,.04); }
.plans-comparison .cmp-type {
  display: block; font-size: .65rem; font-weight: 800;
  letter-spacing: .08em; color: var(--primary); margin-bottom: .25rem;
}
.plans-comparison .cmp-plan-name { display: block; font-size: 1rem; font-weight: 800; }
.plans-comparison .cmp-plan-price { display: block; font-size: .85rem; color: var(--primary); font-weight: 700; margin-top: .25rem; }
.plans-comparison .cmp-plan-price small { font-weight: 500; color: var(--text-secondary); }
.plans-comparison .cmp-category-row td {
  background: var(--gradient-soft); color: #fff;
  font-weight: 800; font-size: .75rem; text-transform: uppercase;
  letter-spacing: .06em; text-align: left !important;
}
.cmp-yes { color: var(--primary); font-weight: 800; font-size: 1.1rem; }
.cmp-no { color: #ccc; }
.cmp-text { font-weight: 600; color: var(--text); font-size: .85rem; }
.plans-comparison tfoot td { padding: 1rem; border-bottom: none; }
.btn-sm { padding: .55rem 1rem; font-size: .8rem; }

/* ── SOCIAL ICONS ── */
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover { background: var(--primary); transform: translateY(-2px); color: #fff !important; }
.social-link--whatsapp:hover { background: #25d366; }
.footer-cnpj { font-size: .75rem; opacity: .55; margin: .5rem 0; }

/* ── CHAT WIDGET ── */
.chat-widget { position: fixed; bottom: 88px; right: 16px; z-index: 998; }
.chat-toggle {
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--gradient); color: #fff;
  box-shadow: 0 8px 28px rgba(233,30,140,.35);
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: transform .2s;
}
.chat-toggle:hover { transform: scale(1.05); }
.chat-toggle-badge {
  position: absolute; top: 2px; right: 2px;
  background: #ff4757; color: #fff; font-size: .65rem; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.chat-panel {
  position: absolute; bottom: 68px; right: 0;
  width: min(340px, calc(100vw - 32px));
  background: #fff; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  overflow: hidden; border: 1px solid var(--border);
}
.chat-header {
  background: var(--gradient-soft); color: #fff;
  padding: .85rem 1rem; display: flex; align-items: center; justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: .65rem; }
.chat-header-info img { border-radius: 8px; background: #fff; padding: 2px; }
.chat-header-info strong { display: block; font-size: .95rem; }
.chat-header-info span { font-size: .75rem; opacity: .85; }
.chat-close { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1; }
.chat-body { padding: 1rem; max-height: 260px; overflow-y: auto; background: var(--bg-light); }
.chat-msg { padding: .65rem .85rem; border-radius: 12px; font-size: .88rem; margin-bottom: .65rem; max-width: 90%; line-height: 1.45; }
.chat-msg--bot { background: #fff; border: 1px solid var(--border); }
.chat-msg--user { background: var(--primary); color: #fff; margin-left: auto; }
.chat-quick { display: flex; flex-wrap: wrap; gap: .4rem; }
.chat-quick button {
  border: 1px solid var(--primary); background: #fff; color: var(--primary);
  border-radius: 20px; padding: .35rem .75rem; font-size: .75rem; font-weight: 700;
  cursor: pointer; font-family: inherit;
}
.chat-footer { padding: .75rem; border-top: 1px solid var(--border); }
.chat-whatsapp {
  display: block; text-align: center; background: #25d366; color: #fff !important;
  padding: .65rem; border-radius: 10px; font-weight: 700; font-size: .85rem;
}

/* ── MOBILE APP NAV ── */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: .35rem .25rem calc(.35rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,.06);
}
.mobile-bottom-nav a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: .35rem .15rem; color: var(--text-secondary) !important; font-size: .65rem; font-weight: 700;
}
.mobile-bottom-nav a svg { width: 22px; height: 22px; }
.mobile-bottom-nav a.active { color: var(--primary) !important; }

@media (min-width: 1025px) {
  .menu-toggle { display: none; }
  .nav-backdrop { display: none !important; }
  .nav {
    position: static;
    transform: none;
    height: auto;
    max-height: none;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    padding: 0;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
  }
  .nav a {
    width: auto;
    text-align: center;
    padding: .5rem .85rem;
    font-size: .9rem;
  }
  .nav-cta { margin-left: .5rem; margin-top: 0; }
  .hero { overflow: hidden; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-phone {
    order: 0;
    width: auto;
    max-width: none;
    min-height: 420px;
    margin: 0;
    padding: 0 2.5rem 0 0;
  }
  .phone-mockup { width: 240px; }
  .phone-mockup-secondary {
    display: block;
    position: absolute;
    right: 0;
    top: 60px;
    width: 180px;
  }
  .hero-stats { display: flex; gap: 2rem; }
  .hero-bg { clip-path: ellipse(120% 100% at 50% 0%); border-radius: 0; }
}

@media (max-width: 1024px) {
  .hero-grid, .showcase-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-phone {
    order: -1;
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    min-height: 280px;
    margin: 0 auto 1.25rem;
    padding: 0 .5rem;
  }
  .phone-mockup {
    width: 210px;
    position: relative;
    z-index: 2;
  }
  .phone-mockup-secondary {
    display: block;
    position: absolute;
    right: 0;
    top: 48px;
    width: 165px;
    opacity: .88;
    transform: rotate(6deg);
    z-index: 1;
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .menu-toggle { display: flex; }
  .nav {
    margin-left: 0;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    align-content: flex-start;
    gap: .35rem;
    padding: 1rem;
    box-shadow: var(--shadow);
    transform: translateX(-105%);
    transition: transform .3s ease;
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    width: 100%;
    text-align: left;
    padding: .85rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
  }
  .nav-cta { margin: 0; margin-top: .25rem; }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .hero-stats div { text-align: center; }
  .hero-stats strong { font-size: 1.2rem; }
  .hero-stats span { font-size: .72rem; }

  .hero-bg {
    clip-path: none;
    border-radius: 0 0 40px 40px;
  }
  .hero {
    min-height: auto;
    padding-bottom: 3.5rem;
  }
  .hero-actions { margin-bottom: 1.75rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .mobile-bottom-nav { display: flex; }
  .chat-widget { bottom: calc(72px + env(safe-area-inset-bottom)); right: 12px; }
  .nav {
    bottom: calc(64px + env(safe-area-inset-bottom));
    height: calc(100dvh - var(--header-h) - 64px - env(safe-area-inset-bottom));
    max-height: calc(100dvh - var(--header-h) - 64px - env(safe-area-inset-bottom));
  }

  .site-header { background: #fff; }
  .header-inner { padding: 0 .5rem; }
  .logo img { height: 34px; }

  .hero { padding: 1.5rem 0 5rem; overflow: hidden; }
  .hero .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-content { width: 100%; max-width: 100%; padding-bottom: .5rem; }
  .hero-bg {
    clip-path: none;
    border-radius: 0 0 32px 32px;
  }
  .hero h1 { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; margin-bottom: 1.25rem; }
  .hero-actions .btn { width: 100%; }
  .hero-phone {
    max-width: 300px;
    min-height: 250px;
    margin-bottom: 1rem;
  }
  .phone-mockup { width: 185px; }
  .phone-mockup-secondary {
    width: 145px;
    top: 40px;
    right: -2px;
  }
  .hero-stats {
    gap: .5rem .5rem;
    margin-bottom: .75rem;
    padding: 0 .15rem;
  }
  .hero-stats strong { font-size: 1rem; }
  .hero-stats span {
    font-size: .62rem;
    line-height: 1.25;
    overflow-wrap: break-word;
  }

  .section { padding: 2.5rem 0; }
  .section-header h2 { font-size: 1.5rem; }
  .page-hero { padding: 2.5rem 0 2rem; }

  .plan-card { padding: 1.5rem 1.25rem; }
  .plans-comparison { min-width: 520px; font-size: .82rem; }
  .plans-comparison th, .plans-comparison td { padding: .65rem .5rem; }

  .features-grid, .blog-grid, .support-grid, .plans-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 1rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .store-buttons-lg { flex-direction: column; align-items: stretch; }
  .store-btn { width: 100%; min-width: 0; }
  .carousel-track { height: 340px; }
}

/* ── LGPD / Cookies / Legal ── */
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.legal-content h2 { font-size: 1.15rem; margin: 1.75rem 0 .75rem; font-weight: 800; }
.legal-content p, .legal-content li { color: var(--text-secondary); margin-bottom: .75rem; line-height: 1.7; }
.legal-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .75rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a { color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 600; }
.footer-legal a:hover { color: #fff; }
.cookie-consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: rgba(26,26,46,.96); color: #fff; padding: 1rem;
  box-shadow: 0 -8px 30px rgba(0,0,0,.2);
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
}
.cookie-consent-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.cookie-consent p { margin: 0; font-size: .9rem; line-height: 1.5; max-width: 720px; }
.cookie-consent a { color: #ff8fab; font-weight: 700; }
.cookie-consent-actions { display: flex; gap: .65rem; flex-wrap: wrap; }
@media (max-width: 768px) {
  .cookie-consent-inner { flex-direction: column; align-items: stretch; }
  .cookie-consent-actions .btn { width: 100%; }
}
