/* =========================================================
   Appora — tema da marca (override do Zubuz)
   Troque as cores aqui para mudar a identidade do site inteiro.
   ========================================================= */

:root {
  --primary-color: #2A2FE6;      /* indigo da marca */
  --secondary-color: #C8FB4F;    /* verde-limão de destaque */
  --blue-bg: #2A2FE6;            /* cor dos botões/CTA */
  --heading-color: #0B1020;
  --body-color: #4A5066;
  --light-bg: #F6F7FB;

  /* Cores por produto (puxadas do ecossistema real) */
  --c-telefonia: #7C3AED;        /* operadora móvel - roxo */
  --c-mototaxi:  #1FA463;        /* mototáxi - verde */
  --c-mobilidade:#1D4ED8;        /* carros/uber - azul */
  --c-delivery:  #E53E3E;        /* delivery/ifood - vermelho */
}

/* Logo em texto (substitui o wordmark do template) */
.brand-logo a {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--heading-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.brand-logo a::before {
  content: "";
  flex: 0 0 auto;
  width: 34px; height: 34px;
  margin-right: 10px;
  background: url(../images/logo/appora-icon.svg) center/contain no-repeat;
}
.brand-logo a .brand-dot { color: #1A7A5E; }
.footer-logo-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.footer-logo-text::before {
  content: "";
  flex: 0 0 auto;
  width: 32px; height: 32px;
  margin-right: 10px;
  background: url(../images/logo/appora-icon.svg) center/contain no-repeat;
}

/* Hero com fundo gradiente da marca */
.ap-hero {
  background: radial-gradient(1200px 600px at 80% -10%, rgba(42,47,230,.12), transparent 60%),
              radial-gradient(900px 500px at 0% 0%, rgba(200,251,79,.18), transparent 55%),
              #ffffff;
}

/* Card de produto na home */
.ap-product-card {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid #ECEEF5;
  border-radius: 18px;
  padding: 34px 30px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.ap-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(16, 24, 64, .12);
  border-color: transparent;
}
.ap-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent, var(--primary-color));
}
.ap-product-ico {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
  background: var(--accent, var(--primary-color));
  margin-bottom: 22px;
}
.ap-product-card h3 {
  color: var(--heading-color);
  font-size: 23px;
  margin: 0 0 10px;
}
.ap-product-card p { color: var(--body-color); margin: 0 0 18px; }
.ap-product-link {
  font-weight: 700;
  color: var(--accent, var(--primary-color));
  display: inline-flex; align-items: center; gap: 8px;
}
.ap-product-link i { transition: transform .3s ease; }
.ap-product-card:hover .ap-product-link i { transform: translateX(5px); }

.ap-tag {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
  background: rgba(42,47,230,.08);
  color: var(--primary-color);
  margin-bottom: 18px;
}

