/* style-brame.css */
/* Brame Automação - Estilos principais */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #0093DD;
  --blue-dark: #006fa8;
  --blue-light: #e6f6ff;
  --gray: #838281;
  --dark: #0f1117;
  --dark2: #1a1d27;
  --white: #ffffff;
  --green-wa: #25D366;
  --red-pain: #e53935;
  --text: #1c1c1c;
  --text-muted: #5a5a6a;
  --container: 1100px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: #fff; color: var(--text); overflow-x: hidden; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.nav {
  background: var(--dark);
  padding: 16px 0;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav img { height: 30px; filter: brightness(0) invert(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-cta:hover { background: #1da851; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── HERO ── */
.hero {
  background: var(--dark);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,147,221,0.15);
  border: 1px solid rgba(0,147,221,0.3);
  color: #5cc8ff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-badge-dot { width: 6px; height: 6px; background: #5cc8ff; border-radius: 50%; }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero h1 em { font-style: italic; color: var(--blue); }

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas { display: flex; flex-direction: column; gap: 12px; }

.cta-wa-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-wa);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-wa-primary:hover { background: #1da851; }
.cta-wa-primary svg { width: 22px; height: 22px; flex-shrink: 0; }

.hero-cta-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
}

.hero-stat {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* ── SECTION COMMONS ── */
section { padding: 72px 0; }
section.alt { background: #f7f8fc; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-tag-dot { width: 6px; height: 6px; border-radius: 50%; }
.tag-blue { color: var(--blue); }
.tag-blue .section-tag-dot { background: var(--blue); }
.tag-red { color: var(--red-pain); }
.tag-red .section-tag-dot { background: var(--red-pain); }

.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}

.section-h2 span { color: var(--blue); }
.section-intro { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 600px; }

.section-header { margin-bottom: 40px; }

/* ── DOR ── */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pain-card {
  background: #fff;
  border: 1px solid #eee;
  border-left: 4px solid var(--red-pain);
  border-radius: 0 14px 14px 0;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pain-icon {
  width: 44px; height: 44px;
  background: #fff5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-icon svg { width: 22px; height: 22px; }
.pain-title { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.pain-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── PRODUTOS ── */
.product-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 72px;
}

.product-block:last-child { margin-bottom: 0; }

.product-img-wrap {
  background: var(--blue-light);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.08;
}

.product-img-wrap img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.product-img-wrap:hover img { transform: scale(1.03); }

.product-tag {
  display: inline-block;
  background: var(--dark);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.product-pain {
  font-size: 14px;
  font-weight: 700;
  color: var(--red-pain);
  margin-bottom: 12px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.excl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--red-pain);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.product-solution {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--blue-light);
  border-radius: 10px;
  border-left: 3px solid var(--blue);
}

.product-benefits { list-style: none; margin-bottom: 24px; }

.product-benefits li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-benefits li:last-child { border-bottom: none; }

.check {
  width: 20px; height: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check::after {
  content: '';
  display: block;
  width: 5px; height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}

.cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-wa:hover { background: #1da851; }
.cta-wa svg { width: 20px; height: 20px; flex-shrink: 0; }

.product-divider {
  height: 1px;
  background: linear-gradient(to right, var(--blue), transparent);
  opacity: 0.2;
  margin: 72px 0;
}

/* ── COMBO ── */
.combo { background: var(--dark); padding: 72px 0; position: relative; overflow: hidden; }

.combo::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.05;
}

.combo-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.combo-tag {
  display: inline-block;
  background: rgba(0,147,221,0.2);
  border: 1px solid rgba(0,147,221,0.3);
  color: #5cc8ff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.combo h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
}

.combo h2 span { color: var(--blue); }

.combo-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 28px;
}

.combo-flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.combo-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}

.combo-step.hi {
  background: rgba(0,147,221,0.15);
  border-color: rgba(0,147,221,0.3);
  color: #7dd3f8;
}

.combo-arrow-v {
  color: rgba(255,255,255,0.2);
  font-size: 20px;
  text-align: center;
  line-height: 1;
}

.cta-wa-green-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-wa-green-outline:hover { background: #1da851; }
.cta-wa-green-outline svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── PROVA ── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.proof-item {
  background: var(--white);
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 20px 12px;
  text-align: center;
}

.proof-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.proof-label {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
  padding: 24px;
}

.testimonial-quote {
  font-family: Georgia, serif;
  font-size: 36px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}

.testimonial-author { font-size: 13px; color: var(--text-muted); font-weight: 700; }

/* ── COMO FUNCIONA ── */
.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 32px;
  position: relative;
}

.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px; top: 42px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--blue), rgba(0,147,221,0.1));
}

.step-num {
  width: 40px; height: 40px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-title { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.faq-item {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 20px;
}

.faq-q {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.7; padding-left: 30px; }

/* ── CTA FINAL ── */
.cta-final {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 400px; height: 400px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.05;
}

.cta-final-inner { position: relative; z-index: 1; }

.cta-final h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
}

.cta-final h2 span { color: var(--blue); }
.cta-final p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-wa);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  padding: 18px 36px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 14px;
}

.cta-final-btn:hover { background: #1da851; }
.cta-final-btn svg { width: 24px; height: 24px; }
.cta-final-small { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── FOOTER ── */
footer {
  background: var(--blue);
  padding: 24px;
  text-align: center;
}

footer img { height: 28px; filter: brightness(0) invert(1); margin-bottom: 8px; display: block; margin-left: auto; margin-right: auto; }
footer p { font-size: 12px; color: rgba(255,255,255,0.75); }

/* ── FLOATING WA ── */
.wa-float {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 999;
}

.wa-float a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: background 0.2s, transform 0.2s;
}

.wa-float a:hover { background: #1da851; transform: translateY(-2px); }
.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── RESPONSIVE: TABLET ── */
@media (min-width: 640px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .combo-flow { flex-direction: row; align-items: center; }
  .combo-arrow-v { transform: rotate(-90deg); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .how-step { flex-direction: column; }
  .how-step:not(:last-child)::after { display: none; }
  .proof-grid { gap: 20px; }
}

/* ── RESPONSIVE: DESKTOP ── */
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .hero-ctas { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .hero-cta-sub { margin-left: 4px; }
  .hero-stats { margin-left: 100px; margin-right: 100px;}

  .product-block { grid-template-columns: 1fr 1fr; gap: 60px; }
  .product-block.reverse .product-img-wrap { order: 2; }
  .product-block.reverse .product-info { order: 1; }

  .combo-inner { grid-template-columns: 1fr 1fr; }
}