:root {
  --primary: #5b266c;
  --secondary: #a95179;
  --secondary-light: #ce85a6;
  --dark: #43001f;
  --light: #f7f3f9;
  --bg: #ffffff;
}

/* =========================
   GLOBAL
========================= */

body {
  background: var(--bg);
  color: var(--dark);
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.navbar-brand img {
  height: 62px;
}

.nav-link {
  color: var(--primary);
  font-weight: 600;
  margin-left: 18px;
  transition: 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

/* =========================
   HERO
========================= */

.hero {
  padding: 72px 0 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: #f4eef7;
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.hero h1 {
  color: var(--primary);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 900px;
}

.hero p.lead,
.hero p {
  font-size: 1.16rem;
  line-height: 1.9;
  color: #666;
  max-width: 850px;
}

/* =========================
   CONTENT BOXES
========================= */

.highlight-box,
.warning-box,
.info-box {
  background: #faf7fc;
  border-left: 5px solid var(--primary);
  padding: 34px;
  border-radius: 18px;
  margin-top: 42px;
  box-shadow: 0 8px 24px rgba(91, 38, 108, 0.05);
}

.highlight-box p,
.warning-box p,
.info-box p {
  margin-bottom: 0;
}

/* =========================
   CTA BUTTONS
========================= */

.cta-btn,
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  padding: 15px 30px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 34px;
  transition: 0.3s ease;
  border: none;
}

.cta-btn:hover,
.whatsapp-btn:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   SECTION TITLES
========================= */

.section-title {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 34px;
  margin-top: 14px;
}

/* =========================
   CARDS
========================= */

.module-card,
.program-card,
.benefit-item,
.profile-card {
  background: #fff;
  border: 1px solid #ece7f0;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  transition: 0.35s ease;
  box-shadow: 0 8px 24px rgba(91, 38, 108, 0.04);
}

.module-card:hover,
.program-card:hover,
.benefit-item:hover,
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(91, 38, 108, 0.12);
}

.module-card h5,
.program-card h5 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.module-card p,
.program-card p {
  color: #777;
  margin-bottom: 0;
  line-height: 1.7;
}

/* =========================
   MODULE NUMBERS
========================= */

.module-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(91, 38, 108, 0.18);
}

/* =========================
   BENEFITS
========================= */

.benefits {
  margin-top: 70px;
}

.benefit-item {
  text-align: center;
  padding: 36px 22px;
}

.benefit-item i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 18px;
  display: block;
}

.benefit-item h6 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.benefit-item span {
  color: #777;
  line-height: 1.6;
}

/* =========================
   CTA BOX
========================= */

.cta-box {
  background: linear-gradient(
    135deg,
    var(--primary),
    #6d2c82
  );

  color: white;
  padding: 44px;
  border-radius: 24px;
  margin-top: 60px;

  box-shadow: 0 18px 40px rgba(91, 38, 108, 0.2);
}

.cta-box h3 {
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-box p {
  opacity: 0.92;
}

.cta-box .whatsapp-btn {
  background: #fff;
  color: var(--primary);
  margin-top: 10px;
}

.cta-box .whatsapp-btn:hover {
  background: #f4eef7;
}

/* =========================
   PROFILE SECTION
========================= */

.profile-card {
  margin-top: 42px;
  padding: 42px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}

.profile-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #f4eef7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-icon i {
  color: var(--primary);
  font-size: 2.8rem;
}

.profile-header h2 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.profile-role {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0;
}

.profile-content p {
  color: #666;
  line-height: 1.95;
  margin-bottom: 22px;
}

.profile-image {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #faf7fb;
  text-decoration: none;
  border-top: 1px solid #eee;
  padding: 34px 0;
  margin-top: 80px;
}

.social-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.5rem;
  margin-left: 18px;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: var(--secondary);
  text-decoration: none;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .hero {
    padding: 54px 0 44px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .profile-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {

  .hero h1 {
    font-size: 2.15rem;
    line-height: 1.15;
  }

  .hero p.lead,
  .hero p {
    font-size: 1.04rem;
  }

  .highlight-box,
  .warning-box,
  .info-box,
  .profile-card,
  .cta-box {
    padding: 26px;
  }

  .benefit-item {
    padding: 28px 18px;
  }

  .profile-header h2 {
    font-size: 1.5rem;
  }

  footer {
    text-align: center;
  }
}