:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #ffedd5;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --white: #ffffff;
  --light: #f8fafc;
  --gray: #e2e8f0;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 18px 40px rgba(15, 23, 42, 0.14);
  --radius: 18px;
  --transition: all 0.3s ease;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--white);
  color: var(--text);
  line-height: 1.6;
  padding-top: 80px;

}

/* LINKS E BOTÕES */
a {
  text-decoration: none;
  transition: var(--transition);
}

.btn {
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(249, 115, 22, 0.35);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-outline-dark {
  border: 1px solid var(--dark);
  color: var(--dark);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* NAVBAR */
.navbar {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 14px 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: 0.5px;
}

.navbar-brand span {
  color: var(--primary);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  margin-left: 12px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.14), transparent 28%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  padding: 180px 0 110px;
}

.hero-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.12);
  color: #fdba74;
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.hero-card h5 {
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
}

.hero-stat strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
}

.hero-stat span {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* SECTIONS */
section {
  padding: 90px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 20px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

/* BENEFITS / CARDS */
.features {
  background: var(--light);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* HOW IT WORKS */
.steps {
  background: var(--white);
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.step-card h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* RESOURCES */
.resources {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.resource-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid #fed7aa;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

.resource-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.resource-box i {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 14px;
  display: inline-block;
}

.resource-box h6 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.resource-box p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.96rem;
}

/* INSTITUTIONAL CTA */
.cta-section {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.22), transparent 25%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
  border-radius: 28px;
  padding: 60px 40px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  margin-bottom: 0;
}

/* NUMBERS */
.stats {
  background: var(--light);
}

.stat-box {
  background: var(--white);
  border: 1px solid #f1f5f9;
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
}

.stat-box h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-box p {
  margin-bottom: 0;
  color: var(--text-light);
  font-weight: 500;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 60px 0 30px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand span {
  color: var(--primary);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
}

.footer-links h6 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 35px;
  padding-top: 20px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

/* UTILITIES */
.text-orange {
  color: var(--primary) !important;
}

.bg-soft-orange {
  background: var(--primary-light);
}

/* RESPONSIVO */
@media (max-width: 991px) {
  .hero {
    padding: 120px 0 80px;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-card {
    margin-top: 40px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .cta-section {
    padding: 40px 24px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .navbar-brand {
    font-size: 1.3rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .cta-section h2 {
    font-size: 1.7rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    right: 16px;
    bottom: 16px;
  }
}