.elementor-2120 .elementor-element.elementor-element-f279edf{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-b82ff51 *//* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4f46e5;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.navbar a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #4f46e5;
  transition: width .3s;
}

.navbar a:hover::after {
  width: 100%;
}

/* ================= MENU MOBILE ================= */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar ul {
    position: absolute;
    top: 100%;
    right: 20px;
    background: #ffffff;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    gap: 16px;
    display: none;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,.2);
  }

  .navbar ul.active {
    display: flex;
  }
}

/* ================= HERO ================= */
.hero {
  width: 100%;
  background: linear-gradient(135deg,#4f46e5,#6366f1);
  color: #ffffff;
  padding: 120px 20px 100px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: auto;
}

.hero h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  opacity: .95;
}

/* ================= BOTÕES ================= */
.buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.btn.primary {
  background: #22c55e;
  color: #ffffff;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(34,197,94,.35);
}

.btn.secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn.secondary:hover {
  background: #ffffff;
  color: #4f46e5;
}

/* ================= STATS ================= */
.stats {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
  gap: 22px;
}

.stats div {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.stats strong {
  font-size: 1.6rem;
  color: #4f46e5;
}

.stats span {
  display: block;
  font-size: .85rem;
  color: #6b7280;
}

/* ================= SEÇÕES ================= */
.section {
  width: 100%;
  padding: 90px 20px;
  text-align: center;
}

.section > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.section p {
  max-width: 760px;
  margin: auto;
  color: #4b5563;
}

.section.dark {
  background: #f1f5f9;
}

/* ================= GRID / CARDS ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 32px;
  margin-top: 45px;
}

.card {
  background: #ffffff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transition: all .35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

/* ================= CTA ================= */
.cta {
  width: 100%;
  background: linear-gradient(135deg,#22c55e,#16a34a);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.cta a {
  margin-top: 20px;
  display: inline-block;
}

/* ================= FOOTER ================= */
footer {
  background: #0f172a;
  color: #d1d5db;
  text-align: center;
  padding: 36px 20px;
  font-size: .9rem;
}/* End custom CSS */