:root {
  --purple: #460897;
  --purple-dark: #2d0560;
  --purple-light: #6b0dc1;
  --purple-pale: #e8d5f5;
  --red: #ff3b30;
  --yellow: #ffd60a;
  --green: #32d74b;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f7;
  --gray-200: #e5e5ea;
  --gray-300: #d1d1d6;
  --gray-400: #c7c7cc;
  --gray-600: #8e8e93;
  --gray-700: #636366;
  --gray-800: #48484a;
  --gray-900: #1c1c1e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[data-lucide] {
  stroke-width: 2;
}

::selection {
  background: var(--purple);
  color: var(--white);
}

/* ============================================
   HEADER
============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--purple);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(70, 8, 151, 0.4);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-icon {
  border-radius: 10px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav a:hover {
  color: var(--yellow);
}

nav a:hover::after {
  width: 100%;
}

.header-cta {
  background: var(--yellow);
  color: var(--gray-900);
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(255, 214, 10, 0.3);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 214, 10, 0.5);
  background: var(--white);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  padding: 160px 40px 100px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--purple-pale) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}

.hero-content h1 {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 28px;
  max-width: 900px;
}

.highlight {
  color: var(--purple);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 14px;
  background: linear-gradient(90deg, var(--purple-pale), transparent);
  z-index: -1;
  opacity: 0.6;
}

.hero-subtitle {
  font-size: 22px;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 680px;
  margin-bottom: 48px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 18px 36px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(70, 8, 151, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(70, 8, 151, 0.3);
  background: var(--purple-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--purple);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--purple);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* ============================================
   STATS SECTION
============================================ */
.stats {
  padding: 80px 40px;
  background: linear-gradient(
    180deg,
    var(--purple) 0%,
    var(--purple-dark) 100%
  );
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.5;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-family: "Urbanist", sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

/* ============================================
   SECTION HEADERS
============================================ */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

/* ============================================
   FOUNDERS SECTION
============================================ */
.founders {
  padding: 120px 40px;
  background: var(--white);
}

.founders-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.founder-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.founder-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--red), #ff6b6b);
}

.founder-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--yellow), #ffe566);
}

.founder-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--green), #6be56b);
}

.founder-card:hover::before {
  transform: scaleX(1);
}

.founder-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--gray-300);
}

.founder-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
  position: relative;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(29, 29, 29, 0.9));
}

.founder-info {
  padding: 32px;
  background: var(--white);
}

.founder-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.founder-card:nth-child(1) .founder-badge {
  background: rgba(50, 215, 75, 0.1);
  color: var(--green);
}

.founder-card:nth-child(2) .founder-badge {
  background: rgba(255, 59, 48, 0.1);
  color: var(--red);
}

.founder-card:nth-child(3) .founder-badge {
  background: rgba(255, 214, 10, 0.15);
  color: #cca300;
}

.founder-name {
  font-family: "Urbanist", sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.founder-role {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 4px;
}

.founder-title {
  font-size: 14px;
  color: var(--gray-500);
}

/* ============================================
   TARGET AUDIENCE
============================================ */
.target-audience {
  padding: 100px 40px;

  position: relative;
  overflow: hidden;
}

.target-audience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="3" r="2" fill="rgba(255,255,255,0.08)"/></svg>');
  background-size: 60px 60px;
  opacity: 0.3;
}

.target-audience .section-container {
  position: relative;
  z-index: 10;
}

.target-audience .section-title {
  color: var(--white);
}

.audience-list {
  display: grid;
  gap: 24px;
  margin-bottom: 60px;
}

.audience-item {
  background: rgba(255, 255, 255, 0.05);
  color: var(--green);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.audience-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(8px);
}

.audience-icon {
  flex-shrink: 0;
}

.audience-icon i {
  width: 32px;
  height: 32px;
  stroke: var(--green);
}

.audience-content h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 800;
}

.audience-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.stats-circles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 30px;
  justify-items: center;
}

.stat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.circle-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle-bg {
  opacity: 0.2;
}

