.elementor-82 .elementor-element.elementor-element-833a7b4{--display:flex;}.elementor-82 .elementor-element.elementor-element-9989304{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3e1e199 */:root{
  --roxo-principal:#4C1D95;
  --roxo-secundario:#6D28D9;
  --cinza:#374151;
  --borda:#e5e7eb;
  --fundo:#ffffff;
  --roxo-claro:#f5f3ff;
}

.reecell-header{
  background:var(--fundo);
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
  border-bottom:1px solid var(--borda);
}

.reecell-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* LINHA ÚNICA */
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

/* LOGO */
.reecell-logo{
  font-size:22px;
  font-weight:800;
  color:var(--roxo-principal);
  text-decoration:none;
  white-space:nowrap;
}

/* MENU (não quebra) */
.reecell-nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:nowrap;
  white-space:nowrap;
  overflow:hidden;
}

.reecell-nav a{
  text-decoration:none;
  color:var(--cinza);
  font-weight:600;
  font-size:14.5px;
  padding:8px 8px;
  border-radius:10px;
  transition:.2s ease;
}

.reecell-nav a:hover{
  background:rgba(109,40,217,.08);
  color:var(--roxo-secundario);
}

/* CTA */
.reecell-cta{
  background:var(--roxo-secundario);
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
  white-space:nowrap;
  transition:.2s ease;
}

.reecell-cta:hover{
  background:var(--roxo-principal);
  transform:translateY(-1px);
}

/* BURGER (mobile) */
.reecell-burger{
  display:none;
  width:44px;
  height:40px;
  border-radius:10px;
  border:1px solid var(--borda);
  background:#fff;
  align-items:center;
  justify-content:center;
  gap:5px;
  flex-direction:column;
}
.reecell-burger span{
  width:18px;
  height:2px;
  background:var(--cinza);
  border-radius:2px;
  transition:.2s ease;
}
.reecell-burger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.reecell-burger.is-open span:nth-child(2){ opacity:0; }
.reecell-burger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* MENU MOBILE */
.reecell-mobile{
  display:none;
  padding:10px 20px 18px;
  border-top:1px solid var(--borda);
}
.reecell-mobile a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  text-decoration:none;
  color:var(--cinza);
  font-weight:700;
}
.reecell-mobile a:hover{
  background:rgba(109,40,217,.08);
  color:var(--roxo-principal);
}

/* RESPONSIVO */
@media (max-width: 980px){
  .reecell-nav{ display:none; }
  .reecell-cta{ display:none; } /* opcional: some CTA no mobile pra não apertar */
  .reecell-burger{ display:flex; }
  .reecell-mobile{ display:block; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-89b24c2 *//* ====== Base ====== */
.svc-hero, .svc-section { font-family: Arial, Helvetica, sans-serif; }
.lead { opacity: .95; }

.btn{
  display:inline-block; text-decoration:none; font-weight:800;
  padding:14px 22px; border-radius:12px; transition:.25s ease;
  white-space:nowrap;
}
.btn--primary{
  color:#fff; background:linear-gradient(135deg,#6D28D9,#4C1D95);
  box-shadow:0 14px 30px rgba(109,40,217,.28);
}
.btn--primary:hover{ transform:translateY(-3px); box-shadow:0 18px 40px rgba(109,40,217,.35); }

.btn--ghost{
  color:#fff; border:2px solid rgba(255,255,255,.7);
}
.btn--ghost:hover{ background:#fff; color:#4C1D95; }

.btn--whats{
  background:#25D366; color:#fff; padding:16px 26px;
  border-radius:14px; box-shadow:0 14px 30px rgba(0,0,0,.18);
}
.btn--whats:hover{ transform:translateY(-3px); }

/* ====== Hero ====== */
.svc-hero{
  max-width:1200px; margin:0 auto;
  padding:90px 20px;
  display:grid; grid-template-columns: 1.15fr .85fr; gap:40px;
  background:linear-gradient(135deg,#3B0764,#6D28D9);
  border-radius:22px;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.svc-hero__text h2{ font-size:34px; line-height:1.1; margin:0 0 14px; }
.svc-hero__text p{ font-size:18px; line-height:1.75; margin:0 0 22px; color:#EDE9FE; }
.svc-hero__buttons{ display:flex; gap:14px; flex-wrap:wrap; }

.svc-hero__media img{
  width:100%; height:100%;
  max-height:360px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 20px 45px rgba(0,0,0,.25);
}

/* ====== Sections ====== */
.svc-section{
  max-width:1200px; margin:32px auto 0;
  padding:70px 20px;
  border-radius:22px;
}
.svc-section h2{
  font-size:32px; margin:0 0 12px; color:#4C1D95;
}
.svc-section--light{
  background:linear-gradient(135deg,#F3E8FF,#EEF2FF);
}
.svc-section--dark{
  background:linear-gradient(135deg,#0F172A,#1E1B4B);
  color:#fff;
}
.svc-section--dark h2{ color:#fff; }
.svc-section--dark p{ color:#E5E7EB; }

/* ====== Cards ====== */
.cards{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.card{
  background:#fff;
  border:1px solid rgba(109,40,217,.15);
  border-radius:18px;
  padding:26px;
  box-shadow:0 12px 26px rgba(0,0,0,.06);
  transition:.25s ease;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(109,40,217,.18);
}
.card h3{ margin:0 0 10px; color:#6D28D9; font-size:18px; }
.card p{ margin:0; color:#475569; line-height:1.6; }

/* ====== Badges + CTA ====== */
.badges{
  display:flex; flex-wrap:wrap; gap:10px;
  margin:18px 0 26px;
}
.badge{
  padding:10px 14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  color:#E5E7EB;
  font-weight:700;
}
.cta-box{
  margin-top:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:26px;
}
.cta-box h3{ margin:0 0 8px; font-size:22px; }
.cta-box p{ margin:0 0 14px; }

/* ====== Gallery ====== */
.gallery{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.gallery img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 14px 30px rgba(0,0,0,.12);
  transition:.25s ease;
}
.gallery img:hover{ transform:scale(1.03); }

/* ====== FAQ ====== */
.svc-section--faq{
  background:linear-gradient(135deg,#4C1D95,#6D28D9);
  color:#fff;
}
.svc-section--faq h2{ color:#fff; }
.faq{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  padding:14px 16px;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.faq p{
  margin:10px 0 0;
  color:#EDE9FE;
  line-height:1.7;
}

/* ====== Responsive ====== */
@media (max-width: 1024px){
  .cards{ grid-template-columns:repeat(2,1fr); }
  .gallery{ grid-template-columns:1fr; }
  .gallery img{ height:280px; }
  .svc-hero{ grid-template-columns:1fr; }
  .svc-hero__media img{ max-height:320px; }
}/* End custom CSS */