.give-section {
  margin-bottom: 60px;
}

.give-intro-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-teal) 100%
  );
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.give-intro-section h2 {
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.give-intro-section p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.95;
  line-height: 1.6;
}

.give-intro-section p:last-child {
  margin-bottom: 0;
}

.objetivos-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 60px;
  background-color: var(--secondary-color);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
}

.objetivos-section h2 {
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.objetivos-intro {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.objetivos-list {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.objetivo-item {
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.objetivo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 179, 180, 0.1);
}

.objetivo-icon {
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.objetivo-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.perfil-section {
  margin-bottom: 60px;
}

.perfil-header {
  margin-bottom: 30px;
}

.perfil-header h2 {
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.perfil-intro {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.perfil-categories {
  display: grid;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.perfil-category {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.perfil-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(38, 179, 180, 0.1);
}

.perfil-category h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.perfil-requirements {
  display: grid;
  gap: 15px;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.requirement-icon {
  color: var(--primary-color);
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.requirement-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.ventajas-section {
  margin-bottom: 60px;
}

.ventajas-header {
  margin-bottom: 30px;
}

.ventajas-header h2 {
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.ventajas-intro {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.ventaja-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
  text-align: center;
}

.ventaja-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(38, 179, 180, 0.15);
}

.ventaja-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

.ventaja-card h3 {
  color: var(--text-color);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.ventaja-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .give-intro-section {
    padding: 30px 20px;
  }

  .give-intro-section h2 {
    font-size: 20px;
  }

  .objetivos-section {
    padding: 30px 20px;
  }

  .objetivos-section h2,
  .perfil-header h2,
  .ventajas-header h2 {
    font-size: 20px;
  }

  .objetivo-item {
    padding: 15px;
  }

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

  .perfil-category {
    padding: 25px;
  }

  .perfil-category h3 {
    font-size: 18px;
  }

  .ventajas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ventaja-card {
    padding: 25px;
  }

  .ventaja-icon {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .give-intro-section {
    padding: 25px 15px;
  }

  .give-intro-section h2 {
    font-size: 18px;
  }

  .objetivos-section {
    padding: 25px 15px;
  }

  .objetivos-section h2,
  .perfil-header h2,
  .ventajas-header h2 {
    font-size: 18px;
  }

  .objetivo-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
  }

  .objetivo-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .objetivo-text {
    font-size: 13px;
  }

  .perfil-category {
    padding: 20px;
  }

  .perfil-category h3 {
    font-size: 16px;
  }

  .requirement-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
  }

  .requirement-icon {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .requirement-text {
    font-size: 13px;
  }

  .ventaja-card {
    padding: 20px;
  }

  .ventaja-card h3 {
    font-size: 16px;
  }

  .ventaja-card p {
    font-size: 13px;
  }
}