.progress-ring-circle {
  stroke-dasharray: 439.6; /* 2 * PI * 70 */
  stroke-dashoffset: 439.6;
  transition: stroke-dashoffset 2s cubic-bezier(0.34, 1.56, 0.64, 1);
  stroke-linecap: round;
}

.circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle-percentage {
  font-family: "Urbanist", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.circle-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.5;
  max-width: 200px;
}

/* ============================================
   VALUES SECTION
============================================ */
.values-section {
  padding: 120px 40px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.values-container {
  max-width: 1400px;
  margin: 0 auto;
}

.purpose-mission {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.pm-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 48px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(70, 8, 151, 0.08);
  border-color: var(--purple);
}

.pm-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.pm-card h3 {
  font-family: "Urbanist", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.pm-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
}

.pm-card strong {
  color: var(--purple);
  font-weight: 700;
}

.values-grid-section {
  text-align: center;
}

.values-title {
  font-family: "Urbanist", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.value-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--purple);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.value-icon i {
  width: 40px;
  height: 40px;
  stroke: var(--purple);
}

.value-item h4 {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ============================================
   ASSESSMENTS SECTION
============================================ */
.assessments {
  padding: 120px 40px;
  background: var(--gray-50);
}

.assessments-grid {
  max-width: 1400px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.assessment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.assessment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--purple);
}

.assessment-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.assessment-icon i {
  width: 48px;
  height: 48px;
  stroke: var(--purple);
}

.assessment-name {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.assessment-info {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--purple);
  line-height: 2;
}

/* ============================================
   DISC FORMATION CTA SECTION
============================================ */
.disc-formation-cta {
  padding: 100px 40px;
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    var(--purple-dark) 100%
  );
  position: relative;
  overflow: hidden;
}

.disc-formation-cta::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
}

.disc-cta-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.disc-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.disc-cta-content h2 {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.disc-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 32px;
}

.disc-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.disc-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.highlight-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.disc-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-disc-primary {
  background: var(--white);
  color: var(--purple);
  padding: 18px 36px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: none;
}

.btn-disc-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-disc-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 18px 36px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-disc-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.disc-trust {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.disc-cta-visual {
  position: relative;
}

.disc-visual-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.visual-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.disc-visual-card h4 {
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.disc-topics {
  list-style: none;
  padding: 0;
}

.disc-topics li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 600;
  border-bottom: 1px solid var(--gray-200);
}

.disc-topics li:last-child {
  border-bottom: none;
}

.disc-topics li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   PRODUCTS SECTION
============================================ */
.products {
  padding: 120px 40px;
  background: var(--white);
}

.products-grid {
  max-width: 1400px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 48px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--purple);
}

.product-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 28px;
}