/* Faixa de números/estatísticas */
.ap-stats { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.ap-stat { flex: 1 1 180px; }
.ap-stat h2 { font-size: 46px; margin: 0; color: #fff; }
.ap-stat p { margin: 4px 0 0; color: rgba(255,255,255,.7); }

/* Hero interno por produto */
.ap-page-hero {
  padding: 150px 0 70px;
  background: var(--accent-soft, #F6F7FB);
}
.ap-page-hero .ap-tag { background: rgba(0,0,0,.05); color: var(--accent, var(--primary-color)); }
.ap-page-hero h1 { font-size: 52px; line-height: 1.08; color: var(--heading-color); margin: 0 0 18px; }
.ap-page-hero p.lead { font-size: 19px; color: var(--body-color); max-width: 620px; }

/* botão com a cor do produto */
.ap-btn-accent {
  display: inline-block; font-weight: 700; font-size: 16px;
  padding: 16px 36px; border-radius: 6px; color: #fff !important;
  background: var(--accent, var(--primary-color));
  text-decoration: none; transition: filter .25s ease, transform .25s ease;
}
.ap-btn-accent:hover { filter: brightness(1.08); transform: translateY(-2px); }
.ap-btn-ghost {
  display: inline-block; font-weight: 700; font-size: 16px;
  padding: 14px 34px; border-radius: 6px;
  color: var(--heading-color) !important; background: transparent;
  border: 2px solid #E3E6F0; text-decoration: none; margin-left: 10px;
  transition: border-color .25s ease;
}
.ap-btn-ghost:hover { border-color: var(--accent, var(--primary-color)); }

/* lista de features com check colorido */
.ap-feature {
  background: #fff; border: 1px solid #ECEEF5; border-radius: 16px;
  padding: 30px 28px; height: 100%; transition: all .3s ease;
}
.ap-feature:hover { box-shadow: 0 18px 40px rgba(16,24,64,.08); transform: translateY(-4px); }
.ap-feature .ap-feat-ico {
  width: 54px; height: 54px; border-radius: 12px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent, var(--primary-color));
  background: var(--accent-soft, rgba(42,47,230,.08));
}
.ap-feature h3 { font-size: 20px; margin: 0 0 8px; color: var(--heading-color); }
.ap-feature p { margin: 0; color: var(--body-color); }

/* lista de bullets de "tudo incluso" */
.ap-checklist { list-style: none; margin: 0; padding: 0; }
.ap-checklist li {
  position: relative; padding: 10px 0 10px 36px; color: var(--heading-color);
  font-weight: 500; border-bottom: 1px solid #EEF0F6;
}
.ap-checklist li::before {
  content: "\f00c"; font-family: "Font Awesome 5 Free"; font-weight: 900;
  position: absolute; left: 0; top: 10px;
  color: var(--accent, var(--primary-color));
}

/* passo a passo */
.ap-step { text-align: center; padding: 10px; }
.ap-step .ap-step-num {
  width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: #fff;
  background: var(--accent, var(--primary-color));
}
.ap-step h3 { font-size: 20px; margin: 0 0 8px; }
.ap-step p { color: var(--body-color); margin: 0; }

/* seção CTA por produto */
.ap-cta {
  border-radius: 22px; padding: 60px; text-align: center; color: #fff;
  background: var(--accent, var(--primary-color));
}
.ap-cta h2 { color: #fff; font-size: 38px; margin: 0 0 14px; }
.ap-cta p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; }
.ap-cta .ap-btn-accent { background: #fff; color: var(--accent, var(--primary-color)) !important; }

/* preço */
.ap-price-card {
  background:#fff; border:1px solid #ECEEF5; border-radius:18px; padding:36px 32px; height:100%;
  transition: all .3s ease;
}
.ap-price-card.featured { border-color: var(--accent, var(--primary-color)); box-shadow: 0 20px 50px rgba(16,24,64,.12); }
.ap-price-card h4 { font-size:18px; color:var(--body-color); margin:0 0 12px; }
.ap-price-card .ap-price { font-size:44px; font-weight:800; color:var(--heading-color); line-height:1; }
.ap-price-card .ap-price small { font-size:16px; font-weight:600; color:var(--body-color); }
.ap-price-card ul { list-style:none; margin:24px 0; padding:0; }
.ap-price-card li { padding:8px 0 8px 28px; position:relative; color:var(--body-color); }
.ap-price-card li::before { content:"\f00c"; font-family:"Font Awesome 5 Free"; font-weight:900; position:absolute; left:0; color:var(--accent, var(--primary-color)); }

.ap-section-head { text-align:center; max-width:640px; margin:0 auto 50px; }
.ap-section-head .ap-tag { background: var(--accent-soft, rgba(42,47,230,.08)); color: var(--accent, var(--primary-color)); }
.ap-section-head h2 { font-size:40px; color:var(--heading-color); margin:0 0 14px; }
.ap-section-head p { color:var(--body-color); font-size:17px; margin:0; }

/* Breadcrumb claro (texto escuro sobre o fundo da cor do produto) */
.zubuz-breadcrumb { padding: 150px 0 70px; }
.zubuz-breadcrumb .post__title {
  color: var(--heading-color);
  font-size: 44px; line-height: 1.12; margin-bottom: 22px;
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.zubuz-breadcrumb .breadcrumbs ul li { color: var(--accent, var(--primary-color)); }
.zubuz-breadcrumb .breadcrumbs ul li a { color: var(--body-color); }
@media (max-width: 768px) { .zubuz-breadcrumb .post__title { font-size: 30px; } }

/* Artigo do blog */
.ap-meta { color:#8A90A2; font-weight:600; margin:0 0 16px; }
.ap-article { font-size:17px; color:var(--body-color); line-height:1.85; }
.ap-article .ap-hero-img { width:100%; border-radius:16px; margin:0 0 32px; display:block; }
.ap-article h2 { font-size:28px; color:var(--heading-color); margin:36px 0 14px; line-height:1.25; }
.ap-article h3 { font-size:21px; color:var(--heading-color); margin:26px 0 10px; }
.ap-article p { margin:0 0 18px; }
.ap-article ul { margin:0 0 22px; padding:0; list-style:none; }
.ap-article ul li { position:relative; padding:8px 0 8px 30px; }
.ap-article ul li::before { content:"\f00c"; font-family:"Font Awesome 5 Free"; font-weight:900; position:absolute; left:0; top:8px; color:var(--primary-color); }
.ap-article blockquote { margin:24px 0; padding:18px 24px; border-left:4px solid var(--primary-color); background:var(--light-bg); border-radius:0 10px 10px 0; font-size:19px; color:var(--heading-color); }
.ap-post-cta { margin-top:40px; padding:32px; border-radius:18px; background:var(--light-bg); border:1px solid #ECEEF5; text-align:center; }
.ap-post-cta h3 { margin:0 0 10px; color:var(--heading-color); font-size:22px; }
.ap-post-cta p { margin:0 0 20px; color:var(--body-color); }

@media (max-width: 768px) {
  .ap-page-hero h1 { font-size: 36px; }
  .ap-section-head h2 { font-size: 30px; }
  .ap-cta { padding: 40px 24px; }
  .ap-cta h2 { font-size: 28px; }
  .ap-btn-ghost { margin-left: 0; margin-top: 10px; }
}
