/* ============================================
   PROPÓSITO PAGE - MOBILE FIRST
   ============================================ */

/* Page Hero */
.page-hero {
  background: var(--gradient-marble);
  padding: calc(var(--space-24) + 70px) 0 var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-aged),
    transparent
  );
  opacity: 0.4;
}

.page-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-4);
  font-family: var(--font-heading);
}

.page-subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  font-weight: 300;
}

/* Propósito Principal Section */
.proposito-principal-section {
  background: var(--background-primary);
  padding: var(--space-24) 0;
}

.proposito-principal-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.proposito-principal-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-8);
  font-family: var(--font-heading);
}

.proposito-principal-content p {
  font-size: var(--text-lg);
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  text-align: justify;
}

/* Video Section */
.video-section {
  background: var(--white);
  padding: var(--space-24) 0;
}

.video-wrapper {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper blockquote {
  margin: 0 auto;
}

/* Impacto Section */
.impacto-section {
  background: var(--background-primary);
  padding: var(--space-24) 0;
}

.impacto-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.impacto-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-8);
  font-family: var(--font-heading);
}

.impacto-content p {
  font-size: var(--text-lg);
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  text-align: justify;
}

/* Diferencial Section */
.diferencial-section {
  background: var(--white);
  padding: var(--space-24) 0;
}

.diferencial-content {
  max-width: 1200px;
  margin: 0 auto;
}

.diferencial-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-12);
  text-align: center;
  font-family: var(--font-heading);
}

.diferencial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.diferencial-item {
  background: var(--background-primary);
  border-radius: 15px;
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 10, 10, 0.08);
  transition: all 0.6s var(--ease-smooth);
  text-align: center;
}

.diferencial-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.diferencial-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-aged);
  color: var(--white);
  border-radius: 50%;
  font-size: var(--text-2xl);
  margin: 0 auto var(--space-6);
  transition: all 0.5s var(--ease-smooth);
}

.diferencial-item:hover .diferencial-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-aged-light);
}

.diferencial-item h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-4);
  font-family: var(--font-heading);
}

.diferencial-item p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-dark);
  padding: var(--space-24) 0;
  text-align: center;
}

.cta-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
  font-family: var(--font-heading);
}

.cta-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-12);
  background: var(--gold-aged);
  color: var(--white);
  font-size: var(--text-base);
  font-weight: 600;
  border: 2px solid var(--gold-aged);
  border-radius: 10px;
  transition: all 0.5s var(--ease-smooth);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--gold-aged-light);
  border-color: var(--gold-aged-light);
}

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

@media (min-width: 576px) {
  .diferencial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .page-title {
    font-size: var(--text-5xl);
  }

  .page-subtitle {
    font-size: var(--text-2xl);
  }

  .diferencial-grid {
    gap: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .diferencial-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-10);
  }
}

@media screen and (max-width: 600px) {
  .page-hero {
    padding: calc(var(--space-16) + 70px) 0 var(--space-12);
  }

  .page-title {
    font-size: var(--text-3xl);
  }

  .page-subtitle {
    font-size: var(--text-lg);
  }

  .proposito-principal-content h2,
  .impacto-content h2,
  .diferencial-content h2 {
    font-size: var(--text-2xl);
  }

  .proposito-principal-content p,
  .impacto-content p {
    font-size: var(--text-base);
  }

  .diferencial-item {
    padding: var(--space-6);
  }

  .diferencial-icon {
    width: 60px;
    height: 60px;
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
  }

  .diferencial-item h3 {
    font-size: var(--text-lg);
  }

  .diferencial-item p {
    font-size: var(--text-sm);
  }

  .video-wrapper {
    padding: 0 var(--space-4);
  }
}