.product-card h3 {
  font-family: "Urbanist", sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.product-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  padding: 120px 40px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-content h2 {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 500;
}

.btn-cta {
  background: var(--white);
  color: var(--purple);
  padding: 20px 48px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FOOTER
============================================ */
footer {
  padding: 80px 40px 40px;
  background: var(--gray-900);
  color: var(--white);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand .start {
  color: var(--purple-light);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-section h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--purple-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

/* ============================================
   QUICK ACCESS FLOAT
============================================ */
.quick-access {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: var(--purple);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px 20px;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.quick-access-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-100);
  text-align: center;
  margin-bottom: 20px;
}

.quick-btn {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.quick-btn.yellow {
  background: var(--yellow);
  color: var(--purple);
}

.quick-btn.green {
  background: var(--green);
  color: var(--purple);
}

.quick-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.quick-label {
  font-size: 11px;
  color: var(--gray-100);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
  font-weight: 500;
}

/* ============================================
   MODAL STYLES - GRADE COMPLETA
============================================ */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 40px 24px;
  border-bottom: 1px solid var(--gray-200);
}

.modal-title {
  font-family: "Urbanist", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 16px;
  color: var(--purple);
  font-weight: 600;
}

.modal-close {
  background: var(--red);
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.modal-close:hover {
  background: var(--red);
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-body {
  padding: 40px;
  overflow-y: auto;
  flex: 1;
}

.module-section {
  margin-bottom: 32px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.module-section:hover {
  border-color: var(--purple);
  box-shadow: 0 8px 20px rgba(70, 8, 151, 0.08);
}

.module-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.module-number {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.module-title {
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.module-duration {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 600;
}

.module-topics {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-topics li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.module-topics li:last-child {
  border-bottom: none;
}

.module-topics li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

.bonus-section {
  background: linear-gradient(
    135deg,
    var(--purple-pale),
    rgba(232, 213, 245, 0.4)
  );
  border: 2px dashed var(--purple);
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
}

.bonus-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bonus-header i {
  stroke: var(--purple);
}

.bonus-header h3 {
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--purple);
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bonus-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  color: var(--gray-800);
  font-weight: 600;
}

.bonus-list li::before {
  content: "🎁";
  position: absolute;
  left: 0;
}

.modal-footer {
  padding: 32px 40px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: 0 0 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.modal-stats {
  display: flex;
  gap: 32px;
}

.modal-stat {
  text-align: center;
}

.modal-stat strong {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 4px;
}

.modal-stat span {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 600;
}

.btn-modal-cta {
  background: var(--purple);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 18px rgba(70, 8, 151, 0.3);
  border: none;
}

.btn-modal-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(70, 8, 151, 0.4);
  background: var(--purple-dark);
}

/* ============================================
   MODAL ASSESSMENT STYLES
============================================ */
.assessment-modal-content {
  max-width: 1100px;
}

.assessment-modal-body {
  padding: 48px;
  overflow-y: auto;
  max-height: calc(100vh - 260px);
}

.assessment-header {
  text-align: center;
  margin-bottom: 48px;
}

.assessment-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.assessment-icon-large i {
  width: 48px;
  height: 48px;
  stroke: var(--white);
}

.assessment-title {
  font-family: "Urbanist", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.assessment-description {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.assessment-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.assessment-section {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 32px;
}

.assessment-section-title {
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.assessment-section-title i {
  width: 24px;
  height: 24px;
  stroke: var(--purple);
}

.assessment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.assessment-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-200);
}

.assessment-list li:last-child {
  border-bottom: none;
}

.assessment-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
  font-size: 18px;
}

.assessment-problems {
  background: rgba(255, 59, 48, 0.05);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
}

.assessment-problems .assessment-section-title {
  color: var(--red);
}

.assessment-problems .assessment-section-title i {
  stroke: var(--red);
}

.assessment-problems .assessment-list li::before {
  content: "⚠";
  color: var(--red);
}

.assessment-modal-footer {
  padding: 32px 48px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.assessment-price {
  display: flex;
  align-items: center;
  gap: 24px;
}

.price-badge {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  min-width: 140px;
}

.price-value {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.price-label {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  font-weight: 600;
}

.price-details {
  flex: 1;
}

.pix-info {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 8px;
}

.subscription-info {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}

.subscription-info strong {
  color: var(--purple);
}

.btn-assessment-cta {
  background: var(--purple);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 18px rgba(70, 8, 151, 0.3);
  border: none;
  white-space: nowrap;
}

.btn-assessment-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(70, 8, 151, 0.4);
  background: var(--purple-dark);
}

/* ============================================
   LEAD MODAL STYLES
============================================ */
.lead-modal-content {
  max-width: 600px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lead-modal-body {
  padding: 48px;
  text-align: center;
  overflow-y: auto;
  flex: 1;
}

.lead-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.lead-icon i {
  stroke: var(--white);
}

.lead-title {
  font-family: "Urbanist", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.lead-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.6;
}

.lead-form {
  text-align: left;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-label i {
  stroke: var(--purple);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-900);
  transition: all 0.3s ease;
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(70, 8, 151, 0.1);
}

.form-input.error {
  border-color: var(--red);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.phone-input-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.phone-prefix {
  padding: 14px 16px;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-700);
  flex-shrink: 0;
}

.phone-input {
  flex: 1;
  min-width: 0;
}

.form-error {
  display: block;
  font-size: 13px;
  color: var(--red);
  margin-top: 6px;
  font-weight: 600;
  min-height: 18px;
}

.form-footer {
  margin-top: 32px;
  padding-bottom: 8px;
}

.btn-lead-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 18px rgba(70, 8, 151, 0.3);
}

.btn-lead-submit:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(70, 8, 151, 0.4);
  background: var(--purple-dark);
}

.btn-lead-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-lead-submit.loading {
  position: relative;
}

.btn-lead-submit.loading::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-privacy {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.4;
}

.form-privacy i {
  stroke: var(--green);
  flex-shrink: 0;
}

.lead-success {
  text-align: center;
  padding: 20px;
}

.success-icon {
  margin-bottom: 24px;
}

.success-icon i {
  stroke: var(--green);
}

.success-title {
  font-family: "Urbanist", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.success-text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 32px;
}

.btn-success-close {
  padding: 14px 32px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-success-close:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .purpose-mission {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .disc-cta-container {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .assessments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .assessment-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .quick-access {
    display: none;
  }

  nav {
    display: none;
  }

  .header-container {
    padding: 0 24px;
  }

  .hero,
  .stats,
  .founders,
  .values-section,
  .assessments,
  .disc-formation-cta,
  .products,
  .cta-section,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .modal-content {
    margin: 20px;
    max-height: calc(100vh - 40px);
  }

  .modal-header {
    padding: 24px 24px 20px;
  }

  .modal-body {
    padding: 24px;
  }

  .assessment-modal-body {
    padding: 32px 24px;
  }

  .modal-footer,
  .assessment-modal-footer {
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .modal-stats {
    justify-content: space-around;
    width: 100%;
  }

  .btn-modal-cta,
  .btn-assessment-cta {
    width: 100%;
    justify-content: center;
  }

  .modal-title {
    font-size: 24px;
  }

  .assessment-price {
    flex-direction: column;
    align-items: stretch;
  }

  /* Lead Modal Responsive */
  .lead-modal-content {
    margin: 10px;
    max-height: calc(100vh - 20px);
  }

  .lead-modal-body {
    padding: 32px 24px;
    max-height: calc(100vh - 20px);
  }

  .lead-title {
    font-size: 24px;
  }

  .lead-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .lead-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .lead-icon i {
    width: 36px;
    height: 36px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .phone-prefix {
    padding: 12px 14px;
    font-size: 14px;
  }

  .form-label {
    font-size: 13px;
  }

  .btn-lead-submit {
    padding: 14px 24px;
    font-size: 15px;
  }

  .form-privacy {
    font-size: 12px;
    margin-top: 12px;
  }

  .phone-input-wrapper {
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .assessments-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .disc-highlights {
    grid-template-columns: 1fr;
  }

  .disc-cta-buttons {
    flex-direction: column;
  }

  .btn-disc-primary,
  .btn-disc-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .module-header {
    flex-direction: column;
    gap: 12px;
  }

  .assessment-title {
    font-size: 32px;
  }
}

/* ============================================
   FOUNDER MODAL STYLES
============================================ */
.founder-modal-content {
  max-width: 1000px;
  max-height: 90vh;
  overflow: hidden;
}

.founder-modal-body {
  padding: 0;
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}

.founder-hero {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  padding: 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.founder-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
}

.founder-hero-content {
  position: relative;
  z-index: 10;
}

.founder-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.founder-hero-name {
  font-family: "Urbanist", sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.founder-hero-role {
  font-size: 20px;
  opacity: 0.9;
  font-weight: 600;
  margin-bottom: 8px;
}

.founder-hero-title {
  font-size: 16px;
  opacity: 0.8;
}

.founder-details {
  padding: 48px 60px;
  background: var(--white);
}

.founder-section {
  margin-bottom: 40px;
}

.founder-section-title {
  font-family: "Urbanist", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--purple-pale);
}

.founder-list {
  list-style: none;
  padding: 0;
}

.founder-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.founder-list li:last-child {
  border-bottom: none;
}

.founder-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
  font-size: 20px;
}

.founder-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.founder-book {
  background: linear-gradient(
    135deg,
    var(--purple-pale),
    rgba(232, 213, 245, 0.4)
  );
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.founder-book h4 {
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 12px;
}

.founder-book p {
  font-size: 16px;
  color: var(--gray-800);
  font-weight: 600;
  line-height: 1.6;
}

.founder-social {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 32px 0;
  border-top: 1px solid var(--gray-200);
}

.founder-social-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-weight: 600;
  font-size: 15px;
}

.founder-social-item i {
  width: 20px;
  height: 20px;
  stroke: var(--purple);
}

.founder-card.clickable {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.founder-card.clickable:hover {
  transform: translateY(-16px) scale(1.02);
}

/* Responsive */
@media (max-width: 900px) {
  .founder-hero {
    padding: 40px 24px;
  }

  .founder-details {
    padding: 32px 24px;
  }

  .founder-hero-name {
    font-size: 36px;
  }

  .founder-section-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .lead-modal-content {
    margin: 5px;
    max-height: calc(100vh - 10px);
    border-radius: 16px;
  }

  .lead-modal-body {
    padding: 24px 20px;
  }

  .lead-title {
    font-size: 22px;
  }

  .lead-icon {
    width: 56px;
    height: 56px;
  }

  .form-input,
  .phone-prefix {
    font-size: 14px;
  }
}

/* ============================================
   SEÇÃO DE PRODUTOS SIMPLES (3 COLUNAS)
   Segue o padrão visual existente da página
============================================ */

.products-categories {
  padding: 120px 40px;
  background: var(--gray-50);
}

.categories-container {
  max-width: 1400px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ============================================
   COLUNAS DE CATEGORIAS
============================================ */

.category-column {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.category-column:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--purple);
}

/* Header da categoria (roxo) */
.category-header {
  background: var(--purple);
  padding: 32px 28px;
  text-align: center;
  position: relative;
}

.category-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.5;
}

.category-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.category-icon i {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}

.category-title {
  font-family: "Urbanist", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

/* ============================================
   CONTEÚDO DA CATEGORIA
============================================ */

.category-content {
  padding: 32px 28px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.category-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s ease;
}

.category-item:last-child {
  border-bottom: none;
}

.category-item:hover {
  padding-left: 8px;
}

/* Ícone do item */
.category-item .item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.category-item:hover .item-icon {
  transform: rotate(5deg) scale(1.1);
}

.category-item .item-icon i {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

/* Badge alternativa (ST, PR, PM, BN) */
.item-badge {
  width: 40px;
  height: 40px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

/* Texto do item */
.item-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-700);
  font-weight: 500;
}

.item-text strong {
  color: var(--purple);
  font-weight: 700;
}

.item-subtitle {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 2px;
}

/* ============================================
   BOTÃO SAIBA MAIS
============================================ */

.category-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--white);
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.category-btn:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(70, 8, 151, 0.3);
}

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

@media (max-width: 1200px) {
  .categories-container {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
  }

  .category-column {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .products-categories {
    padding: 80px 24px;
  }

  .category-header {
    padding: 24px 20px;
  }

  .category-icon {
    width: 56px;
    height: 56px;
  }

  .category-icon i {
    width: 28px;
    height: 28px;
  }

  .category-title {
    font-size: 24px;
  }

  .category-content {
    padding: 24px 20px;
  }

  .category-item {
    gap: 12px;
  }

  .category-item .item-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .category-item .item-icon i {
    width: 18px;
    height: 18px;
  }

  .item-badge {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .item-text {
    font-size: 14px;
  }

  .item-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .products-categories {
    padding: 60px 20px;
  }

  .category-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ============================================
   ANIMAÇÕES
============================================ */

.category-column {
  animation: fadeInUp 0.6s ease-out;
}

.category-column:nth-child(1) {
  animation-delay: 0.1s;
}

.category-column:nth-child(2) {
  animation-delay: 0.2s;
}

.category-column:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   MODAIS DAS CATEGORIAS - PADRÃO GRADE COMPLETA
   Segue exatamente o padrão do modal de Grade
============================================ */

.category-info-modal .modal-content {
  max-width: 1100px;
}

.category-modal-content {
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
}

.category-modal-body {
  padding: 0;
  overflow-y: auto;
  flex: 1;
}

/* ============================================
   HEADER DO MODAL - PADRÃO GRADE
============================================ */

.category-modal-header {
  padding: 48px 48px 32px;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.category-modal-icon {
  width: 40px;
  height: 40px;
  background: var(--purple);
  color: var(--white);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-modal-icon i {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.category-modal-title {
  font-family: "Urbanist", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.category-modal-subtitle {
  font-size: 16px;
  color: var(--purple);
  font-weight: 600;
  line-height: 1.5;
}

.category-modal-intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-top: 15px;
  margin-bottom: 0;
  padding: 0 48px 32px;
}

/* ============================================
   CONTEÚDO DO MODAL - CARDS
============================================ */

.category-modal-sections {
  padding: 32px 48px;
}

.category-modal-section {
  margin-bottom: 32px;
}

.category-modal-section:last-child {
  margin-bottom: 0;
}

.section-title-modal {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.section-items {
  display: grid;
  gap: 20px;
}

/* ============================================
   CARDS DOS ITENS - PADRÃO MÓDULOS
============================================ */

.modal-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.modal-item:hover {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(70, 8, 151, 0.08);
}

.modal-item-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.modal-item-number {
  background: var(--purple);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.modal-item-title {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
  line-height: 1.3;
}

.modal-item-meta {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 600;
}

.modal-item-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0;
}

.modal-item-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.modal-item-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.5;
}

.modal-item-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
  font-size: 16px;
}

/* ============================================
   FOOTER DO MODAL - ESTATÍSTICAS + CTA
============================================ */

.category-modal-footer {
  padding: 32px 48px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.category-modal-stats {
  display: flex;
  gap: 48px;
  flex: 1;
}

.category-stat {
  text-align: center;
}

.category-stat-value {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 6px;
}

.category-stat-label {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 600;
}

.btn-category-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--purple);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(70, 8, 151, 0.3);
}

.btn-category-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(70, 8, 151, 0.4);
  background: var(--purple-dark);
}

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

@media (max-width: 900px) {
  .category-modal-header {
    padding: 32px 24px 24px;
  }

  .category-modal-title {
    font-size: 24px;
  }

  .category-modal-subtitle {
    font-size: 14px;
  }

  .category-modal-intro {
    padding: 0 24px 24px;
    font-size: 14px;
  }

  .category-modal-sections {
    padding: 24px;
  }

  .section-title-modal {
    font-size: 18px;
  }

  .modal-item {
    padding: 24px;
  }

  .modal-item-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .modal-item-title {
    font-size: 16px;
  }

  .modal-item-meta {
    font-size: 13px;
  }

  .modal-item-description {
    font-size: 14px;
  }

  .category-modal-footer {
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .category-modal-stats {
    justify-content: space-around;
    gap: 24px;
  }

  .category-stat-value {
    font-size: 28px;
  }

  .category-stat-label {
    font-size: 12px;
  }

  .btn-category-cta {
    width: 100%;
    padding: 16px 24px;
  }
}

@media (max-width: 768px) {
  .category-modal-header {
    padding: 24px 20px 20px;
  }

  .category-modal-title {
    font-size: 20px;
  }

  .category-modal-intro {
    padding: 0 20px 20px;
  }

  .category-modal-sections {
    padding: 20px;
  }

  .section-title-modal {
    font-size: 16px;
  }

  .modal-item {
    padding: 20px;
  }

  .modal-item-header {
    gap: 16px;
  }

  .category-modal-footer {
    padding: 20px;
  }

  .category-modal-stats {
    gap: 16px;
  }

  .category-stat-value {
    font-size: 24px;
  }
}

/* ============================================
   QUICK ACCESS FLOAT - VERSÃO RECOLHÍVEL
   Adicione este código ao final do seu styles.css
============================================ */

.quick-access {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: var(--purple);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Estado recolhido */
.quick-access.collapsed {
  min-width: auto;
  width: 60px;
  padding: 0;
  border-radius: 30px;
}

/* Botão de toggle */
.quick-access-toggle {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
}

.quick-access-toggle:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  background: var(--white);
}

.quick-access-toggle i {
  stroke: var(--purple);
  transition: transform 0.3s ease;
}

/* Rotação do ícone quando recolhido */
.quick-access.collapsed .quick-access-toggle i {
  transform: rotate(180deg);
}

/* Estado quando recolhido - botão fica centralizado */
.quick-access.collapsed .quick-access-toggle {
  position: static;
  transform: none;
  margin: 10px;
}

.quick-access.collapsed .quick-access-toggle:hover {
  transform: scale(1.1);
}

/* Conteúdo */
.quick-access-content {
  padding: 24px 20px;
  opacity: 1;
  transition: all 0.4s ease;
}

.quick-access.collapsed .quick-access-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.quick-access-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-100);
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.quick-btn {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.quick-btn.yellow {
  background: var(--yellow);
  color: var(--purple);
}

.quick-btn.green {
  background: var(--green);
  color: var(--purple);
}

.quick-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.quick-label {
  font-size: 11px;
  color: var(--gray-100);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
  font-weight: 500;
}

/* ============================================
   CORREÇÃO DOS CÍRCULOS DE PROGRESSO
   Adicione este trecho ao seu styles.css existente
============================================ */

/* Configuração correta dos círculos */
.progress-ring-circle-bg {
  opacity: 0.2;
}

.progress-ring-circle {
  stroke-dasharray: 439.82; /* 2 * PI * 70 (raio) = 439.82 */
  stroke-dashoffset: 439.82; /* Começa vazio */
  transition: stroke-dashoffset 2.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  stroke-linecap: round;
  transform-origin: center;
}

/* Animação suave ao aparecer */
.progress-ring-circle.animated {
  /* O stroke-dashoffset será definido pelo JS baseado na porcentagem */
}

/* Adicionar delays diferentes para cada círculo */
.stat-circle-item:nth-child(1) .progress-ring-circle {
  transition-delay: 0.2s;
}

.stat-circle-item:nth-child(2) .progress-ring-circle {
  transition-delay: 0.4s;
}

.stat-circle-item:nth-child(3) .progress-ring-circle {
  transition-delay: 0.6s;
}

.stat-circle-item:nth-child(4) .progress-ring-circle {
  transition-delay: 0.8s;
}

.stat-circle-item:nth-child(5) .progress-ring-circle {
  transition-delay: 1s;
}

/* Garantir que o texto fica visível */
.circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.circle-percentage {
  font-family: "Urbanist", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  opacity: 0;
  animation: fadeInNumber 0.8s ease forwards;
}

.stat-circle-item:nth-child(1) .circle-percentage {
  animation-delay: 0.8s;
}

.stat-circle-item:nth-child(2) .circle-percentage {
  animation-delay: 1s;
}

.stat-circle-item:nth-child(3) .circle-percentage {
  animation-delay: 1.2s;
}

.stat-circle-item:nth-child(4) .circle-percentage {
  animation-delay: 1.4s;
}

.stat-circle-item:nth-child(5) .circle-percentage {
  animation-delay: 1.6s;
}

@keyframes fadeInNumber {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animação de pulso no botão para chamar atenção */
@keyframes quickAccessPulse {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(255, 214, 10, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 214, 10, 0.8);
  }
}

.quick-access-toggle {
  animation: quickAccessPulse 2s ease-in-out infinite;
}

.quick-access:hover .quick-access-toggle {
  animation: none;
}

/* Responsive - ocultar em mobile */
@media (max-width: 900px) {
  .quick-access {
    display: none;
  }
}

/* Variante: Quick Access completamente oculto quando recolhido */
/* Descomente esta seção se preferir que desapareça completamente */
/*
.quick-access.collapsed {
  right: -220px;
}

.quick-access.collapsed .quick-access-toggle {
  right: 248px;
}
*/
